Shopify Check Order Tags (Order Input)

This action evaluates whether a given Shopify order’s tag list contains specified tags. It returns the full set of tags found on the order and flags indicating if all or at least one of the target tags are present.


Inputs

NameTypeDescription
TagsListThe list of tags to verify against the order.
Shopify OrderObjectThe Shopify order object to inspect.
Case SensitiveBooleanWhether tag matching should consider case.

Outputs

NameTypeDescription
Order TagsListAll tags present on the order.
Includes All Tags?Booleantrue if every tag in Tags is found in Order Tags.
Includes At Least One?Booleantrue if at least one tag in Tags is found in Order Tags.

Notes

  • When Case Sensitive is false, both input tags and order tags are compared in lowercase.
  • Empty or missing Tags list results in Includes All Tags? = true and Includes At Least One? = false.