Shopify Check Order Tags
Checks if order tags contain a specific tag.
Retrieves all tags for a Shopify order by its number.
Inputs
Name | Type | Description |
---|---|---|
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. |
Order Tags | List | The orderβs tags as strings (trimmed). |
Notes
- Tags are returned exactly as stored in Shopify, only whitespace-trimmed.
- If the order cannot be found or an error occurs, Success is false and Order Tags is [].
- The token must have the proper read scope for orders (e.g., read_orders).
Updated 9 days ago