Skip to main content
GET
/
userinfo
Get User Profile
curl --request GET \
  --url https://signin.altostrat.io/userinfo \
  --header 'Authorization: Bearer <token>'
{
  "sub": "<string>",
  "name": "<string>",
  "given_name": "<string>",
  "family_name": "<string>",
  "email": "jsmith@example.com",
  "email_verified": true,
  "picture": "<string>"
}

Authorizations

Authorization
string
header
required

For API calls to Altostrat's resource servers, provide the access_token in the Authorization header: Authorization: Bearer <token>.

Response

A JSON object containing the user's profile information.

sub
string
name
string
given_name
string
family_name
string
email
string<email>
email_verified
boolean
picture
string<uri>