Corso List Shipping Claims

Returns a list of shipping claims from Corso based on Source Order ID.

Return a list of shipping claims from Corso.

API documentation here.

Inputs

NameTypeDescription
Source Order IDOptional StringFilter claims by source platform order ID.
Safe ModeOptional BooleanIf set to true, errors are logged in the Action Outputs instead of stopping the Flow. Defaults to false.

Outputs

NameTypeDescription
Success?BooleanWhether the API call was successful.
Claims Found?BooleanWhether any shipping claims were returned.
Total ClaimsNumberNumber of shipping claims returned in this response.
Shipping ClaimsListList of shipping claim objects returned by Corso.
Raw DataObjectRaw response data returned by the Corso API.
ErrorStringError message if the API call failed.

Notes

  • Use Source Order ID to narrow the response to shipping claims for a specific source platform order.
  • Check Claims Found? and Total Claims when you need to branch your Flow based on whether Corso returned any results.
  • Use Shipping Claims when you need the full list of claim objects for downstream steps.
  • Enable Safe Mode if you want the Flow to continue and capture API errors in the outputs instead of stopping on failure.