How to get access to context data from the user details page

Hi @ivan,

Thank you for your response.

You can get the ID Token by specifying the openid scope in the /authorize request.

For example:

https://{yourDomain}/authorize?
    response_type=code&
    client_id={yourClientId}&
    redirect_uri={https://yourApp/callback}&
    scope=openid&
    state={state}

Yes, this information should be available by calling the Get a user endpoint.

Please let me know if you have any additional questions.

Thanks,
Rueben