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-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 ?
isfalse
andOrders
is an empty list.
Updated about 6 hours ago