token | String The access token or refresh token issued by the authorization server. |
token_type_hint | String. Optional. A hint for the token type. Specify: access_token if the provided token is an access token. refresh_token if the provided token is refresh token. |
active | String Indicates whether or not the token is active. true indicates the token was issued by this authorization server, has not expired, and has not been revoked. false indicates the token is not active. |
token_type | String. Conditional. The type of access token issued by the authorization server. The value is Bearer. token_type is returned only if active is true and token_type is access_token. |
scope | String. Conditional. A space-delimited list of the scope names for which the authorization server issued the token. scope is returned only if active is true and token_type is access_token. |
client_id | String. Conditional. The client identifier for which the authorization server generated the access token. The client_id corresponds to a user account in Integration Server. client_id is returned only if active is true, token_type is access_token, and the authorization server has a value for client_id. The authorization server always has a client_id value for confidential clients because a confidential client must supply their client_id and client_secret when requesting a token. The authorization server will have a client_id value for public clients only if the public client has a user account on Integration Server and the client was already logged in at the time it requested an access token. |
owner_id | String. Conditional. User ID of the resource owner that approved the client access. owner_id is returned only if active is true and token_type is access_token. |
iat | String. Conditional. Time at which the authorization server issued the token. Per RFC 7662, this is a timestamp, measured in the number of seconds since January 1 1970 UTC. iat is returned only if active is true. |
exp | String. Conditional. Time at which the token expires. Per RFC 7662, this is a timestamp, measured in the number of seconds since January 1 1970 UTC. exp is returned only if active is true, token_type is access_token, and the token expires. If the token does not expire, exp does not appear in the output. |