GET
/
oauth
/
userinfo
UserInfo endpoint
curl --request GET \
  --url https://id.oakwall.mom/oauth/userinfo \
  --header 'Authorization: Bearer <token>'
{
  "sub": "<string>",
  "name": "<string>",
  "picture": "<string>",
  "email": "<string>",
  "email_verified": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

User claims

sub
string
name
string
picture
string
email
string
email_verified
boolean