Abacus · JSON Structure

Abacus Oauth Token Response Structure

OAuth 2.0 access token response

Type: object Properties: 3
AccountingExpense ManagementFinanceReimbursement

OAuthTokenResponse is a JSON Structure definition published by Abacus, 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/abacus/refs/heads/main/json-structure/abacus-oauth-token-response-structure.json",
  "name": "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
    }
  }
}