curl --request GET \
--url https://api.hyperline.co/v1/oauth/userinfo \
--header 'Authorization: Bearer <token>'{
"given_name": "John",
"family_name": "Doe",
"name": "John Doe",
"picture": "https://...",
"email": "[email protected]",
"email_verified": true
}Returns the user information associated with an access token.
curl --request GET \
--url https://api.hyperline.co/v1/oauth/userinfo \
--header 'Authorization: Bearer <token>'{
"given_name": "John",
"family_name": "Doe",
"name": "John Doe",
"picture": "https://...",
"email": "[email protected]",
"email_verified": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
User given name.
"John"
User family name.
"Doe"
User full name.
"John Doe"
User picture URL.
"https://..."
User email.
Indicates if the user email is verified.
true
Was this page helpful?