Skip to main content
Intuit User Info

The UserInfo Endpoint is an OAuth 2.0 Protected Resource that returns Claims about the authenticated End-User.

The Intuit User Info object
{
  "sub": "role_9xbk70891hiu2yj8kfof"
}
Attributes
sub
string

The user’s unique identifier.

Retrieve the OpenID Connect user info for Intuit

The standard OpenID Connect UserInfo endpoint. Returns the stable identifier (sub) of the end user whose access token is presented in the Authorization header.

curl \
  --url "${INCREASE_URL}/fdx/intuit/user_info" \
  -H "Authorization: Bearer ${INCREASE_API_KEY}"