<?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 Calling custom API endpoints on HS form submissions in APIs &amp; Integrations</title>
    <link>https://community.hubspot.com/t5/APIs-Integrations/Calling-custom-API-endpoints-on-HS-form-submissions/m-p/946826#M72075</link>
    <description>&lt;P&gt;To create user accounts, we need to capture contact details in Hubspot forms and then send those details to our own account creation system.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;However we've been unable to do that via HS.&amp;nbsp; Currently we have an imperfect solution where we use Wordpress forms for account creation data as WP call&lt;SPAN&gt;s a custom API endpoint to register the user account.&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this possible in Hubspot?&lt;/P&gt;</description>
    <pubDate>Wed, 20 Mar 2024 14:00:57 GMT</pubDate>
    <dc:creator>NHarvey2</dc:creator>
    <dc:date>2024-03-20T14:00:57Z</dc:date>
    <item>
      <title>Calling custom API endpoints on HS form submissions</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Calling-custom-API-endpoints-on-HS-form-submissions/m-p/946826#M72075</link>
      <description>&lt;P&gt;To create user accounts, we need to capture contact details in Hubspot forms and then send those details to our own account creation system.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;However we've been unable to do that via HS.&amp;nbsp; Currently we have an imperfect solution where we use Wordpress forms for account creation data as WP call&lt;SPAN&gt;s a custom API endpoint to register the user account.&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this possible in Hubspot?&lt;/P&gt;</description>
      <pubDate>Wed, 20 Mar 2024 14:00:57 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Calling-custom-API-endpoints-on-HS-form-submissions/m-p/946826#M72075</guid>
      <dc:creator>NHarvey2</dc:creator>
      <dc:date>2024-03-20T14:00:57Z</dc:date>
    </item>
    <item>
      <title>Re: Calling custom API endpoints on HS form submissions</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Calling-custom-API-endpoints-on-HS-form-submissions/m-p/946857#M72076</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/645943"&gt;@NHarvey2&lt;/a&gt;&amp;nbsp;- you haven't given very much context here, but its worth looking at two intergation techniques that I have been able to use:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The first one is adding some customization to the form creation script that HubSpot uses. The embed script is revealed as you save a particular form and can be seen in a number of other ways. It's possible to add additional JS functionality to the form to be executed, for example, an &lt;FONT face="courier new,courier"&gt;onFormSubmitted: function($form, data)&lt;/FONT&gt; function definition. This can be super flexible, but when making API calls, any details of those calls will be exposed in the page source code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The second approach typically requires Ops Hub functionality, and a workflow that runs for each form submission seen in HubSpot (targted at appropriate form types) Essentially you place your API calls in a Custom Code workflow step and it will execute any time a new contact is created.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are either of these helpful and worthy of getting more details?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Steve&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Mar 2024 14:38:06 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Calling-custom-API-endpoints-on-HS-form-submissions/m-p/946857#M72076</guid>
      <dc:creator>SteveHTM</dc:creator>
      <dc:date>2024-03-20T14:38:06Z</dc:date>
    </item>
    <item>
      <title>Re: Calling custom API endpoints on HS form submissions</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Calling-custom-API-endpoints-on-HS-form-submissions/m-p/947497#M72100</link>
      <description>Thanks for your reply Steve. I don't think the first solution is an option&lt;BR /&gt;due to the security issue around exposed details. And we don't have the&lt;BR /&gt;Ops Hub module for the 2nd solution. We'll continue to&lt;BR /&gt;explore alternative options. I wonder whether the serverless functions are&lt;BR /&gt;an option as detailed here&lt;BR /&gt;&amp;lt;&amp;gt; ?&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Mar 2024 11:44:42 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Calling-custom-API-endpoints-on-HS-form-submissions/m-p/947497#M72100</guid>
      <dc:creator>NHarvey2</dc:creator>
      <dc:date>2024-03-21T11:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: Calling custom API endpoints on HS form submissions</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Calling-custom-API-endpoints-on-HS-form-submissions/m-p/947894#M72127</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/645943"&gt;@NHarvey2&lt;/a&gt;&amp;nbsp;- I can't offer any experience in developing serverless functions, although I understand they could be used in a proxy setup.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I believe that they require Enterprise CMS - potentially a lot more expensive than Ops Hub which in my book has become phenominally useful for all kinds of tasks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Steve&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2024 20:38:25 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Calling-custom-API-endpoints-on-HS-form-submissions/m-p/947894#M72127</guid>
      <dc:creator>SteveHTM</dc:creator>
      <dc:date>2024-03-21T20:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: Calling custom API endpoints on HS form submissions</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Calling-custom-API-endpoints-on-HS-form-submissions/m-p/1055642#M77426</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/645943"&gt;@NHarvey2&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;How you implemented that ? I need to do same, want to send our hubspot form data to our nodejs api endpoint to save it in our DB .&amp;nbsp;&lt;BR /&gt;can you please tell how can we achive this ?&lt;BR /&gt;&lt;BR /&gt;Thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2024 06:46:23 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Calling-custom-API-endpoints-on-HS-form-submissions/m-p/1055642#M77426</guid>
      <dc:creator>JiteshJoshi583</dc:creator>
      <dc:date>2024-10-16T06:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: Calling custom API endpoints on HS form submissions</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Calling-custom-API-endpoints-on-HS-form-submissions/m-p/1055698#M77429</link>
      <description>Hi, we didn't get around to finding an API solution to this and resorted to&lt;BR /&gt;a Zapier solution so unfortunately can't advise on the API solution.&lt;BR /&gt;</description>
      <pubDate>Wed, 16 Oct 2024 08:35:57 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Calling-custom-API-endpoints-on-HS-form-submissions/m-p/1055698#M77429</guid>
      <dc:creator>NHarvey2</dc:creator>
      <dc:date>2024-10-16T08:35:57Z</dc:date>
    </item>
  </channel>
</rss>

