User information API
The user information API is the implementation of UserInfo endpoint defined in the OpenID Connect Core 1.0 specification. It returns claims for the user associated with the access token that is presented via bearer authentication.
This endpoint requires bearer authentication. The token must be a valid access token with at least the openid
scope.
A 200 OK
is returned when the user presents a valid token. Otherwise, one of the following errors is returned:
Http status code | Description |
---|---|
401 | No bearer token present in the request, the token does not exist or has expired |
403 | The token does not have the openid scope |
Endpoints:
GET /oauth/v1/userinfo
POST /oauth/v1/userinfo
This endpoint accepts the following request parameters:
Parameter | Required | Example value | Description |
---|---|---|---|
refresh_user_details | no | true | The values of the claims from the user info endpoint ( |
Example request
Example response