Scalefast Search for Order by Order ID
Looks up a single Scalefast order by its order ID. Use it when a flow already knows the order ID and needs the order details.
What it does
- Authenticates with Scalefast using your client and user credentials.
- Fetches the order that matches the supplied order ID.
- Returns the full order object.
Inputs
| Name | Type | Description |
|---|---|---|
| Host | String | Scalefast host |
| Client Id | String (sensitive) | Scalefast client id |
| Client Secret | String (sensitive) | Scalefast client secret |
| User ID | String | Scalefast user id |
| Delegate User ID | String | Scalefast delegate user id |
| Order ID | String | Order ID to search order by |
Outputs
| Name | Type | Description |
|---|---|---|
| Success | Boolean | Whether order was found or not |
| Order | Object | Order |
Notes
- If no order matches the ID, Success is false and Order is empty.