Shopify Find Order by Order Number
This action searches for Shopify orders by their order number and returns whether any were found, along with the matching orders and the primary order object.
Inputs
| Name | Type | Description |
|---|---|---|
| Order Number | String | The unique order number assigned in Shopify (e.g., #1001). |
| Shopify Token | Credentials | A token for authenticating to the Shopify Admin API. |
| Shopify Domain | Credentials | The storeβs myshopify.com subdomain (e.g., your-store). |
Outputs
| Name | Type | Description |
|---|---|---|
| Found OrdersΒ ? | Boolean | true if one or more orders matching the number were retrieved. |
| Orders | List | Array of order objects that match the search criteria. |
| Order | ShopifyOrder | The first matching order object, or null if none were found. |
Notes
- Uses Shopify Admin REST API version
2025-04with the/orders.json?name={Order Number}&status=anyendpoint. - Requires the access token to include the
read_ordersscope. - If no orders are found,
Found OrdersΒ ?isfalse,Ordersis an empty list, andOrderisnull.
Updated 4 months ago
