PluginProbe
HubSpot All-In-One Marketing – Forms, Popups, Live Chat / 11.0.31
HubSpot All-In-One Marketing – Forms, Popups, Live Chat v11.0.31
11.3.75 11.3.73 11.3.71 11.3.70 11.3.69 11.3.64 11.3.65 11.3.62 11.3.61 11.3.56 11.3.58 11.0.31 11.0.52 11.0.54 11.0.56 11.0.58 11.0.7 11.1.10 11.1.11 11.1.13 11.1.14 11.1.15 11.1.2 11.1.20 11.1.21 All 73 releases
leadin / scripts / feedback / feedbackFormApi.ts

feedbackFormApi.ts in HubSpot All-In-One Marketing – Forms, Popups, Live Chat 11.0.31, at scripts/feedback/feedbackFormApi.ts

24 lines 647 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import $ from 'jquery';
2
3 const portalId = '6275621';
4 const formId = '0e8807f8-2ac3-4664-b742-44552bfa09e2';
5 const formSubmissionUrl = `https://api.hsforms.com/submissions/v3/integration/submit/${portalId}/${formId}`;
6
7 export function submitFeedbackForm(formSelector: string) {
8 const formSubmissionPayload = {
9 fields: $(formSelector).serializeArray(),
10 skipValidation: true,
11 };
12
13 return new Promise((resolve, reject) => {
14 $.ajax({
15 type: 'POST',
16 url: formSubmissionUrl,
17 contentType: 'application/json',
18 data: JSON.stringify(formSubmissionPayload),
19 success: resolve,
20 error: reject,
21 });
22 });
23 }
24