Shopify Check Order Specific Tag
Searches a Shopify order by its number and checks whether its tags include a specific tag.
Inputs
Name | Type | Description |
---|---|---|
Tag | String | The tag to search for on the order. |
Shopify Order Number | String | The unique order name/number in Shopify (e.g., #1001 ). |
Shopify Token | Credentials | Token for authenticating to the Shopify Admin API (Basic or Private App token). |
Shopify Subdomain | Credentials | The storeβs myshopify.com subdomain (e.g., your-store ). |
Outputs
Name | Type | Description |
---|---|---|
Success | Boolean | Indicates whether the order was successfully retrieved. |
Contains Tag? | Boolean | true if the orderβs tags include the specified tag. |
Notes
- Tag comparison is case-insensitive.
- If the order cannot be found or an error occurs, Success is false and
Contains Tag?
is false. - Your token must have read access to orders (e.g., read_orders permission).
Updated 4 days ago