User Info Endpoint

The User Info (/connect/userinfo) endpoint is a protected resource that returns claims about the authenticated user once the client presents a valid access token.

This allows applications to retrieve details such as profile information, email, or phone number in a standardized way.

Copy

URI

https://idp.contoso.com/dppassivests/connect/userinfo

User Info Request

Copy

Sample request with bearer authentication

GET /dppassivests/connect/userinfo HTTP/1.1
Host: idp.contoso.com
Authorization: Bearer <access_token>
Copy

Sample request with form authentication

POST /dppassivests/connect/userinfo HTTP/1.1
Host: idp.contoso.com
access_token=<access_token>

User Info Response

Copy

Sample response

HTTP/1.1 200 OK
Content-Type: application/json
{
    "sub": "bob@contoso.com",
    "name": "Bob"
    ...
}