Nimbu Developer Docs
ReferenceO Auth2

Get user info (POST)

POST
/oauth2/userinfo

Returns information about the authenticated user via POST.

Authorization

bearerToken
AuthorizationBearer <token>

Personal access token tied to a user account. Requires the X-Nimbu-Site header to scope requests.

In: header

Header Parameters

Authorization*string

Bearer access token with openid scope

Response Body

application/json

curl -X POST "https://example.com/oauth2/userinfo" \  -H "Authorization: string"
{
  "sub": "string",
  "email": "string"
}
Empty