Wayfair · Schema

TokenRequest

TokenRequest schema from Wayfair Supplier API

E-CommerceFurnitureHome GoodsRetailSuppliersGraphQL

Properties

Name Type Description
client_id string The application client ID issued by Wayfair.
client_secret string The application client secret issued by Wayfair.
View JSON Schema on GitHub

JSON Schema

wayfair-token-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wayfair/refs/heads/main/json-schema/wayfair-token-request-schema.json",
  "title": "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"
  ]
}