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
| Name | Type | Description |
|---|---|---|
| Source Order ID | Optional String | Filter claims 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. |
| Claims Found? | Boolean | Whether any shipping claims were returned. |
| Total Claims | Number | Number of shipping claims returned in this response. |
| Shipping Claims | List | List of shipping claim objects returned by Corso. |
| 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 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.
Updated about 3 hours ago