So I am using a Zapier webhook on my custom site to post some parameters to be passed on to the next application.
My concern is that, currently, the URL is visible to anyone by simply inspecting the page and looking at the JavaScript function.
How can I hide it more securely/is this even a concern?
Here is an example snippet of the code:
var webhookURL = "https://hooks.zapier.com/hooks/catch/XXXXXX/";
var data = {
"First Name" : userName.value,
"Email" : userEmail.value,
};
request.open("POST", webhookURL, true);