<?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: Api access to a sandbox account in APIs &amp; Integrations</title>
    <link>https://community.hubspot.com/t5/APIs-Integrations/Api-access-to-a-sandbox-account/m-p/1103853#M80095</link>
    <description>&lt;P&gt;Hi Jaycee,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you, I did get the integration API to work.&amp;nbsp; I wasn't switching into the sandbox mode so the private app was going to prod.&amp;nbsp; &amp;nbsp;These calls are working now, thank you for the response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Sam&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 04 Feb 2025 17:54:02 GMT</pubDate>
    <dc:creator>SLotti</dc:creator>
    <dc:date>2025-02-04T17:54:02Z</dc:date>
    <item>
      <title>Api access to a sandbox account</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Api-access-to-a-sandbox-account/m-p/1103378#M80070</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created a sandbox account to create an integration from my companies system to send data to our hubspot account.&amp;nbsp; I also created a private app to get a token.&lt;/P&gt;&lt;P&gt;However I have not been able to send a request to the sandbox, as it talks to the production endpoint.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a sandbox api endpoint?&amp;nbsp; I know of:&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;api.hubapi.com&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;What is the proper way for me to test integrating with our companies hutspot account?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2025 20:53:09 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Api-access-to-a-sandbox-account/m-p/1103378#M80070</guid>
      <dc:creator>SLotti</dc:creator>
      <dc:date>2025-02-03T20:53:09Z</dc:date>
    </item>
    <item>
      <title>Re: Api access to a sandbox account</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Api-access-to-a-sandbox-account/m-p/1103789#M80094</link>
      <description>&lt;P&gt;Hey, &lt;SPAN class="mention" data-mention="@SLotti"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/893659"&gt;@SLotti&lt;/a&gt;&lt;/SPAN&gt; &lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt; Can you clarify if you are using a &lt;A href="https://knowledge.hubspot.com/account-management/set-up-a-hubspot-standard-sandbox-account" target="_blank"&gt;&lt;STRONG&gt;Standard Sandbox&lt;/STRONG&gt;&lt;/A&gt; (requires an Enterprise subscription) or a &lt;A href="https://developers.hubspot.com/docs/getting-started/account-types#developer-test-accounts" target="_blank"&gt;&lt;STRONG&gt;Developer Test Account&lt;/STRONG&gt;&lt;/A&gt;? “Sandbox” is sometimes used differently by customers. I'll assume you meant Standard Sandbox and make a quick example:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;In my production portal I have a Sandbox already set up (I didn't sync any data so it's essentially empty)&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CleanShot 2025-02-04 at 09.06.54@2x.png" style="width: 400px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/137599i3BB77F2673B1FD53/image-size/medium?v=v2&amp;amp;px=400" role="button" title="CleanShot 2025-02-04 at 09.06.54@2x.png" alt="CleanShot 2025-02-04 at 09.06.54@2x.png" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;LI&gt;I'll go to Sandbox and create a new Private app (you can give it a unique name and verify it is not populated in your production portal)&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CleanShot 2025-02-04 at 09.09.30@2x.png" style="width: 400px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/137600iF540BBEB6014D720/image-size/medium?v=v2&amp;amp;px=400" role="button" title="CleanShot 2025-02-04 at 09.09.30@2x.png" alt="CleanShot 2025-02-04 at 09.09.30@2x.png" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;LI&gt;Used the Contacts API to create a test contact&lt;BR /&gt;&lt;LI-CODE lang="javascript"&gt;POST https://api.hubapi.com/crm/v3/objects/contacts​&lt;/LI-CODE&gt;&lt;LI-CODE lang="javascript"&gt;{
  "properties": {
    "email": "bobbby@bobsburgers.com",
    "firstname": "Bob",
    "lastname": "Belcher"
    
  }
}&lt;/LI-CODE&gt;
&lt;P&gt;Response&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;{
    "id": "96862778549",
    "properties": {
        "createdate": "2025-02-04T15:59:03.624Z",
        "email": "bobbby@bobsburgers.com",
        "firstname": "Bob",
        "hs_all_contact_vids": "96862778549",
        "hs_associated_target_accounts": "0",
        "hs_currently_enrolled_in_prospecting_agent": "false",
        "hs_email_domain": "bobsburgers.com",
        "hs_is_contact": "true",
        "hs_is_unworked": "true",
        "hs_lifecyclestage_lead_date": "2025-02-04T15:59:03.624Z",
        "hs_marketable_status": "false",
        "hs_marketable_until_renewal": "false",
        "hs_membership_has_accessed_private_content": "0",
        "hs_object_id": "96862778549",
        "hs_object_source": "INTEGRATION",
        "hs_object_source_id": "7765118",
        "hs_object_source_label": "INTEGRATION",
        "hs_pipeline": "contacts-lifecycle-pipeline",
        "hs_prospecting_agent_actively_enrolled_count": "0",
        "hs_registered_member": "0",
        "hs_sequences_actively_enrolled_count": "0",
        "lastmodifieddate": "2025-02-04T15:59:03.624Z",
        "lastname": "Belcher",
        "lifecyclestage": "lead"
    },
    "createdAt": "2025-02-04T15:59:03.624Z",
    "updatedAt": "2025-02-04T15:59:03.624Z",
    "archived": false
}&lt;/LI-CODE&gt;&lt;/LI&gt;
&lt;LI&gt;Verified it&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;only&amp;nbsp;&lt;/EM&gt;&lt;/STRONG&gt;populated the new contact in my Standard Sandbox&lt;BR /&gt;SB&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CleanShot 2025-02-04 at 09.02.01@2x.png" style="width: 400px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/137603i213B98A13CC34F90/image-size/medium?v=v2&amp;amp;px=400" role="button" title="CleanShot 2025-02-04 at 09.02.01@2x.png" alt="CleanShot 2025-02-04 at 09.02.01@2x.png" /&gt;&lt;/span&gt; &lt;BR /&gt;Production &lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CleanShot 2025-02-04 at 09.00.23@2x.png" style="width: 400px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/137604iE924081C2676A4FB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="CleanShot 2025-02-04 at 09.00.23@2x.png" alt="CleanShot 2025-02-04 at 09.00.23@2x.png" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;If you are developing an app or integration, I'd recommend using an App Developer Account and testing with a Developer Test Account versus using a Standard Sandbox. You can create a Private App and test using dummy data. And then once you are set up, you can try swapping out the Private App key for your sandbox or production accounts to see how it works there.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;Jaycee&lt;/P&gt;</description>
      <pubDate>Tue, 04 Feb 2025 16:17:39 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Api-access-to-a-sandbox-account/m-p/1103789#M80094</guid>
      <dc:creator>Jaycee_Lewis</dc:creator>
      <dc:date>2025-02-04T16:17:39Z</dc:date>
    </item>
    <item>
      <title>Re: Api access to a sandbox account</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Api-access-to-a-sandbox-account/m-p/1103853#M80095</link>
      <description>&lt;P&gt;Hi Jaycee,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you, I did get the integration API to work.&amp;nbsp; I wasn't switching into the sandbox mode so the private app was going to prod.&amp;nbsp; &amp;nbsp;These calls are working now, thank you for the response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Sam&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Feb 2025 17:54:02 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Api-access-to-a-sandbox-account/m-p/1103853#M80095</guid>
      <dc:creator>SLotti</dc:creator>
      <dc:date>2025-02-04T17:54:02Z</dc:date>
    </item>
  </channel>
</rss>

