<?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 can I extract form submission data like email id, phone number, and form ID via webhook? in APIs &amp; Integrations</title>
    <link>https://community.hubspot.com/t5/APIs-Integrations/How-can-I-extract-form-submission-data-like-email-id-phone/m-p/1218607#M85200</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/706591"&gt;@CDan2&lt;/a&gt; and thanks for your follow up question!&lt;BR /&gt;&lt;BR /&gt;Here are some resources that might help you:&lt;BR /&gt;&lt;BR /&gt;-&amp;nbsp;&lt;A href="https://developers.hubspot.com/docs/apps/legacy-apps/private-apps/create-and-edit-webhook-subscriptions-in-private-apps" target="_blank" rel="noopener"&gt;Create and edit webhook subscriptions in private apps&lt;/A&gt;&lt;BR /&gt;-&amp;nbsp;&lt;A href="https://developers.hubspot.com/docs/api-reference/webhooks-webhooks-v3/guide" target="_blank" rel="noopener"&gt;Webhooks API&lt;/A&gt;&lt;BR /&gt;-&amp;nbsp;&lt;A href="https://developers.hubspot.com/docs/api-reference/marketing-forms-v3/guide" target="_blank" rel="noopener"&gt;Marketing API | Forms&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Now, let's consult our Top Experts: Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/17186"&gt;@Anton&lt;/a&gt;,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/601366"&gt;@sylvain_tirreau&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/171963"&gt;@Bortami&lt;/a&gt;&amp;nbsp;do you have suggestions to help&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/706591"&gt;@CDan2&lt;/a&gt;, please?&lt;BR /&gt;&lt;BR /&gt;Have a great weekend and thanks so much!&lt;BR /&gt;Bérangère&lt;/P&gt;</description>
    <pubDate>Fri, 31 Oct 2025 15:03:57 GMT</pubDate>
    <dc:creator>BérangèreL</dc:creator>
    <dc:date>2025-10-31T15:03:57Z</dc:date>
    <item>
      <title>How can I extract form submission data like email id, phone number, and form ID via webhook?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-can-I-extract-form-submission-data-like-email-id-phone/m-p/1195970#M84072</link>
      <description>&lt;P&gt;We’re trying to capture form submission data (specifically the phone number, email address, and form ID) whenever a HubSpot form is submitted.&lt;/P&gt;&lt;P&gt;Our goal is to:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Trigger a webhook on form submission.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Receive the phone number, email address, and form ID&amp;nbsp;in the webhook payload.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I’m a bit unclear on how to achieve this? Has anyone implemented this before and can share the right way to pull these specific fields from the webhook payload?&lt;/P&gt;</description>
      <pubDate>Wed, 03 Sep 2025 03:03:13 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-can-I-extract-form-submission-data-like-email-id-phone/m-p/1195970#M84072</guid>
      <dc:creator>CDan2</dc:creator>
      <dc:date>2025-09-03T03:03:13Z</dc:date>
    </item>
    <item>
      <title>Re: How can I extract form submission data like email id, phone number, and form ID via webhook?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-can-I-extract-form-submission-data-like-email-id-phone/m-p/1195984#M84073</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/706591"&gt;@CDan2&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here’s what you need to do:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;
&lt;P&gt;Set up a workflow in HubSpot that triggers when a form is submitted.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;In the workflow, use the "Trigger a webhook" action. Enter your webhook URL (this is where you want to receive the form submission data).&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;HubSpot will send a payload to your webhook. The payload includes all form fields, submission data, and the form GUID.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;In your webhook handler, parse the payload. Look for the fields you need: email, phone number, and form ID. Typically, these will be present in the&amp;nbsp;values&amp;nbsp;array or object. You can match them by their internal names, like&amp;nbsp;email&amp;nbsp;or&amp;nbsp;phone.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Test your setup by submitting the form. Check your webhook endpoint to confirm you’re receiving the fields you want.&lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Hope this helps!&lt;/P&gt;</description>
      <pubDate>Wed, 03 Sep 2025 04:01:09 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-can-I-extract-form-submission-data-like-email-id-phone/m-p/1195984#M84073</guid>
      <dc:creator>GiantFocal</dc:creator>
      <dc:date>2025-09-03T04:01:09Z</dc:date>
    </item>
    <item>
      <title>Re: How can I extract form submission data like email id, phone number, and form ID via webhook?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-can-I-extract-form-submission-data-like-email-id-phone/m-p/1196143#M84081</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/577159"&gt;@GiantFocal&lt;/a&gt;,&lt;BR /&gt;We don't have the subscription to use the&lt;SPAN&gt;&amp;nbsp;"Trigger a webhook" action in workflows.&lt;/SPAN&gt;&lt;BR /&gt;Is there a way to achieve the result through some other way or via APIs?&lt;/P&gt;</description>
      <pubDate>Wed, 03 Sep 2025 12:32:06 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-can-I-extract-form-submission-data-like-email-id-phone/m-p/1196143#M84081</guid>
      <dc:creator>CDan2</dc:creator>
      <dc:date>2025-09-03T12:32:06Z</dc:date>
    </item>
    <item>
      <title>Re: How can I extract form submission data like email id, phone number, and form ID via webhook?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-can-I-extract-form-submission-data-like-email-id-phone/m-p/1196400#M84094</link>
      <description>&lt;ARTICLE class="" dir="auto" tabindex="-1" data-turn-id="26f90e25-1f76-47b6-829b-22396c159c80" data-testid="conversation-turn-2" data-scroll-anchor="true" data-turn="assistant"&gt;
