APIs & Integrations

James_Swallow
Participante

Missing Properties on Meeting Results

resolver

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 Avaliação positiva
1 Solução aceita
kvlschaefer
Solução
Gerente da Comunidade
Gerente da Comunidade

Missing Properties on Meeting Results

resolver

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 !

Exibir solução no post original

0 Avaliação positiva
3 Respostas 3
James_Swallow
Participante

Missing Properties on Meeting Results

resolver

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
Gerente da Comunidade
Gerente da Comunidade

Missing Properties on Meeting Results

resolver

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 Avaliação positiva
kvlschaefer
Solução
Gerente da Comunidade
Gerente da Comunidade

Missing Properties on Meeting Results

resolver

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 Avaliação positiva