ZITADEL Docs
APIsCore ResourcesV1Organization Objects

ListHumanLinkedIDPs

List Social Logins

Deprecated: use user service v2 ListLinkedIDPs instead.

Returns a list of all linked identity providers/social logins of the user. (e. Google, Microsoft, AzureAD, etc.).

POST
/users/{user_id}/idps/_search

Path Parameters

user_id*string

Request Body

application/json

query?

list limitations and ordering

[key: string]?never

Response Body

application/json

application/json

curl -X POST "https://loading/users/string/idps/_search" \  -H "Content-Type: application/json" \  -d '{}'
{
  "details": {
    "totalResult": 0,
    "processedSequence": 0,
    "viewTimestamp": "1s"
  },
  "result": [
    {
      "userId": "string",
      "idpId": "string",
      "idpName": "string",
      "providedUserId": "string",
      "providedUserName": "string",
      "idpType": "IDP_TYPE_UNSPECIFIED"
    }
  ]
}
{
  "code": "not_found",
  "message": "string",
  "detail": {
    "type": "string",
    "value": "string",
    "debug": {}
  }
}

Was this page helpful?