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
| Name | Type | Description |
|---|---|---|
| Source Order ID | Optional String | Filter by source platform order ID. |
| Safe Mode | Optional Boolean | If set to true, errors are logged in the action outputs instead of stopping the flow. Defaults to false. |
Outputs
| Name | Type | Description |
|---|---|---|
| Success? | Boolean | Whether the API call was successful. |
| Order Found? | Boolean | Whether an order was found. |
| Order | Object | Order object returned by Corso. |
| Line Items For Create Shipping Claim | List | List of line items formatted for use with the Corso - Create Shipping Claim action. Format: [{"lineItemId": 123, "quantity": 1}]. |
| Raw Data | Object | Raw response data returned by the Corso API. |
| Error | String | Error 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.
Updated about 3 hours ago