I have a system made in PHP and JS as I extract the data that the zap sends me and show it in a form, for now I can send only data to my zap with the following syntax:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script type = "text/javascript">
var name = "pruebas 23 ";
data = "name="+name;
$.ajax({
type: "GET",
url:"https://hooks.zapier.com/hooks/catch/11134459/bhhztgu/",
data: data,
dataType:"json",
success: function (msg) {
console.log(msg);
console.log(data);
},
beforeSend: function () {
}
});
</script>