LinkedIn Login Integration Kit

JSON Pointer syntax reference

JSON Pointer defines a syntax for identifying a specific value within a JSON payload. Using the sample payload and JSON Pointer examples below, identify the attributes you want to populate your attribute contract with.

You can find more information in the following resources:

Example JSON payload

This example uses the https://api.linkedin.com/v2/userinfo user data API URL with the default profile, openid, and email permissions. You can find more information in the following resources:

{
    "sub": "vaz8tJ1Aah",
    "email_verified": true,
    "name": "Example User",
    "locale": {
        "country": "US",
        "language": "en"
    },
    "given_name": "Example",
    "family_name": "User",
    "email": "user@example.com",
    "picture": "https://medialicdn.com/dms/image/v2/example_user"
}
JSON Pointer Syntax
Description JSON Pointer Example value

Given name

/given_name

Example

Country

/locale/country

US

User ID

/sub

vaz8tJ1Aah