APIs & Integrations

James_Swallow
Participant

Missing Properties on Meeting Results

SOLVE

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 Upvotes
1 Accepted solution
kvlschaefer
Solution
Community Manager
Community Manager

Missing Properties on Meeting Results

SOLVE

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 !

View solution in original post

0 Upvotes
3 Replies 3
James_Swallow
Participant

Missing Properties on Meeting Results

SOLVE

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
Community Manager
Community Manager

Missing Properties on Meeting Results

SOLVE

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 Upvotes
kvlschaefer
Solution
Community Manager
Community Manager

Missing Properties on Meeting Results

SOLVE

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 Upvotes