Aurora Get Order By Order Number
Retrieves a specific order from the Aurora ERP system by its order number. Use it when a flow has an order number and needs the full order details.
Retrieves a specific order from the Aurora ERP system by its order number. Use it when a flow has an order number and needs the full order details.
What it does
- Sends an order lookup request to your Aurora ERP endpoint, authenticated with your Aurora auth token.
- Looks up the order matching the order number you provide and returns it.
- Reports whether an order was found through the "Order Found?" output.
- If Aurora returns an error, it is passed back so the flow can handle it.
Requires an Aurora auth token and the Aurora API URL.
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
| Auth Token | String | Yes | Aurora authentication token |
| API URL | String | Yes | Aurora API URL |
| Order Number | String | Yes | Order number to look up |
Outputs
| Name | Type | Description |
|---|---|---|
| Order Found? | Boolean | Whether the order was found |
| Order | Object | The matching order record from Aurora |
Notes
- Handles both standard and large (archived) responses returned by Aurora.
- If no order matches the number, "Order Found?" is false and no order is returned.