UserInfo Endpoint
POST/v3/service/extension/oidc/:organisationId/:subtenantId/userinfo
OpenID Connect UserInfo endpoint that returns claims about the authenticated end-user. Requires a valid access token obtained from the token endpoint to be provided in the Authorization header.
Request
Path Parameters
organisationId stringrequired
The ID of the organisation
subtenantId stringrequired
The ID of the subtenant
Responses
- 200
User information
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
sub string
Unique identifier for the user
presentation object
Object containing user info (claims)
property name* any
Object containing user info (claims)
{
"sub": "string",
"presentation": {}
}
Loading...