Hi guys! I was try take custom object associations in requisition from endpoint meet: Accounts Dashboard | HubSpot
But, I couldn’t. When I use deals, I can get deals associations ID’s, in this endpoint: https://api.hubapi.com/crm/v3/objects/meetings?limit=100&associations=deals&archived=false
Does anyone know how I can get custom object associations ID in this endpoint?
I tried this endpoint: https://api.hubapi.com/crm/v3/objects/meetings?limit=100&associations={custom object ID}&archived=false
Hello @Leandro_Oliver
you can use the following endpoint.
GET /crm/v3/objects/meetings/:meetingId/associations/:objectType
:meetingId is the ID of the meeting, and :objectType is the internal object type of the custom object you want to retrieve associations for.
if you have a custom object with an internal object type of “my_custom_object”, and you want to retrieve associations for a meeting with ID 123, you would make a request to.
Bash
GET /crm/v3/objects/meetings/123/associations/my_custom_object
This will return the associations of the specified custom object for the meeting.
Nice! Thanks for the answer
Maybe it won’t will solve, because I need to add filter groups, so as not
to be a heavy requisition. In the solution you bring, it isn’t possible to
add filtter groups, right?
##- Por favor digite sua resposta acima desta linha -##