Skip to main content
POST
/
v2
/
SystemSearchUserProfiles
Search user profiles across all tenants
curl --request POST \
  --url http://localhost:3000/v2/SystemSearchUserProfiles \
  --header 'Content-Type: application/json' \
  --header 'X-Bunker-Token: <api-key>' \
  --data '
{
  "identity": "<string>",
  "unlockuuid": "<string>",
  "request_metadata": {}
}
'
{
  "status": "ok",
  "rows": [
    {
      "token": "<string>",
      "profile": {},
      "tenantid": 123,
      "tenantname": "<string>"
    }
  ]
}

Authorizations

X-Bunker-Token
string
header
required

API token for authentication

Body

application/json
identity
string
required

User identifier to search for (email, login, phone, or custom value; mode is auto-detected)

unlockuuid
string
required

UUID from bulk list unlock for authorization

request_metadata
object

Additional metadata for the request

Response

200 - application/json

User profiles found successfully

status
string
Example:

"ok"

rows
object[]