curl --request POST \
--url https://search.withampersand.com/v1/projects/{projectIdOrName}/integrations/{integrationId} \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--data '
{
"objectName": "contact",
"fieldFilters": [
{
"fieldName": "email",
"operator": "eq",
"value": "example@example.com"
}
]
}
'