Abacus · Schema

OAuthTokenResponse

OAuth 2.0 access token response

AccountingExpense ManagementFinanceReimbursement

Properties

Name Type Description
access_token string Access token for API requests
token_type string Token type (always Bearer)
expires_in integer Token expiration time in seconds
View JSON Schema on GitHub

JSON Schema

abacus-oauth-token-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/abacus/refs/heads/main/json-schema/abacus-oauth-token-response-schema.json",
  "title": "OAuthTokenResponse",
  "description": "OAuth 2.0 access token response",
  "type": "object",
  "properties": {
    "access_token": {
      "type": "string",
      "description": "Access token for API requests",
      "example": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4"
    },
    "token_type": {
      "type": "string",
      "description": "Token type (always Bearer)",
      "example": "Bearer"
    },
    "expires_in": {
      "type": "integer",
      "description": "Token expiration time in seconds",
      "example": 3600
    }
  }
}