API Documentation

This document is a work in progress and your opinion helps us to improve. Please let us know what we can do better. Thanks! support@procurios.com

OpenID Connect

User profile information

User information GET

URL: /l/oauth2/userinfo

Scope:

openid
Last used: Never

User profile information depending on the exact scopes available and requested. Default available scopes are openid for the sub (id), profile for the name and email for the email. This api call is commonly called after a successful token acquisition.

Live testing disabled

User information

Request

json

Response

jsonStatus: 200
{
    "sub": 1591,
    "name": "Doe (John)",
    "family_name": "Doe",
    "given_name": "John",
    "email": "john@doe.com",
    "email_verified": true
}