Shopify Find Order by Order Name (oAuth)
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.
Inputs
| 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. |
Outputs
| 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. |
Notes
- Uses Shopify Admin REST API version
2025-04at the/orders.json?name={Order Number(Name)}endpoint. - Requires the OAuth token to include
read_ordersscope. - If no orders are found,
Found Orders ?isfalseandOrdersis an empty list.
Updated 4 months ago
