Wayfair · JSON Structure

Wayfair Token Response Structure

TokenResponse schema from Wayfair Supplier API

Type: object Properties: 3
E-CommerceFurnitureHome GoodsRetailSuppliersGraphQL

TokenResponse is a JSON Structure definition published by Wayfair, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

access_token token_type expires_in

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-response-structure.json",
  "name": "TokenResponse",
  "description": "TokenResponse schema from Wayfair Supplier API",
  "type": "object",
  "properties": {
    "access_token": {
      "type": "string",
      "description": "JWT bearer token for subsequent API requests.",
      "example": "eyJhbGciOiJSUzI1NiJ9.example.token"
    },
    "token_type": {
      "type": "string",
      "description": "Token type, always \"Bearer\".",
      "example": "Bearer"
    },
    "expires_in": {
      "type": "int32",
      "description": "Token expiration time in seconds.",
      "example": 3600
    }
  }
}