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": "john@doe.com",
"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": "john@doe.com",
"email_verified": true
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The response is of type object
.
Was this page helpful?