top of page
bottom of page
jQuery.ajax('https://api.mbapps.co.il/functions/aaaaaaafbfeb9b42f00b8b6fc0aedb82a36116d1/getlead', {
method: "POST",
data: JSON.stringify({
"PhoneNumber": "טלפון",
"Email": "אימייל",
"Name": "שם-מלא",
"source1": "G6HYmiGHSk",
"Comment": "comment"
}),
dataType: 'json',
contentType: 'application/json',
headers: {
'X-Parse-Application-Id': "aaaaaaafbfeb9b42f00b8b6fc0aedb82a36116d1"
},
success: function (data) {
console.log(data);
},
error: function (e) {
console.error(e.responseJSON);
}
});