Class AuthenticationResponse
Properties
| NAME | TYPE | REQUIRED | DESCRIPTION |
|---|---|---|---|
| access_token | string | Yes | Access token to access API resource |
| scope | string | Yes | Scope |
| token_type | string | Yes | token_type is always "Bearer" |
| expires_in | integer | Yes | Token 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
}