Hi,
I have a API response, I'd like to know how can I filter if the Http fails to send and email if this happen
Thanks
Solved! Go to Solution.
@luis_boni97 If you're expecting a 302 response then your filter can be as simple as
CONTAINS([DownloadHeaders],'HTTP/1.1.302')
construct your email using a report text tool connected to the false output of this filter, and use a formula tool to set the To recipient of the email.
Then for every call which doesn't get a 302 response an email will be sent
Hope that helps,
Ollie
Hey @OllieClarke , Thanks for your help and time