IdentityBrokerTenantsTokenInfo
The TokenInfo structure contains detailed information about the tenant token.
Properties
string
access_token
Required
Tenant client access token issued by the authorization server.
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.
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.
JSON Example
{
"access_token": "string",
"token_type": "string"
}