Skip to main content
GET
/
:projectId
/
api
/
v7
/
oauth
/
identities
List OAuth Identities
curl --request GET \
  --url https://api.replyke.com/api/v6/:projectId/api/v7/oauth/identities \
  --header 'Authorization: <authorization>'
{
  "identities": [
    {
      "id": "<string>",
      "provider": "<string>",
      "providerAccountId": "<string>",
      "email": {},
      "name": {},
      "avatar": {},
      "isVerified": true,
      "createdAt": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.replyke.com/llms.txt

Use this file to discover all available pages before exploring further.

Returns all OAuth identities linked to the authenticated user’s account, ordered by creation date. Use this to display connected accounts on a settings page. Requires a valid access token.

Headers

Authorization
string
required
Bearer {accessToken} — a valid access token for the authenticated user.

Response

identities
OAuthIdentity[]
Array of linked identities, ordered oldest first.

See Also