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.
| 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). |
| 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. |
- Uses Shopify Admin REST API version
2025-04 with the /orders.json?name={Order Number}&status=any endpoint.
- Requires the access token to include the
read_orders scope.
- If no orders are found,
Found Orders ? is false, Orders is an empty list, and Order is null.