vcenter tokenservice token exchange: info

The info structure contains data that represents successful token exchange response.

Representation:

{
    "access_token""string",
    "refresh_token""string",
    "issued_token_type""string",
    "scope""string",
    "token_type""string",
    "expires_in"1
}

Attributes:

Name Type Description
Required
access_token string The security token issued by the server in response to the token exchange request. Token is base64-encoded.

issued_token_type string An identifier, that indicates the type of the security token in the vcenter.tokenservice.token_exchange.info.access_token parameter.

token_type string A case-insensitive value specifying the method of using the access token issued.

Optional
expires_in long The validity lifetime, in seconds, of the token issued by the server.

Optional. if not applicable for issued token.

scope string Scope of the issued security token.

Optional. if the scope of the issued security token is identical to the scope requested by the client.

refresh_token string A refresh token can be issued in cases where the client of the token exchange needs the ability to access a resource even when the original credential is no longer valid.

Optional. if not needed for specific case of exchange.