Identity_Broker_Tenants_TokenInfo

Identity_Broker_Tenants_TokenInfo
Identity_Broker_Tenants_TokenInfo

The TokenInfo structure contains detailed information about the tenant token.

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

The type of the token issued. The access token type provides the client with the information required to successfully utilize the access token to make a protected resource request (along with type-specific attributes). The client MUST NOT use an access token if it does not understand the token type. "Bearer" token type as defined in RFC 6750 is supported.

string
access_token
Required

Tenant client access token issued by the authorization server.

integer As int64
expires_in
Optional

The lifetime in seconds of the access token. For example, the value "3600" denotes that the access token will expire in one hour from the time the response was generated. unset if not applicable for issued token.