Search for visitors by name.
Permission required: view-l-room
The conditions field in the selector parameter is deprecated and will be removed in Rocket.Chat 9.0.0. In 8.8, requests containing a non-empty conditions object continue to work, but the response includes deprecation headers and the server records a warning.
Changelog
| Version | Description |
|---|---|
| 8.8.0 | Deprecated the conditions field in the selector parameter. |
The authToken of the authenticated user.
The userId of the authenticated user.
A JSON string containing the search term and an optional array of visitor IDs to exclude in exceptions. The conditions field is deprecated and will be removed in Rocket.Chat 9.0.0.
OK
{
"items": [
{
"_id": "6400be90fa0ed7dd90509300",
"username": "guest-5",
"name": "Jane",
"custom_name": "guest-5 - An agent"
}
],
"success": true
}Bad Request
{
"success": false,
"error": "must have required property 'selector' [invalid-params]",
"errorType": "invalid-params"
}Unauthorized
{
"status": "error",
"message": "You must be logged in to do this."
}