Hi everyone !
I have some issue with the Code by Zapier action.
I would like to send from a main zap (containing the code), Json data (if not empty), to a webhook URL that is related to another zap (which after do some stuff).
Here’s my code, I got no error, but the zap with the (catch) Webhook doesn’t receive anything.
let optionsPost = {
method: 'POST',
headers: authHeaders
};
fetch('https://hooks.zapier.com/hooks/catch/6841944/(some-url)/silent/', {
optionsPost,
body:
}).then(function(response) {
return response.text();
}).then(function(responsebody) {
var output = ;
callback(null, output);
}).catch(function(error) {
callback(error);
});
I’ll be reaaaaally greatfull if someone could help me solve this problem.
My goal is to collect data from the Airtable API, sort them, and activate many other zap by posting thos data to the right URL.