OAuth2
Get user info
Returns the user information associated with an access token.
GET
/
v1
/
oauth
/
userinfo
Authorizations
Authorization
string
headerrequiredBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
given_name
string | null
requiredUser given name.
family_name
string | null
requiredUser family name.
name
string | null
requiredUser full name.
picture
string | null
requiredUser picture URL.
email
string
requiredUser email.
email_verified
boolean
requiredIndicates if the user email is verified.
Was this page helpful?