Shopify Check Order Tags
Checks if order tags contain a specific tag.
This action checks whether a Shopify order contains a specified tag. It retrieves the order by its number and evaluates its list of tags for the target value.
Inputs
Name | Type | Description |
---|---|---|
Tag | String | The tag to check for on the order. |
Shopify Order Number | String | The unique order name/number in Shopify (e.g., #1001 ). |
Shopify Token | Credentials | A sensitive token for authenticating to the Shopify Admin API. |
Shopify Subdomain | String | 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
isfalse
andContains Tag?
isfalse
.
Updated 17 days ago