GET
/
oauth
/
userinfo
OAuth2 User Info Endpoint
curl --request GET \
  --url {protocol}://{domain}/oauth/userinfo \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "email": "jsmith@example.com",
  "name": "<string>",
  "picture": "<string>"
}

Authorizations

Authorization
string
header
required

OAuth2 authorization code flow with PKCE support. Supports scopes: read, write, mcp, integration, oauth

Response

200
application/json

User information

The response is of type object.