Nimbu Developer Docs
ReferenceO Auth2

Get user info

GET
/oauth2/userinfo

Returns information about the authenticated user.

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 GET "https://example.com/oauth2/userinfo" \  -H "Authorization: string"
{
  "sub": "string",
  "email": "string"
}
Empty