APIs & Integrations

AC-valo
Membre

Custom objects with Nodejs package

Résolue

Hello,

 

I am using the Hubspot package for nodejs and I can't find the right class to interact with custom objects. E.g. to retrieve all of the contacts, I would use the crm.contact.getAll() method, but I couldn't find an equivalent for a custom object. The namespace provided in the REST API documentation is crm.objects.custom, but it doesn't exist in the nodejs package.

How can I retrieve my custom objects using the nodejs package for HubSpot?

0 Votes
1 Solution acceptée
RMones
Solution
Contributeur | Partenaire solutions Platinum
Contributeur | Partenaire solutions Platinum

Custom objects with Nodejs package

Résolue

HI @AC-valo ,

 

You can try to do this with:

hubspotClient.crm.objects.basicApi.getPage()
--------
Read a page of objects. Control what is returned via the properties query param.
Params:
limit – The maximum number of results to display per page.
after – The paging cursor token of the last successfully read resource will be returned as the `paging.next.after` JSON property of a paged response containing more results.
properties – A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored.
associations – A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored.
archived – Whether to return only results that have been archived.

 

Greets Ronald

Voir la solution dans l'envoi d'origine

2 Réponses
RMones
Solution
Contributeur | Partenaire solutions Platinum
Contributeur | Partenaire solutions Platinum

Custom objects with Nodejs package

Résolue

HI @AC-valo ,

 

You can try to do this with:

hubspotClient.crm.objects.basicApi.getPage()
--------
Read a page of objects. Control what is returned via the properties query param.
Params:
limit – The maximum number of results to display per page.
after – The paging cursor token of the last successfully read resource will be returned as the `paging.next.after` JSON property of a paged response containing more results.
properties – A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored.
associations – A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored.
archived – Whether to return only results that have been archived.

 

Greets Ronald

dennisedson
Équipe de développement de HubSpot
Équipe de développement de HubSpot

Custom objects with Nodejs package

Résolue

Hi @AC-valo !

Welcome to the Community!

@RMones , @PCarlson  could you all lend a hand here 🙏

 

 

 

0 Votes