Wayfair · JSON Structure

Wayfair Token Request Structure

TokenRequest schema from Wayfair Supplier API

Type: object Properties: 2 Required: 2
E-CommerceFurnitureHome GoodsRetailSuppliersGraphQL

TokenRequest is a JSON Structure definition published by Wayfair, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

client_id client_secret

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wayfair/refs/heads/main/json-structure/wayfair-token-request-structure.json",
  "name": "TokenRequest",
  "description": "TokenRequest schema from Wayfair Supplier API",
  "type": "object",
  "properties": {
    "client_id": {
      "type": "string",
      "description": "The application client ID issued by Wayfair.",
      "example": "your-client-id-here"
    },
    "client_secret": {
      "type": "string",
      "description": "The application client secret issued by Wayfair.",
      "example": "your-client-secret-here"
    }
  },
  "required": [
    "client_id",
    "client_secret"
  ]
}