Select to view content in your preferred language

Improvement of notificationStatus REST API to include successful invocations/metrics of a webhook

339
1
05-11-2025 08:48 PM
Status: Open
MarkMindlin_idea
Regular Contributor

"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;
}

Tags (1)
1 Comment
KevinHibma

Thank you for logging the suggestion - we've heard this request before, but getting it logged here where others can add their support is a great idea.

We have not implemented this functionality as we do not have a database with ArcGIS Server to maintain these status messages (we handle the relatively small list of possible failed in another way). We do have some options, but they're complicated. We'll continue to evaluate this request, thank you.