latestOpenAPI 3.0.32026-08-20147323331.7 KB
a7231589e927
contacts
Search for contacts by a given filter
Filterable fields and their allowed operators:
| Field | Allowed operators |
|---|---|
| id | equals, in, not_in |
| equals, in, not_in, string_contains | |
| name | equals, in, not_in, string_contains |
| account_id | equals, in, not_in |
For custom fields, pass the field slug as field.
Rate limit: 20 requests per minute
post/contacts/search
Request body
Example request
{
"filter": {
"subfilters": [
{
"field": "state",
"operator": "equals",
"value": "new"
}
]
}
}Response
Example response
{
"data": [
{
"custom_fields": {
"role": {
"value": "admin"
}
}
}
]
}