FieldTypeDescription
access_tokenStringThe token to be used to the following requests.
expires_inStringToken time to live.
token_typeStringType of the token. It’s typically "Bearer".
refresh_tokenStringUsed 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. Note: This is retained for backward compatibility and will be removed in the next release.
refresh_expires_inStringRefresh token time to live. Note: This is retained for backward compatibility and will be removed in the next release.
not-before-policyTimestampNot-before policy ensures that any tokens issued before that time become invalid. It returns 0 if there was no not-before policy pushed. Note: This is retained for backward compatibility and will be removed in the next release.
session_stateStringJSON string that represents the End-User’s login state at the OpenId Provider. Note: This is retained for backward compatibility and will be removed in the next release.
scopeStringScope of the access token issued. Note: This is retained for backward compatibility and will be removed in the next release.

Example

{
    "access_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJhY3IiOiIxIiwiYXpwIjoiY2hhcmdlYmFjay1kaXNwdXRlcy1hcGkiLCJleHAiOjE2MDQ5Mjk4MTYsImlhdCI6MTYwNDkyOTUxNiwiaXNzIjoiaHR0cHM6Ly9zdGFnaW5nLXBwcm8ta2V5Y2xvYWstc2VydmljZS5hbGxwYWdvLmNvbS9wcHJvLWtleWNsb2FrLXNlcnZpY2UvYXV0aC9yZWFsbXMvcHBybyIsImp0aSI6IjliZWJjNmM1LTZlNTYtNDVhMS05ZDkwLTRiYTA5ZjlhZjNhMCIsIm9yZ2FuaXphdGlvbiI6ImV4YW1wbGUub3JnYW5pemF0aW9uIiwicHJlZmVycmVkX3VzZXJuYW1lIjoiZXhhbXBsZS51c2VyIiwic2NvcGUiOiJwcm9maWxlIiwic2Vzc2lvbl9zdGF0ZSI6ImQyZWZhNzM3LWM4NzAtNGUwOC1hMDA3LWFhZjg4YzcyODMyOCIsInN1YiI6ImQyZWZhNzM3LWM4NzAtNGUwOC1hMDA3LWFhZjg4YzcyODMyOCIsInR5cCI6IkJlYXJlciJ9.y5jLb7fdkQqPN2uHM28x18xRhyOrAaIaEvLD5nZOwcwgFRiprn9Gw60ZbLLPuA1Mo0VAD056w2EPO9cNkq6LVB-aNo9u5SDOnG65fglbY1Zf4cGjqEwfjvlwd66KaCYEkIEyjdxTbX4OceawA8q5IiI8AvNjJLDr8mK1_k0lOrglpPXQm77-wZkjbg2b-AUr_LM0JVOEB28XYuC3X4ZQzTfyj7UIB4UT7sFmPtda3nZXbHBisg6Rz-hurdfUp2lm4hNfrFDaqGB1fWlbF_at-CPB7deN55EuRJISu8lkYXAKShHlSfqkDhyDWD9xTh0fH77ErFstoy3_L7bPvMyImlXD4bE_8Ei-9uGiusf5dUL1IMieJwZnRio1PRQDZRKd50awFvL94i72EV4WwdxbsaXJXxIItK11JZuNrep0NxfWi42wHWT5XpnZ52ExzWRQ1h9rKn1H073wnKGd9qnvJ_lJQWr4D1RzM6nmDvHiQcC4v26Tk96R2rsENlU_dNSg",
    "expires_in": 300,
    "token_type": "bearer",
    "refresh_expires_in": 0,
    "refresh_token": "",  
    "not-before-policy": 0,
    "session_state": "",
    "scope": ""
}