Searching users

You can use the REST API to search for visitors in your project using the POST call.

Searching for visitors

To search for visitors in your project using the REST API, you need to create a filters array.

filters objects

The objects in the filters array must contain a name and value parameter.

POST https://api.eu.smartlook.cloud/api/v1/visitors/search
{
  "filters": [
    {
      "name": "uid",
      "value": "some-uid"
    }
  ]
}

For more information, see the Search visitors in the API reference.