AuthResponse
Response containing access token and metadata
access_tokenstring
The JWT access token
Example:
eyJraWQiOiJ...
expires_inint32
Time in seconds until the token expires
Example:
3600
token_typestring
The token type returned (usually 'Bearer')
Example:
Bearer
AuthResponse
{
"access_token": "eyJraWQiOiJ...",
"expires_in": 3600,
"token_type": "Bearer"
}