I am getting “The app did not respond in-time.” whenever I test my action on zapier.com. I have tested my api endpoint in postman and it responds immediately. There should not be a time out.
const response = await z.request({
method: 'POST',
url: `http://url/`,
headers: {
'Content-Type': 'application/json',
'Accept': '*/*',
'Connection': 'keep-alive',
},
body: body
});
response.throwForStatus();
return response.json;