APIs & Integrations

Malloum
Participant

Get properties liste of a object in V3 API

SOLVE

Hi,
I juste have the liste's properties of the object.
For exemple quotes : https://developers.hubspot.com/docs-beta/crm/quotes
Thanks

0 Upvotes
1 Accepted solution
WendyGoh
Solution
HubSpot Employee
HubSpot Employee

Get properties liste of a object in V3 API

SOLVE

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!

View solution in original post

0 Upvotes
3 Replies 3
WendyGoh
Solution
HubSpot Employee
HubSpot Employee

Get properties liste of a object in V3 API

SOLVE

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!

0 Upvotes
Malloum
Participant

Get properties liste of a object in V3 API

SOLVE

Hi @WendyGoh ,

 

 

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

 

 

0 Upvotes
WendyGoh
HubSpot Employee
HubSpot Employee

Get properties liste of a object in V3 API

SOLVE

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.

0 Upvotes