Skip to main content
Stripe User Info

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

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

The user’s unique identifier.

Retrieve the OpenID Connect user info for Stripe

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/stripe/user_info" \
  -H "Authorization: Bearer ${INCREASE_API_KEY}"