ARGUS Enterprise · JSON Structure

Argus Enterprise Token Response Structure

TokenResponse schema from ARGUS Enterprise API

Type: object Properties: 4
Altus GroupAsset ManagementCash Flow ModelingCommercial Real EstatePortfolio ManagementValuation

TokenResponse is a JSON Structure definition published by ARGUS Enterprise, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

access_token token_type expires_in scope

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/argus-enterprise/refs/heads/main/json-structure/argus-enterprise-token-response-structure.json",
  "name": "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": "int32",
      "description": "Token validity duration in seconds"
    },
    "scope": {
      "type": "string",
      "description": "Granted scopes"
    }
  }
}