"notificationStatus" of service webhook https://developers.arcgis.com/rest/enterprise-administration/server/notification-status
Improvements:
• ArcGIS service webhook to report successful invocations(currently - only failure)
• ArcGIS service webhook to support conditions to fire only actionable updates.
Example for conditions (pseudo code)
function webhookHandler(update) {
if (update.type === "feature_edit" && update.attributes.status === "actionable") {
notifyTeam(update);
return true;
}
return false;
}