I’m POSTing to the endpoint /crm/v3/objects/meetings to return meetings, including the property “hs_meeting_outcome” in the JSON.
However, only meetings using the system default meeting outcomes of “SCHEDULED”, “RESCHEDULED”, “NO_SHOW”, “COMPLETED” or “CANCELED” return a value for this field.
I have 3 custom meeting outcomes set up in Hubspot, and all meetings with one of these values just return null.
Is there any way to return custom meeting outcomes using this endpoint?
Hi @NLewis1, As much as i know, Unfortunately, the <code>/crm/v3/objects/meetings</code> endpoint only supports the default meeting outcomes.
If you would like to get additional data related to your custom meeting outcomes, you’ll need to use the <code>/crm/v3/properties/:property_name/enum/options</code> endpoint.
For example, if your field name is <code>hs_meeting_outcome</code>, you can use the following endpoint to get all the available options, including your custom ones:
<code>GET https://api.hubapi.com/crm/v3/properties/hs_meeting_outcome/enum/options</code>
This endpoint will return all of the custom meeting outcomes that have been set up in your Hubspot account.