Storefront Tag

Tags are a way to group products for filtering on your store. They can be used to limit which products a coupon or sale applies to.

Tags have a name, description, and a url-safe slug for easy linking on your store.

Tags can be added to a product in the product configuration. Tags can also be used to dynamically build a navigation header for your store using navlinks.

Endpoints

GET
/store/tags
  • Request Headers

  • Name
    x-paynow-store-id
    Type
    flake
    Tags
    REQUIRED
    Description

    the ID of your store

  • Name
    Authorization
    Type
    customer auth?
    Tags
    OPTIONAL
    Description

    the token of your customer prefixed with customer if logged in, more information here


The Tag object

  • Fields

  • Name
    id
    Type
    integer
    Tags
    Description

    id of the tag

  • Name
    slug
    Type
    string
    Tags
    Description

    A URL-safe version of the tag name

  • Name
    name
    Type
    string
    Tags
    Description

    name of the tag

  • Name
    description
    Type
    string
    Tags
    NULLABLE
    Description

    A description of what the tag represents

The Tag object

{
    "id": "203183556367761408",
    "slug": "5x-supply-signals",
    "name": "5x - Supply Signals",
    "description": null
}