Deposco - Get Order
Retrieves a sales order from Deposco by its order number using the Shopify order number.
Deposco - Get Order
Retrieve a sales order from Deposco by its order number, using the Shopify order number to find the matching Deposco sales order.
This action requires a Deposco module connection.
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
| Order Number | String | Yes | Order number of the requested order. This is the Shopify order number used to look up the matching sales order in Deposco. |
| Business Unit | Optional String | No | Code for the company, or business unit, to which the resource is assigned. Optional if the application is restricted to one company. |
| Order Status | Optional String | No | Status of the requested order. Possible values are Draft, New, Hold, Ready for Fulfillment, Wave Built, Back Ordered, Partially Released, Released, Picking, Pick Complete, Partially Staged, Staged, Partially Loaded, Loaded, Partially Shipped, Ship Complete, and Canceled. |
| Created After | Optional String | No | Search field for finding records created after the specified date and time in ISO 8601 format. |
| Updated After | Optional String | No | Search field for finding records updated after the specified date and time in ISO 8601 format. |
Outputs
| Name | Type | Description |
|---|---|---|
| Success? | Boolean | Whether the request to retrieve the order was successful. |
| Order Found? | Boolean | Whether a matching sales order was returned for the given order number. |
| Order | Object | The first matching sales order returned by Deposco. |
| Orders | List | All sales orders returned by Deposco for the given search criteria. |
| Raw Data | Object | Raw response data returned by the Deposco API. |
| Error | String | Error message if the API call failed. |
Run the action
- Add the Deposco module connection required by this action.
- Enter the Shopify order number in Order Number.
- Optional: enter Business Unit if the Deposco application is not restricted to one company.
- Optional: use Order Status, Created After, or Updated After to narrow the sales order search.
- Run the action.
- Check Success? to confirm whether the Deposco request completed.
- Check Order Found? before using Order in later Flow steps.
Notes
- The action uses the Deposco sales orders endpoint, which returns results paginated and sorted by ID in descending order.
- Use Order when you only need the first matching sales order.
- Use Orders when you need all sales orders returned for the search criteria.
- Use Raw Data for troubleshooting or when you need fields that are not mapped to dedicated outputs.
- Check Error when Success? is
false.