# 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
### Example
```json
{
  "sub": "role_9xbk70891hiu2yj8kfof"
}
```
### Attributes
- `sub` (string)
  The user's unique identifier.

## Retrieve the OpenID Connect user info for Intuit
GET /fdx/intuit/user_info
> The standard OpenID Connect UserInfo endpoint. Returns the stable identifier (`sub`) of the end user whose access token is presented in the `Authorization` header.
### Example
```curl
curl \
  --url "${INCREASE_URL}/fdx/intuit/user_info" \
  -H "Authorization: Bearer ${INCREASE_API_KEY}"
```