BigCommerce · Schema

TokenPostImpersonation

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
channel_id integer Channel ID for requested token
expires_at integer Unix timestamp (UTC time) defining when the token should expire. Supports seconds, but does not support milliseconds, microseconds, or nanoseconds.
View JSON Schema on GitHub

JSON Schema

bigcommerce-tokenpostimpersonation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TokenPostImpersonation",
  "title": "TokenPostImpersonation",
  "type": "object",
  "x-internal": false,
  "x-examples": {},
  "properties": {
    "channel_id": {
      "type": "integer",
      "minimum": 1,
      "description": "Channel ID for requested token",
      "example": 1
    },
    "expires_at": {
      "type": "integer",
      "description": "Unix timestamp (UTC time) defining when the token should expire. Supports seconds, but does not support milliseconds, microseconds, or nanoseconds.",
      "example": 1885635176,
      "minimum": 0
    }
  },
  "required": [
    "channel_id",
    "expires_at"
  ]
}