APIs & Integrations

steveka
Participant

Using v3 api to search for changes in specific properties

Hi There,

 

I was wondering if there was a way in the api to search for property changes.  For instance if a firstname has been modifed in the last 10 minutes.  I see that you can filter contacts by modified date like this...

 

 

{
    "filterGroups":[
      {
        "filters":[
          {
            "propertyName": "lastmodifieddate",
            "operator": "GT",
            "value": "1589238000000"
          }
        ]
      }
    ]
  }

 

But we have lots of activity in hubpot, its not unussual for somone to update 20k contacts (updates we don't want to iterate through in the api because they didn't update firstname), so I would want to just look for changes to specific properties kind of like this

 

{
    "filterGroups":[
      {
        "filters":[
          {
            "propertyName": "firstname.lastmodifieddate",
            "operator": "GT",
            "value": "1589238000000"
          }
        ]
      }
    ]
  }

 

 Is this possible?

Thanks for your help

0 Upvotes
1 Reply 1
natsumimori
Community Manager
Community Manager

Using v3 api to search for changes in specific properties

Hi @steveka ,

Thank you for sharing your query in the HubSpot Community.

I wanted to tag in some subject matter experts here: @Gonzalo and @himanshurauthan , could you share your advice for @steveka ?

0 Upvotes