hotjar · Schema

OAuthToken

An OAuth 2.0 access token response returned after successful client credentials authentication.

Properties

Name Type Description
access_token string The access token to use in the Authorization header of API requests.
token_type string The type of token issued. Always bearer.
expires_in integer The number of seconds until the access token expires.
View JSON Schema on GitHub

JSON Schema

hotjar-oauthtoken-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OAuthToken",
  "title": "OAuthToken",
  "type": "object",
  "description": "An OAuth 2.0 access token response returned after successful client credentials authentication.",
  "properties": {
    "access_token": {
      "type": "string",
      "description": "The access token to use in the Authorization header of API requests."
    },
    "token_type": {
      "type": "string",
      "description": "The type of token issued. Always bearer.",
      "enum": [
        "bearer"
      ]
    },
    "expires_in": {
      "type": "integer",
      "description": "The number of seconds until the access token expires."
    }
  }
}