Hi,
I have a watcher with webhook action in it. Is it possible to make another action based on webhook response status? Something like that
actions: {
webhook_action: {
webhook: {
scheme:
host:
port:
...
}
},
action_on_webhook_response_status: {
condition: {
compare: {
webhook_action.response.status: {
gte: 400
}
}
},
email: {
from:
to:
subject:
body: {
webhook_action failed
}
}
}
}