Overview
Some endpoints will have a query parameter calledsearch (array[[string]]) which allows you to specify multiple search terms. These terms will be combined using an AND operator. At the moment, there is no support for other logical operators.
An API endpoint that supports searching will specify in its documentation which fields are searchable. The description will list all the fields that can be used with the search parameter, such as โemailโ, โphoneโ, โnameโ, etc.
This GET Contacts endpoint supports searching for email, phone, and name.
Syntax
The basic syntax for a search term is:Wildcards
When searching for string values, the wildcard character* can be used:
All string searches are case insensitive so searching for โjohnโ will also match with โJohnโ
Examples
If you wanted to search for a contact whose name contains โSteeleโ the query would be:The search terms are combined with the AND operator by default and can not be changed at this time.