APIs & Integrations

James_Swallow
Participant

Missing Properties on Meeting Results

Résolue

Hi all.

I'm having a little trouble returning all the properties I would expect from the following request:

 

 

      const response = await hubspotClient.apiRequest({
    method: 'get',
    path: '/crm/v3/objects/meetings/14147138234',

})

 

 

According to https://developers.hubspot.com/docs/api/crm/meetings I should be able to see properties such as 'hs_meeting_body' but it doesn't show in the response. I just get:

 

 

{"id":"14147138234","properties":{"hs_createdate":"2022-10-06T07:25:39.725Z","hs_lastmodifieddate":"2022-10-06T07:25:39.993Z","hs_object_id":"14147138234"},"createdAt":"2022-10-06T07:25:39.725Z","updatedAt":"2022-10-06T07:25:39.993Z","archived":false}

 

 

 

What am I doing wrong?

 

Many thanks in advance.

0 Votes
1 Solution acceptée
kvlschaefer
Solution
Gestionnaire de communauté
Gestionnaire de communauté

Missing Properties on Meeting Results

Résolue

Hi @James_Swallow,

 

Thanks for reaching out! 

 

It's of my understanding that 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.

 

Can you verify if the meeting engagement in question has a meeting description (hs_meeting_body)

 

Thank you!

 

Best,
Kristen


Did you know that the Community is available in other languages?
Join regional conversations by changing your language settings !

Voir la solution dans l'envoi d'origine

0 Votes
3 Réponses
James_Swallow
Participant

Missing Properties on Meeting Results

Résolue

Thanks Kristen. You're right. In the end, the approach below worked, in which object type of "MEETING" is declared, followed by the meetingID, followed by whatever property (ies) are required:

 

const ApiResponse = await hubspotClient.crm.objects.basicApi.getById("MEETING",found_meeting_id,["hs_meeting_title"]);

 Thanks for the help.

 

 

kvlschaefer
Gestionnaire de communauté
Gestionnaire de communauté

Missing Properties on Meeting Results

Résolue

Hi @James_Swallow,

 

You're very welcome!

Thank you for sharing your approach on how you solved this 🙂

 

Have a great day,

Kristen


Did you know that the Community is available in other languages?
Join regional conversations by changing your language settings !
0 Votes
kvlschaefer
Solution
Gestionnaire de communauté
Gestionnaire de communauté

Missing Properties on Meeting Results

Résolue

Hi @James_Swallow,

 

Thanks for reaching out! 

 

It's of my understanding that 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.

 

Can you verify if the meeting engagement in question has a meeting description (hs_meeting_body)

 

Thank you!

 

Best,
Kristen


Did you know that the Community is available in other languages?
Join regional conversations by changing your language settings !
0 Votes