Stitch · Schema

TokenResponse

AfricaFinancial DataOpen BankingPaymentsUnified APISouth AfricaNigeria

Properties

Name Type Description
access_token string OAuth 2.0 Bearer access token.
token_type string Token type (Bearer).
expires_in integer Token expiry in seconds.
scope string Granted scopes.
View JSON Schema on GitHub

JSON Schema

stitch-tokenresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TokenResponse",
  "title": "TokenResponse",
  "type": "object",
  "properties": {
    "access_token": {
      "type": "string",
      "description": "OAuth 2.0 Bearer access token."
    },
    "token_type": {
      "type": "string",
      "description": "Token type (Bearer).",
      "example": "Bearer"
    },
    "expires_in": {
      "type": "integer",
      "description": "Token expiry in seconds.",
      "example": 3600
    },
    "scope": {
      "type": "string",
      "description": "Granted scopes."
    }
  }
}