ProductRecord

Type: object

A product object record_type=product.
Product records are used to represent the current and historical products offered by your brand, including your product taxonomy.
The field referenced in product_reference_type should be unique and used in purchase and return events.

Type: string

Unique product_id. Required if product_id is used as the product identifier in product_reference_type.


Example:

"b7c901..."

Type: string

Unique SKU. Required if sku is used as a product identifier in product_reference_type.


Example:

"ac6674..."

Type: string

Unique UPC. Required if upc is used as a product identifier in product_reference_type.


Example:

"ce6378..."

Type: enum (of string) Default: "product_id"

Which field is used to identify the product entity. A value must be provided in the specified field.

Must be one of:

  • "sku"
  • "upc"
  • "product_id"

Type: string

Example:

"Organic Sawyer Rib Crew Knit"

Type: string

Example:

"Whether your look is clean and casual or sharp and sophisticated, Staple Superior has what you need to achieve that effortlessly cool style."

Type: string

Example:

"Sawyer"

Type: string

Example:

"L"

Type: string

Example:

"Navy"

Type: number

Example:

89.0

Type: object

Key value pairs of options that define the product, such as departments, categories, styles, etc.


Example:

{
    "department": [
        "menswear"
    ],
    "category": [
        "outerwear"
    ],
    "subcategory": [
        "knits",
        "wool"
    ]
}

Each additional property must conform to the following schema

Type: array of string
No Additional Items

Each item of this array must be:

Type: string

A URL to the product listed on the public internet - i.e., an ecommerce link.


Example:

"https://fake.com/menswear/sawyer-rib-crew-knit"

Type: array of string

An array of Product Image URLs listed on the public internet.

No Additional Items

Each item of this array must be:

Type: stringFormat: uri

Must be at least 1 characters long

Must be at most 2083 characters long


Example:

[
    "https://fake.com/images/menswear/sawyer-rib-crew-knit.jpg"
]