This action retrieves Shopify orders by their name using OAuth authentication. It returns a flag indicating whether any orders were found and the list of matching orders.
| Name | Type | Description |
|---|
| Order Number(Name) | String | The Shopify order name/number to search for. |
| Shopify Token | Credentials | A sensitive OAuth access token for the store. |
| Shopify Domain | String | The store’s myshopify.com subdomain. |
| Name | Type | Description |
|---|
| Found Orders ? | Boolean | true if one or more orders matching the name were retrieved. |
| Orders | List | Array of orders matching the search criteria. |
- Uses Shopify Admin REST API version
2025-04 at the /orders.json?name={Order Number(Name)} endpoint.
- Requires the OAuth token to include
read_orders scope.
- If no orders are found,
Found Orders ? is false and Orders is an empty list.