Hi, I’m trying to retrieve all contacts updated or created today. I’m using filterGroups to achieve that but I have not been able to get this happen. My url is: https://api.hubapi.com/crm/v3/objects/contacts?limit=100
And my body request:
{
"filterGroups": [
{
"filters": [
{
"propertyName": "createdate",
"operator": "GTE",
"value": "1704700800000"
},
{
"propertyName": "lastmodifieddate",
"operator": "GTE",
"value": "1704700800000"
}
]
}
],
"sorts": [
{
"propertyName": "createdate",
"direction": "DESCENDING"
}
]
}