AuthenticationResponse

AuthenticationResponse
Authentication Response

Response object containing authentication token and related information.

JSON Example
{
    "access_token": "string",
    "token_type": "string",
    "expires_in": 0,
    "scope": "string"
}
string
access_token
Required  

JWT access token for API authentication. This token should be included in the Authorization header for subsequent API calls.

string
token_type
Required  

Type of token (typically "Bearer").

integer As int32 As int32
expires_in
Required  

Token expiration time in seconds.

string
scope
Optional

Comma-separated list of scopes granted to the client, indicating which APIs the client can access.