Skip to main content

Class AuthenticationResponse


Properties

NAMETYPEREQUIREDDESCRIPTION
access_tokenstringYesAccess token to access API resource
scopestringYesScope
token_typestringYestoken_type is always "Bearer"
expires_inintegerYesToken expire time in seconds

JSON Representation

{
"access_token": string,
"scope": string,
"token_type": string,
"expires_in": integer
}

Sample Response

{
"access_token": "b317db57-xxxx-aaaa-cccc-5d48778a2e71",
"scope": "am_application_scope default",
"token_type": "Bearer",
"expires_in": 3600
}