Good Afternoon,
I am setting up an alert for when a web hook receives an error. I am using tokens to fill in the majority of the information. I would like to include the error such as "error 400, email not unique"
Is there anyway to accomplish this? I am particularly looking to add the "response" into the alert.
Cheers,
Erik
Solved! Go to Solution.
You can't send an HTTP-level 400 and capture the results; you have to send an HTTP 200 with an error object in the response. We do this and then write any error response to a field LastWebhookError.
Thank you Sanford!