APIs & Integrations

TimMunro
Mitwirkender/Mitwirkende | Platinum Partner
Mitwirkender/Mitwirkende | Platinum Partner

CRM Associations V4 (Beta) Pagination Bug

lösung

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!

 

 

 

 

0 Upvotes
1 Akzeptierte Lösung
dennisedson
Lösung
HubSpot-Produktteam
HubSpot-Produktteam

CRM Associations V4 (Beta) Pagination Bug

lösung

Fyi, found the issue and it is being worked on. I imagine fix will be pushed early next week

Lösung in ursprünglichem Beitrag anzeigen

0 Upvotes
5 Antworten
Yasar
Mitglied

CRM Associations V4 (Beta) Pagination Bug

lösung

Hi Team,

For Association Object we are still having same issue , where pagination is not return in API response.

For contact to contact association we have created 700+  records but still we are not seeing Paging property in API response .

 

can you please let us know after how many record we Can see the Paging property  ?

we also raised issue here .

 

Thanks,

0 Upvotes
dennisedson
HubSpot-Produktteam
HubSpot-Produktteam

CRM Associations V4 (Beta) Pagination Bug

lösung

@TimMunro ,

Thanks for reporting.  Have sent to the team 👍

dennisedson
Lösung
HubSpot-Produktteam
HubSpot-Produktteam

CRM Associations V4 (Beta) Pagination Bug

lösung

Fyi, found the issue and it is being worked on. I imagine fix will be pushed early next week

0 Upvotes
EBomarsi2024
Teilnehmer/-in

CRM Associations V4 (Beta) Pagination Bug

lösung

Hi Dennis. Our team just hit this recently, so it seems it was not resolved. See new bug: What is the pagination size for V4 Association entity following end point 

0 Upvotes
TimMunro
Mitwirkender/Mitwirkende | Platinum Partner
Mitwirkender/Mitwirkende | Platinum Partner

CRM Associations V4 (Beta) Pagination Bug

lösung

Thanks, have tested and this bug is resolved.

0 Upvotes