I want to grab all meetings with their associated contact and currently using a GET request: https://api.hubapi.com/crm/v3/objects/meetings?associations=contacts but I feel that it doesn't pull everything since I see some meetings not listed from this result. But, if I grab the meeting directly, I can see the associated contact. Is there another way to grab all associated meetings of a contact?
Hey, @Yel-o👋 Have you looked at utilizing the Search API? If you are searching using a specific Contact ID, for example, you can make a request like this:
Request
POST https://api.hubapi.com/crm/v3/objects/meetings/search
Hi @Jaycee_Lewis ! Yes, I've looked into that and I believe that can only search specific contacts and not all contacts associated with a meeting. I tried to change that filter's operator to HAS_PROPERTY but unfortunately, it doesn't work. Would you happen to know if there's another workaround? I believe since HubSpot has API rate limits up to 10k, at some point, using the current method I have wouldn't be sustainable.