Skip to main content
Version: 2.82.x.x LTS

Successful UserInfo response

The UserInfo service returns a JSON response that contains the requested claims. If the corresponding attribute is not set in nevisIDM, the claim will be omitted from the JSON object. It will not be present with a null or empty string value. The "sub" claim is always returned in the UserInfo Response.

A sample UserInfo Response:

HTTP/1.1 200 OK
Content-Type: application/json

{
"sub": "250000001",
"phone_number": "0444444444",
"updated_at": 1440747180,
"email": "[email protected]",
"address": {
"country": "Hungary",
"formatted": "Addressline1\nAddressline2\nStreet HouseNumber DwellingNumber\nBudapest\n1100\nHungary",
"street_address": "Addressline1\nAddressline2\nStreet HouseNumber DwellingNumber",
"region": "Pest",
"locality": "Budapest",
"postal_code": "1100"
},
"name": "Ms. Jane Doe",
"locale": "en-US",
"birthdate": "1984-07-19",
"gender": "female",
"family_name": "Doe",
"given_name": "Jane"
}