<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: HubSpot API Properties in APIs &amp; Integrations</title>
    <link>https://community.hubspot.com/t5/APIs-Integrations/HubSpot-API-Properties/m-p/1110972#M80430</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/901949"&gt;@FBorrego&lt;/a&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You'll need to specify all the properties you'd like returned by the given API endpoint. To get a list of all the properties that are available to specify, you could use the &lt;EM&gt;List Properties&lt;/EM&gt; endpoint first:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-unlink="true"&gt;&lt;STRONG&gt;GET&lt;/STRONG&gt;&amp;nbsp;https://api.hubapi.com/crm/v3/&lt;STRONG&gt;properties&lt;/STRONG&gt;/DEAL&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;// example response body
{
    "results": [
        {
            "updatedAt": "2024-09-05T17:14:04.747Z",
            "createdAt": "2020-06-30T15:57:38.293Z",
            "name": "amount",
            "label": "Amount",
            "type": "number",
            "fieldType": "number",
            "description": "The total amount of the deal",
            "groupName": "deal_revenue",
            "options": [],
            "displayOrder": 2,
            "calculated": false,
            "externalOptions": false,
            "hasUniqueValue": false,
            "hidden": false,
            "hubspotDefined": true,
            "showCurrencySymbol": true,
            "modificationMetadata": {
                "archivable": true,
                "readOnlyDefinition": true,
                "readOnlyValue": false
            },
            "formField": false,
            "dataSensitivity": "non_sensitive"
        },
        {
            "updatedAt": "2024-09-05T17:14:04.747Z",
            "createdAt": "2023-11-20T20:31:00.445Z",
            "name": "amount_in_home_currency",
            "label": "Amount in company currency",
            "type": "number",
            "fieldType": "calculation_equation",
            "description": "The amount of the deal, using the exchange rate, in your company's currency",
            "groupName": "deal_revenue",
            "options": [],
            "displayOrder": -1,
            "calculated": true,
            "externalOptions": false,
            "hasUniqueValue": false,
            "hidden": false,
            "hubspotDefined": true,
            "showCurrencySymbol": true,
            "modificationMetadata": {
                "archivable": true,
                "readOnlyDefinition": true,
                "readOnlyValue": true
            },
            "formField": false,
            "calculationFormula": "if is_present(hs_exchange_rate) then (amount * hs_exchange_rate) else amount",
            "dataSensitivity": "non_sensitive"
        },

        ...

        {
            "updatedAt": "2023-08-11T16:42:34.454Z",
            "createdAt": "2019-08-06T02:41:53.315Z",
            "name": "hs_campaign",
            "label": "HubSpot Campaign",
            "type": "string",
            "fieldType": "text",
            "description": "The marketing campaign the deal is associated with",
            "groupName": "dealinformation",
            "options": [],
            "displayOrder": -1,
            "calculated": false,
            "externalOptions": true,
            "hasUniqueValue": false,
            "hidden": true,
            "hubspotDefined": true,
            "modificationMetadata": {
                "archivable": true,
                "readOnlyDefinition": true,
                "readOnlyValue": false
            },
            "formField": false,
            "dataSensitivity": "non_sensitive"
        },
        {
            "name": "hs_object_id",
            "label": "Record ID",
            "type": "number",
            "fieldType": "number",
            "description": "The unique ID for this record. This value is set automatically by HubSpot.",
            "groupName": "dealinformation",
            "options": [],
            "displayOrder": -1,
            "calculated": false,
            "externalOptions": false,
            "hasUniqueValue": false,
            "hidden": false,
            "hubspotDefined": true,
            "modificationMetadata": {
                "archivable": true,
                "readOnlyDefinition": true,
                "readOnlyValue": true
            },
            "formField": false,
            "dataSensitivity": "non_sensitive"
        }
    ]
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You might like to consider using a tool like &lt;A href="https://try.jsonata.org/" target="_blank" rel="noopener"&gt;JSONata&lt;/A&gt; to inspect just the property names (JSONata query '&lt;SPAN&gt;results&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;name'). Once you know which Deal properties you'd like returned when getting a Deal record (or records), you'll need to specify them via the 'properties' query string parameter. For example:&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&lt;STRONG&gt;GET&lt;/STRONG&gt; &lt;A href="https://api.hubapi.com/crm/v3/objects/DEAL/:DEAL_ID" target="_blank" rel="noopener"&gt;https://api.hubapi.com/crm/v3/objects/DEAL/:DEAL_ID&lt;/A&gt;?&lt;STRONG&gt;properties&lt;/STRONG&gt;=amount,amount_in_home_currency,hs_campaign&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;I hope this proves helpful. Please let me know if you have any follow-up questions&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 18 Feb 2025 22:29:09 GMT</pubDate>
    <dc:creator>zach_threadint</dc:creator>
    <dc:date>2025-02-18T22:29:09Z</dc:date>
    <item>
      <title>HubSpot API Properties</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/HubSpot-API-Properties/m-p/1110935#M80422</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.hubspot.com/t5/APIs-Integrations/An-API-that-extracts-all-properties-information-by-each-company/m-p/266584" target="_blank" rel="noopener"&gt;Solved: HubSpot Community - An API that extracts all properties information by each company in deals - HubSpot Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was reading this post, it was really helpful, but still, I'm not able to pull all the properties from the deals module. It's just pulling the basic ones and not the custom ones.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Is there a way to do that ?&lt;/P&gt;</description>
      <pubDate>Tue, 18 Feb 2025 21:18:33 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/HubSpot-API-Properties/m-p/1110935#M80422</guid>
      <dc:creator>FBorrego</dc:creator>
      <dc:date>2025-02-18T21:18:33Z</dc:date>
    </item>
    <item>
      <title>Re: HubSpot API Properties</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/HubSpot-API-Properties/m-p/1110972#M80430</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/901949"&gt;@FBorrego&lt;/a&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You'll need to specify all the properties you'd like returned by the given API endpoint. To get a list of all the properties that are available to specify, you could use the &lt;EM&gt;List Properties&lt;/EM&gt; endpoint first:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-unlink="true"&gt;&lt;STRONG&gt;GET&lt;/STRONG&gt;&amp;nbsp;https://api.hubapi.com/crm/v3/&lt;STRONG&gt;properties&lt;/STRONG&gt;/DEAL&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;// example response body
{
    "results": [
        {
            "updatedAt": "2024-09-05T17:14:04.747Z",
            "createdAt": "2020-06-30T15:57:38.293Z",
            "name": "amount",
            "label": "Amount",
            "type": "number",
            "fieldType": "number",
            "description": "The total amount of the deal",
            "groupName": "deal_revenue",
            "options": [],
            "displayOrder": 2,
            "calculated": false,
            "externalOptions": false,
            "hasUniqueValue": false,
            "hidden": false,
            "hubspotDefined": true,
            "showCurrencySymbol": true,
            "modificationMetadata": {
                "archivable": true,
                "readOnlyDefinition": true,
                "readOnlyValue": false
            },
            "formField": false,
            "dataSensitivity": "non_sensitive"
        },
        {
            "updatedAt": "2024-09-05T17:14:04.747Z",
            "createdAt": "2023-11-20T20:31:00.445Z",
            "name": "amount_in_home_currency",
            "label": "Amount in company currency",
            "type": "number",
            "fieldType": "calculation_equation",
            "description": "The amount of the deal, using the exchange rate, in your company's currency",
            "groupName": "deal_revenue",
            "options": [],
            "displayOrder": -1,
            "calculated": true,
            "externalOptions": false,
            "hasUniqueValue": false,
            "hidden": false,
            "hubspotDefined": true,
            "showCurrencySymbol": true,
            "modificationMetadata": {
                "archivable": true,
                "readOnlyDefinition": true,
                "readOnlyValue": true
            },
            "formField": false,
            "calculationFormula": "if is_present(hs_exchange_rate) then (amount * hs_exchange_rate) else amount",
            "dataSensitivity": "non_sensitive"
        },

        ...

        {
            "updatedAt": "2023-08-11T16:42:34.454Z",
            "createdAt": "2019-08-06T02:41:53.315Z",
            "name": "hs_campaign",
            "label": "HubSpot Campaign",
            "type": "string",
            "fieldType": "text",
            "description": "The marketing campaign the deal is associated with",
            "groupName": "dealinformation",
            "options": [],
            "displayOrder": -1,
            "calculated": false,
            "externalOptions": true,
            "hasUniqueValue": false,
            "hidden": true,
            "hubspotDefined": true,
            "modificationMetadata": {
                "archivable": true,
                "readOnlyDefinition": true,
                "readOnlyValue": false
            },
            "formField": false,
            "dataSensitivity": "non_sensitive"
        },
        {
            "name": "hs_object_id",
            "label": "Record ID",
            "type": "number",
            "fieldType": "number",
            "description": "The unique ID for this record. This value is set automatically by HubSpot.",
            "groupName": "dealinformation",
            "options": [],
            "displayOrder": -1,
            "calculated": false,
            "externalOptions": false,
            "hasUniqueValue": false,
            "hidden": false,
            "hubspotDefined": true,
            "modificationMetadata": {
                "archivable": true,
                "readOnlyDefinition": true,
                "readOnlyValue": true
            },
            "formField": false,
            "dataSensitivity": "non_sensitive"
        }
    ]
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You might like to consider using a tool like &lt;A href="https://try.jsonata.org/" target="_blank" rel="noopener"&gt;JSONata&lt;/A&gt; to inspect just the property names (JSONata query '&lt;SPAN&gt;results&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;name'). Once you know which Deal properties you'd like returned when getting a Deal record (or records), you'll need to specify them via the 'properties' query string parameter. For example:&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&lt;STRONG&gt;GET&lt;/STRONG&gt; &lt;A href="https://api.hubapi.com/crm/v3/objects/DEAL/:DEAL_ID" target="_blank" rel="noopener"&gt;https://api.hubapi.com/crm/v3/objects/DEAL/:DEAL_ID&lt;/A&gt;?&lt;STRONG&gt;properties&lt;/STRONG&gt;=amount,amount_in_home_currency,hs_campaign&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;I hope this proves helpful. Please let me know if you have any follow-up questions&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Feb 2025 22:29:09 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/HubSpot-API-Properties/m-p/1110972#M80430</guid>
      <dc:creator>zach_threadint</dc:creator>
      <dc:date>2025-02-18T22:29:09Z</dc:date>
    </item>
  </channel>
</rss>

