<?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: Custom Check Email Already Exists in Form in APIs &amp; Integrations</title>
    <link>https://community.hubspot.com/t5/APIs-Integrations/Custom-Check-Email-Already-Exists-in-Form/m-p/222603#M1499</link>
    <description>&lt;P&gt;Hi &lt;A class="mention" href="https://community.hubspot.com/u/kd1988"&gt;@kd1988&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;No, it is not possible to turn off automatic SSL forwarding ("Require HTTPS") for individual pages. It is possible to turn it off for the entire &lt;EM&gt;subdomain&lt;/EM&gt;, but this would still not prevent some visitors from loading the page over HTTPS.&lt;/P&gt;
&lt;P&gt;The most sustainable solution will be to configure your endpoint for HTTPS requests.&lt;/P&gt;</description>
    <pubDate>Thu, 01 Nov 2018 16:33:36 GMT</pubDate>
    <dc:creator>IsaacTakushi</dc:creator>
    <dc:date>2018-11-01T16:33:36Z</dc:date>
    <item>
      <title>Custom Check Email Already Exists in Form</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Custom-Check-Email-Already-Exists-in-Form/m-p/222598#M1494</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;How i can check "Email Already Exists" through from submission.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Oct 2018 08:12:54 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Custom-Check-Email-Already-Exists-in-Form/m-p/222598#M1494</guid>
      <dc:creator>kd1988</dc:creator>
      <dc:date>2018-10-29T08:12:54Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Check Email Already Exists in Form</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Custom-Check-Email-Already-Exists-in-Form/m-p/222599#M1495</link>
      <description>&lt;P&gt;Hi &lt;A class="mention" href="https://community.hubspot.com/u/kd1988"&gt;@kd1988&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;HubSpot forms and the &lt;A href="https://developers.hubspot.com/docs/methods/forms/forms_overview"&gt;Forms API&lt;/A&gt; do &lt;EM&gt;not&lt;/EM&gt; support this functionality out of the box.&lt;/P&gt;
&lt;P&gt;To do this, you would need to query HubSpot contacts with either &lt;A href="https://developers.hubspot.com/docs/methods/contacts/get_contact_by_email"&gt;this&lt;/A&gt; or &lt;A href="https://developers.hubspot.com/docs/methods/contacts/search_contacts"&gt;this&lt;/A&gt; endpoint. Since these endpoints do not support &lt;A href="https://developers.hubspot.com/docs/faq/do-hubspot-apis-support-ajax-request"&gt;CORS AJAX requests&lt;/A&gt;, however, you would first have to ping your external server and add authentication for these calls to HubSpot.&lt;/P&gt;
&lt;P&gt;Considering the complexity of this setup, I recommend creating a custom form and using the Forms API rather than a native or embedded HubSpot form.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Oct 2018 14:49:34 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Custom-Check-Email-Already-Exists-in-Form/m-p/222599#M1495</guid>
      <dc:creator>IsaacTakushi</dc:creator>
      <dc:date>2018-10-29T14:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Check Email Already Exists in Form</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Custom-Check-Email-Already-Exists-in-Form/m-p/222600#M1496</link>
      <description>&lt;P&gt;Hi &lt;A class="mention" href="https://community.hubspot.com/u/isaac_takushi"&gt;@Isaac_Takushi&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;I have call AJAX request OnClick submit button but i got one issue...In Ajax URL automatically changed HTTP to HTTPS. For example&lt;/P&gt;
&lt;P&gt;$.ajax({&lt;BR /&gt;
type: 'GET',&lt;BR /&gt;
url: "&lt;A href="http://mydomain.com/" rel="nofollow noopener"&gt;http://mydomain.com/&lt;/A&gt;",&lt;BR /&gt;
data: formData,&lt;BR /&gt;
success:function(data){&lt;BR /&gt;
console.log(data);&lt;BR /&gt;
}&lt;BR /&gt;
});&lt;/P&gt;
&lt;P&gt;But in case of request it's automatically changed URL http to https like &lt;A href="https://mydomain.com/" rel="nofollow noopener"&gt;https://mydomain.com/&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 30 Oct 2018 12:07:58 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Custom-Check-Email-Already-Exists-in-Form/m-p/222600#M1496</guid>
      <dc:creator>kd1988</dc:creator>
      <dc:date>2018-10-30T12:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Check Email Already Exists in Form</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Custom-Check-Email-Already-Exists-in-Form/m-p/222601#M1497</link>
      <description>&lt;P&gt;Hi &lt;A class="mention" href="https://community.hubspot.com/u/kd1988"&gt;@kd1988&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;Is your form embedded on an HTTPS page?&lt;/P&gt;
&lt;P&gt;If so, you aren't able to make HTTP AJAX requests due to the &lt;A href="https://developer.mozilla.org/en-US/docs/Web/Security/Same-origin_policy"&gt;same-origin policy&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;As &lt;A href="https://stackoverflow.com/questions/4032104/http-ajax-request-via-https-page"&gt;this Stack Overflow discussion&lt;/A&gt; confirms, this behavior is not exclusive to HubSpot forms.&lt;/P&gt;
&lt;P&gt;Your endpoint must allow HTTPS requests to work from HTTPS pages.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Oct 2018 13:04:00 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Custom-Check-Email-Already-Exists-in-Form/m-p/222601#M1497</guid>
      <dc:creator>IsaacTakushi</dc:creator>
      <dc:date>2018-10-31T13:04:00Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Check Email Already Exists in Form</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Custom-Check-Email-Already-Exists-in-Form/m-p/222602#M1498</link>
      <description>&lt;P&gt;Hi &lt;A class="mention" href="https://community.hubspot.com/u/isaac_takushi"&gt;@Isaac_Takushi&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;Can i have disable/remove HTTPS for particular page?&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 01 Nov 2018 08:01:50 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Custom-Check-Email-Already-Exists-in-Form/m-p/222602#M1498</guid>
      <dc:creator>kd1988</dc:creator>
      <dc:date>2018-11-01T08:01:50Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Check Email Already Exists in Form</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Custom-Check-Email-Already-Exists-in-Form/m-p/222603#M1499</link>
      <description>&lt;P&gt;Hi &lt;A class="mention" href="https://community.hubspot.com/u/kd1988"&gt;@kd1988&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;No, it is not possible to turn off automatic SSL forwarding ("Require HTTPS") for individual pages. It is possible to turn it off for the entire &lt;EM&gt;subdomain&lt;/EM&gt;, but this would still not prevent some visitors from loading the page over HTTPS.&lt;/P&gt;
&lt;P&gt;The most sustainable solution will be to configure your endpoint for HTTPS requests.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Nov 2018 16:33:36 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Custom-Check-Email-Already-Exists-in-Form/m-p/222603#M1499</guid>
      <dc:creator>IsaacTakushi</dc:creator>
      <dc:date>2018-11-01T16:33:36Z</dc:date>
    </item>
  </channel>
</rss>

