Corso List Orders

Retrieve a single Corso order by source order ID, including formatted line items for creating a shipping claim.

Retrieves a single order from Corso by source order ID so you can inspect the order data or pass its line items into the Corso - Create Shipping Claim action.

API documentation here.

Inputs

NameTypeDescription
Source Order IDOptional StringFilter 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.
Order Found?BooleanWhether an order was found.
OrderObjectOrder object returned by Corso.
Line Items For Create Shipping ClaimListList of line items formatted for use with the Corso - Create Shipping Claim action. Format: [{"lineItemId": 123, "quantity": 1}].
Raw DataObjectRaw response data returned by the Corso API.
ErrorStringError message if the API call failed.

Notes

  • Use Source Order ID to retrieve a specific order from the source platform.
  • Use Line Items For Create Shipping Claim when you want to pass the returned items directly into the Corso - Create Shipping Claim action.
  • Enable Safe Mode if you want the flow to continue and capture API errors in the outputs instead of stopping on failure.