Hi,
I need to retrieve contacts which are not associated with deals through the API.
I receive an error “There was a problem with the request” when I try POST /crm/v3/objects/contacts/search with following body :
{
“filterGroups”: [
{
“filters”: [
{
“operator”: “NOT_HAS_PROPERTY”,
“propertyName”: “associations.deal”
}
]
}
]
}
Although when I try to find deals without contacts, it does work :
POST /crm/v3/objects/deals/search :
{
“filterGroups”: [
{
“filters”: [
{
“operator”: “HAS_PROPERTY”,
“propertyName”: “associations.contact”
}
]
}
]
}
Any idea ?
Thx