UserInfo Endpoint

Returns information about the authenticated user. This request needs to be authenticated with the access token obtained from the /oidc/token endpoint.

Endpoint Supported methods Full URL
/oidc/userinfo GET https://api.mpin.io/oidc/userinfo

# Request Example

curl \
  --header "Authorization: Bearer ${ACCESS_TOKEN}" \
  https://api.mpin.io/oidc/userinfo

# Response Example

{
  "email": "charley@example.com",
  "email_verified": true,
  "sub": "charley@example.com"
}