Get properties liste of a object in V3 API

Hi,
I juste have the liste’s properties of the object.
For exemple quotes : Accounts Dashboard | HubSpot
Thanks

Hey @Malloum,

When looking to retrieve HubSpot’s CRM objects properties, you can check out the CRM API | Properties. This API also allows you to manage custom properties. Currently, this API only supports the following objects - Contacts, Companies, Deals and Tickets.

If you’re looking to retrieve quotes object properties, since it do not support custom properties, here’s the list of properties:

{
 "property_number": "17",
 "property_dropdown": "choice_b",
 "property_radio": "option_1",
 "property_string": "value",
 "property_multiple_checkboxes": "chocolate;strawberry",
 "property_checkbox": "false",
 "property_date": "1572480000000"
}

Hope this helps to shed some light!

Hi @WendyGoh ,

thank you for your answer, in the Quote API, how can I have the associated “Product” and “Deal”.

Hey @Malloum,

You can the list of associations of a quote by using the GET /crm/v3/objects/quotes/{quoteId}/associations/{associatedObjectType} endpoint - Learn more here: CRM API | Quotes.

E.g.

https://api.hubspot.com/crm/v3/objects/quotes/{{quoteId}}/associations/deals?hapikey={{hapikey}}

to retrieve the deal association of that particular quoteId.