<?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: How do I import each user's HubSpot data into my React platform using their email? in APIs &amp; Integrations</title>
    <link>https://community.hubspot.com/t5/APIs-Integrations/How-do-I-import-each-user-s-HubSpot-data-into-my-React-platform/m-p/1106376#M80197</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/896609"&gt;@JCoro&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can use HubSpot's Contacts API to fetch the contact data.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Reference:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.hubspot.com/docs/reference/api/crm/objects/contacts#basic" target="_blank" rel="noopener"&gt;https://developers.hubspot.com/docs/reference/api/crm/objects/contacts#basic&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you have the contactId, you can use the basic GET&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;https://api.hubapi.com/crm/v3/objects/contacts/{contactId}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But since you have email, you can search for contacts using POST&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;POST https://api.hubapi.com/crm/v3/objects/contacts/search
Authorization: Bearer pat-na1-4b6edd76-***************
Content-Type: application/json

{
  "filterGroups":[
    {
      "filters":[
        {
         "propertyName":"email",
         "operator":"EQ",
         "value": "wes@pearagon.com"
        }
      ]
    }
  ],
"properties": ["firstname", "lastname"]
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When using search, make sure you send a body like this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="WesQ_0-1739150175743.png" style="width: 34px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/138004iCEB21D7EC04825EB/image-dimensions/34x34?v=v2" width="34" height="34" role="button" title="WesQ_0-1739150175743.png" alt="WesQ_0-1739150175743.png" /&gt;&lt;/span&gt;&lt;STRONG&gt;&lt;SPAN&gt;Was I able to help answer your question? Help the community by&amp;nbsp;&lt;/SPAN&gt;marking it as a solution.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 10 Feb 2025 01:17:26 GMT</pubDate>
    <dc:creator>WesQ</dc:creator>
    <dc:date>2025-02-10T01:17:26Z</dc:date>
    <item>
      <title>How do I import each user's HubSpot data into my React platform using their email?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-do-I-import-each-user-s-HubSpot-data-into-my-React-platform/m-p/1106101#M80194</link>
      <description>&lt;P&gt;Please help me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now I am building React project and this is my purpose.&lt;/P&gt;&lt;P&gt;Each users input their email information and then they get their whole data from hubspot. Of course that email is hubspot singin email.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible?&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I do this?&lt;/P&gt;&lt;P&gt;If users need more information, what is that?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 08 Feb 2025 15:04:57 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-do-I-import-each-user-s-HubSpot-data-into-my-React-platform/m-p/1106101#M80194</guid>
      <dc:creator>JCoro</dc:creator>
      <dc:date>2025-02-08T15:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import each user's HubSpot data into my React platform using their email?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-do-I-import-each-user-s-HubSpot-data-into-my-React-platform/m-p/1106376#M80197</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/896609"&gt;@JCoro&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can use HubSpot's Contacts API to fetch the contact data.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Reference:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.hubspot.com/docs/reference/api/crm/objects/contacts#basic" target="_blank" rel="noopener"&gt;https://developers.hubspot.com/docs/reference/api/crm/objects/contacts#basic&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you have the contactId, you can use the basic GET&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;https://api.hubapi.com/crm/v3/objects/contacts/{contactId}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But since you have email, you can search for contacts using POST&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;POST https://api.hubapi.com/crm/v3/objects/contacts/search
Authorization: Bearer pat-na1-4b6edd76-***************
Content-Type: application/json

{
  "filterGroups":[
    {
      "filters":[
        {
         "propertyName":"email",
         "operator":"EQ",
         "value": "wes@pearagon.com"
        }
      ]
    }
  ],
"properties": ["firstname", "lastname"]
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When using search, make sure you send a body like this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="WesQ_0-1739150175743.png" style="width: 34px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/138004iCEB21D7EC04825EB/image-dimensions/34x34?v=v2" width="34" height="34" role="button" title="WesQ_0-1739150175743.png" alt="WesQ_0-1739150175743.png" /&gt;&lt;/span&gt;&lt;STRONG&gt;&lt;SPAN&gt;Was I able to help answer your question? Help the community by&amp;nbsp;&lt;/SPAN&gt;marking it as a solution.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2025 01:17:26 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-do-I-import-each-user-s-HubSpot-data-into-my-React-platform/m-p/1106376#M80197</guid>
      <dc:creator>WesQ</dc:creator>
      <dc:date>2025-02-10T01:17:26Z</dc:date>
    </item>
  </channel>
</rss>

