UserInfo Endpoint
POST/v3/service/extension/oidc/:organisationId/:sandboxOrgId/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
sandboxOrgId stringrequired
Unique identifier of the sandbox organisation.
Responses
- 200
- 401
- 404
- 500
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": {}
}
Unauthorized
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
errorCode integerrequired
errorDescription stringrequired
{
"errorCode": 400,
"errorDescription": "Bad input parameter"
}
Resource not found
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
errorCode integerrequired
errorDescription stringrequired
{
"errorCode": 400,
"errorDescription": "Bad input parameter"
}
Internal server error
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
errorCode integerrequired
errorDescription stringrequired
{
"errorCode": 400,
"errorDescription": "Bad input parameter"
}
Loading...