List Identities
GET
/me/identities
const url = 'https://example.com/me/identities';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/me/identities \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Response List Identities Me Identities Get
Array<object>
IdentityOutobject
provider
required
Provider
string
subject_hint
required
Subject Hint
string
Examplegenerated
[ { "provider": "example", "subject_hint": "example" }]