&lt;DIV class=""&gt;
&lt;DIV class="" tabindex="-1"&gt;
&lt;DIV class=""&gt;
&lt;DIV class="" dir="auto" data-message-author-role="assistant" data-message-id="8b5c4d5e-8b33-4fc0-ab9d-14eddee51242" data-message-model-slug="gpt-5-thinking"&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;P data-start="0" data-end="152"&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/706591"&gt;@CDan2&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="0" data-end="152"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="0" data-end="152"&gt;Totally get the constraint. Without access to the workflow “Send a webhook” action, you have two reliable paths that don’t require upgrading.&amp;nbsp;&lt;/P&gt;
&lt;P data-start="0" data-end="152"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="154" data-end="706"&gt;If you’re okay spinning up a small developer app, use HubSpot’s Webhooks (App) subscriptions. Create an app in a developer account, add a subscription for form submission events, install the app on your portal, and HubSpot will POST each submission to your endpoint. The payload includes the form GUID and submitted fields; you can pull email and phone by their internal names (commonly “email”, “phone”, or “mobilephone”) (&lt;A href="https://developers.hubspot.com/docs/api-reference/webhooks-webhooks-v3/guide" target="_blank" rel="noopener"&gt;https://developers.hubspot.com/docs/api-reference/webhooks-webhooks-v3/guide )&lt;/A&gt;&lt;/P&gt;
&lt;P data-start="154" data-end="706"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="154" data-end="706"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="154" data-end="706"&gt;This route is set-and-forget once the app is installed.&lt;/P&gt;
&lt;P data-start="708" data-end="1219"&gt;If building an app isn’t ideal, poll the Forms API for submissions. Use the “Get submissions for a form” endpoint, which returns each submission with the formGuid and a values array containing the submitted properties.&lt;/P&gt;
&lt;P data-start="708" data-end="1219"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="708" data-end="1219"&gt;You’d run a lightweight job every few minutes, read new rows, and extract email/phone by internal name; this works with Free and up (&lt;A href="https://developers.hubspot.com/docs/api-reference/legacy/forms-v1/submissions/get-form-integrations-v1-submissions-forms-form_guid" target="_blank" rel="noopener"&gt;https://developers.hubspot.com/docs/api-reference/legacy/forms-v1/submissions/get-form-integrations-v1-submissions-forms-form_guid )&lt;/A&gt;&lt;/P&gt;
&lt;P data-start="708" data-end="1219"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="708" data-end="1219"&gt;Small note: phone can live in either phone or mobilephone depending on your form fields.&lt;/P&gt;
&lt;P data-start="1221" data-end="1491"&gt;One clarifying question to make sure you won’t miss data: are these HubSpot-hosted forms or embedded on your site?&lt;/P&gt;
&lt;P data-start="1221" data-end="1491"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="1221" data-end="1491"&gt;If they’re embedded, you can also capture the fields in your page code and fan out to your webhook while still submitting to HubSpot, which avoids polling.&lt;/P&gt;
&lt;P data-start="1493" data-end="1644"&gt;Hope this helps. When this hinges on reliable two-way sync, Stacksync handles the mapping and timing so records stay consistent without manual patches.&lt;/P&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/ARTICLE&gt;</description>
      <pubDate>Wed, 03 Sep 2025 20:40:38 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-can-I-extract-form-submission-data-like-email-id-phone/m-p/1196400#M84094</guid>
      <dc:creator>RubenBurdin</dc:creator>
      <dc:date>2025-09-03T20:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: How can I extract form submission data like email id, phone number, and form ID via webhook?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-can-I-extract-form-submission-data-like-email-id-phone/m-p/1196568#M84102</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/537570"&gt;@RubenBurdin&lt;/a&gt;, could you please let me know the exact steps for "&lt;SPAN&gt;add a subscription for form submission events"? We have an App; however, we don't see "form&amp;nbsp;submission events", so we're stuck in this step.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Sep 2025 08:50:42 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-can-I-extract-form-submission-data-like-email-id-phone/m-p/1196568#M84102</guid>
      <dc:creator>CDan2</dc:creator>
      <dc:date>2025-09-04T08:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: How can I extract form submission data like email id, phone number, and form ID via webhook?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-can-I-extract-form-submission-data-like-email-id-phone/m-p/1198278#M84211</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/706591"&gt;@CDan2&lt;/a&gt; and thanks for getting back to us!&lt;BR /&gt;&lt;BR /&gt;Thanks for the help&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/577159"&gt;@GiantFocal&lt;/a&gt;!&lt;BR /&gt;&lt;BR /&gt;I'd love to put you in touch with our Top Experts: Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/601366"&gt;@sylvain_tirreau&lt;/a&gt;,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/17186"&gt;@Anton&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/63499"&gt;@SteveHTM&lt;/a&gt;&amp;nbsp;can you think of a workaround or other suggestions to help&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/706591"&gt;@CDan2&lt;/a&gt;, please?&lt;BR /&gt;&lt;BR /&gt;Have a lovely day and thanks so much in advance for your help!&lt;BR /&gt;Bérangère&lt;/P&gt;</description>
      <pubDate>Wed, 29 Oct 2025 11:18:34 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-can-I-extract-form-submission-data-like-email-id-phone/m-p/1198278#M84211</guid>
      <dc:creator>BérangèreL</dc:creator>
      <dc:date>2025-10-29T11:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: How can I extract form submission data like email id, phone number, and form ID via webhook?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-can-I-extract-form-submission-data-like-email-id-phone/m-p/1198356#M84215</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The simplest (because there would be two or three other solutions) in my humble opinion is that you create a property in contact that could have as name "form_submission", which is typed as a string, with an improbable default value (this property will receive a contact id, so you put any value that will never be a contact id: "0", "--", "NONE", "NULL", etc.). You then create a workflow that triggers on all form fillings, and in action choose to fill the "form_submission" property with the contactId who filled the form (you can also use the email instead of the contactId). Finally, in your application, you create a webhook event ("webhook" section of your application) on the change of the "form_submission" property and this points to a url which retrieves the value of the "form_submission" field and which will search via the contact API or the search api the contact information that you want to retrieve, and this only if the value of "form_submission" is not the default value ("0", "--", "NONE", "NULL", etc.).&amp;nbsp;And when you have retrieved the information, you reset the value of the property to its default value&amp;nbsp;("0", "--", "NONE", "NULL", etc.).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are really too restricted in the workflows, you can create a simple webhook on the change of the email and phone property, and then you check with the Hubspot APIs the information you want to retrieve, but this webhook will launch each time the phone and email properties change, and you will have to for example read the value of hs_latest_source to know if it is indeed a form that changed the property...&lt;/P&gt;</description>
      <pubDate>Tue, 09 Sep 2025 13:25:20 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-can-I-extract-form-submission-data-like-email-id-phone/m-p/1198356#M84215</guid>
      <dc:creator>sylvain_tirreau</dc:creator>
      <dc:date>2025-09-09T13:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: How can I extract form submission data like email id, phone number, and form ID via webhook?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-can-I-extract-form-submission-data-like-email-id-phone/m-p/1214662#M85036</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/577159"&gt;@GiantFocal&lt;/a&gt;&amp;nbsp;- that could work for me. It is rather complex compared to simply have Forms emit an evant I can let my webhook listen to and process.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would be great if this was added soon dear HubSpot!&lt;/P&gt;</description>
      <pubDate>Tue, 21 Oct 2025 15:14:11 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-can-I-extract-form-submission-data-like-email-id-phone/m-p/1214662#M85036</guid>
      <dc:creator>CBN</dc:creator>
      <dc:date>2025-10-21T15:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: How can I extract form submission data like email id, phone number, and form ID via webhook?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-can-I-extract-form-submission-data-like-email-id-phone/m-p/1214663#M85037</link>
      <description>&lt;P&gt;Classic HubSpot blackmail attempt. You just need this 'enter anything that normally is included in any other CRM platform' which you get by upgrading to the next level.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Oct 2025 15:16:09 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-can-I-extract-form-submission-data-like-email-id-phone/m-p/1214663#M85037</guid>
      <dc:creator>CBN</dc:creator>
      <dc:date>2025-10-21T15:16:09Z</dc:date>
    </item>
    <item>
      <title>Re: How can I extract form submission data like email id, phone number, and form ID via webhook?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-can-I-extract-form-submission-data-like-email-id-phone/m-p/1218607#M85200</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/706591"&gt;@CDan2&lt;/a&gt; and thanks for your follow up question!&lt;BR /&gt;&lt;BR /&gt;Here are some resources that might help you:&lt;BR /&gt;&lt;BR /&gt;-&amp;nbsp;&lt;A href="https://developers.hubspot.com/docs/apps/legacy-apps/private-apps/create-and-edit-webhook-subscriptions-in-private-apps" target="_blank" rel="noopener"&gt;Create and edit webhook subscriptions in private apps&lt;/A&gt;&lt;BR /&gt;-&amp;nbsp;&lt;A href="https://developers.hubspot.com/docs/api-reference/webhooks-webhooks-v3/guide" target="_blank" rel="noopener"&gt;Webhooks API&lt;/A&gt;&lt;BR /&gt;-&amp;nbsp;&lt;A href="https://developers.hubspot.com/docs/api-reference/marketing-forms-v3/guide" target="_blank" rel="noopener"&gt;Marketing API | Forms&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Now, let's consult our Top Experts: Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/17186"&gt;@Anton&lt;/a&gt;,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/601366"&gt;@sylvain_tirreau&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/171963"&gt;@Bortami&lt;/a&gt;&amp;nbsp;do you have suggestions to help&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/706591"&gt;@CDan2&lt;/a&gt;, please?&lt;BR /&gt;&lt;BR /&gt;Have a great weekend and thanks so much!&lt;BR /&gt;Bérangère&lt;/P&gt;</description>
      <pubDate>Fri, 31 Oct 2025 15:03:57 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-can-I-extract-form-submission-data-like-email-id-phone/m-p/1218607#M85200</guid>
      <dc:creator>BérangèreL</dc:creator>
      <dc:date>2025-10-31T15:03:57Z</dc:date>
    </item>
    <item>
      <title>Re: How can I extract form submission data like email id, phone number, and form ID via webhook?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-can-I-extract-form-submission-data-like-email-id-phone/m-p/1218941#M85210</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/706591"&gt;@CDan2&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Given your constraints, here's what I would do if I were you:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) Create a text property named (for example) "trigger_my_webhook";&lt;BR /&gt;2) Create a private application and a webhook that points to "&lt;A href="http://www.your-server.com/your-script" target="_blank"&gt;www.your-server.com/your-script&lt;/A&gt;" and monitors changes to the "trigger_my_webhook" property;&lt;BR /&gt;3) In your form, insert the "trigger_my_webhook" property but hide it, and pre-populate it with a value of your choice (see a more robust option below);&lt;BR /&gt;4) When your form is validated, the property will change, and the target of the webhook ("&lt;A href="http://www.your-server.com/your-script" target="_blank"&gt;www.your-server.com/your-script&lt;/A&gt;") will process the request in this way: if the value of "trigger_my_webhook" is empty, you do nothing, but if it contains the value that you have defined in the property of your form, you will retrieve the information you need (phone, address, etc.) from the contact concerned via the API, and above all you reset the value of the "trigger_my_webhook" field to zero, for other submissions from this contact.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One alternative would be to have your field populated with a unique value generated by JavaScript when the form loads on your web page. This way, in "&lt;A href="http://www.your-server.com/your-script" target="_blank"&gt;www.your-server.com/your-script&lt;/A&gt;", you only process the same value once and avoid resetting it to zero (the front-end form does this automatically with each submission).&lt;/P&gt;</description>
      <pubDate>Sun, 02 Nov 2025 09:50:34 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-can-I-extract-form-submission-data-like-email-id-phone/m-p/1218941#M85210</guid>
      <dc:creator>sylvain_tirreau</dc:creator>
      <dc:date>2025-11-02T09:50:34Z</dc:date>
    </item>
  </channel>
</rss>

