ZITADEL Docs
APIsCore ResourcesV1Organization Objects

IsUserUnique

Check for existing user

Deprecated: use user service v2 ListUsers instead, is unique if no user returned.

Returns if a user with the requested email or username is unique. So you can create the user.

GET
/users/_is_unique

Query Parameters

userName?string
email?string

Response Body

application/json

application/json

curl -X GET "https://loading/users/_is_unique"
{
  "isUnique": true
}
{
  "code": "not_found",
  "message": "string",
  "detail": {
    "type": "string",
    "value": "string",
    "debug": {}
  }
}

Was this page helpful?