ARGUS Enterprise · Schema

TokenResponse

TokenResponse schema from ARGUS Enterprise API

Altus GroupAsset ManagementCash Flow ModelingCommercial Real EstatePortfolio ManagementValuation

Properties

Name Type Description
access_token string Bearer token for API authentication
token_type string
expires_in integer Token validity duration in seconds
scope string Granted scopes
View JSON Schema on GitHub

JSON Schema

argus-enterprise-token-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argus-enterprise/refs/heads/main/json-schema/argus-enterprise-token-response-schema.json",
  "title": "TokenResponse",
  "description": "TokenResponse schema from ARGUS Enterprise API",
  "type": "object",
  "properties": {
    "access_token": {
      "type": "string",
      "description": "Bearer token for API authentication"
    },
    "token_type": {
      "type": "string",
      "enum": [
        "Bearer"
      ]
    },
    "expires_in": {
      "type": "integer",
      "description": "Token validity duration in seconds"
    },
    "scope": {
      "type": "string",
      "description": "Granted scopes"
    }
  }
}