Initiating Multiple Webhook Requests Using Zapier Code Actions

I need to make 5 POST calls to a webhook inside a Zapier code loop. Callback stops fetch. How can I run all calls?

for(let x=0;x<5;x++) invokeWebhook('https://srv.com/hk', JSON.stringify({info: `Num ${x}`})); endProcess(null, {});

hey, try using async/await to run the webhooks conruitely; i’ve seen zapier hang on waiting for callbacks. using promise.all for concurrent calls might solve the issue, check it out.