@dimanche - Did you try looking for the error details in the Monitoring section in your app dashboard?
Hi,
Yes checked there but it did not provide much information.
@dimanche - Looks like a timeout issue. Would you mind posting the code that led to this error?
Hi,
Here the code from the authentication;
const options = {
url: 'https://auth.sender.net/api/login',
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
params: {
'password': bundle.authData.password,
'email': bundle.authData.email
},
body: {
}
}
return z.request(options)
.then((response) => {
response.throwForStatus();
const results = response.json;
// You can do any parsing you need for results here before returning them
return results;
});
Error comes when authenticating the credentials it makes that timeout.
Despite credentials are working outside Zapier.
Thanks