We use cookies to make HubSpot's community a better place. Cookies help to provide a more personalized experience and relevant advertising for you, and web analytics for us. To learn more, and to see a full list of cookies we use, check out our Cookie Policy (baked goods not included).
Oct 27, 2021 7:40 PM
Trying to use the V4 (beta) associations API, found API responses do not include required pagination details. According to API docs:
https://developers.hubspot.com/docs/api/crm/associations/v4
The call to this URL:
GET/crm/v4/objects/{objectType}/{objectId}/associations/{toObjectType}
Should return results & pagination details thus:
{
"results": [
{
"toObjectId": 0,
"associationTypes": [
{
"category": "HUBSPOT_DEFINED",
"typeId": 0,
"label": "string"
}
]
}
],
"paging": {
"next": {
"after": "string",
"link": "string"
}
}
}
In testing found that the "paging" property is never returned. In the test we created a company (ID=7181446321) that had 600 contacts associated (verified from the HubSpot UI). The GET to crm/v4/objects/COMPANY/7181446321/associations/contact returned this raw response (499 other associations removed for brevity):
{
"results": [
{
"toObjectId": 38351,
"associationTypes": [
{
"label": null,
"typeId": 280,
"category": "HUBSPOT_DEFINED"
},
{
"label": null,
"typeId": 2,
"category": "HUBSPOT_DEFINED"
}
]
},
{"note": "removed 499 other associations for brevity"}
]
}
You can see there is no "paging" property in the response. Documenting here so this issue can be routed to the HubSpot development team for resolution.
Thanks!
Solved! Go to Solution.
Oct 28, 2021 9:51 PM
Fyi, found the issue and it is being worked on. I imagine fix will be pushed early next week
Oct 28, 2021 4:36 PM
Thanks for reporting. Have sent to the team 👍
Oct 28, 2021 9:51 PM
Fyi, found the issue and it is being worked on. I imagine fix will be pushed early next week
Aug 20, 2022 2:02 AM
Thanks, have tested and this bug is resolved.