Identity

List login credentials

Lists every login credential (provider, email, linked/last-login time) linked to the current identity. Each row is one way to prove ownership of the PID.

GET
/identity/credentials

Lists every login credential (provider, email, linked/last-login time) linked to the current identity. Each row is one way to prove ownership of the PID.

Authorization

cookieAuth
pid_access<token>

JWT access token set by /auth/google/callback or /auth/refresh

In: cookie

Response Body

application/json

application/json

curl -X GET "https://example.com/identity/credentials"
[  {    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",    "provider": "string",    "email": "user@example.com",    "linkedAt": "2019-08-24T14:15:22Z",    "lastLoginAt": "2019-08-24T14:15:22Z"  }]