Hello,
We are using ArcGIS Online Feature Service webhooks. When creating a wh, how does `scheduleInfo.startAt` work?
https://developers.arcgis.com/rest/enterprise-administration/server/create-webhook/
Specifically, we have a Feature Service with existing features...
- If we create a webhook and specify startAt == "now", will we receive "FeaturesUpdated" payloads for features that were _created_ before "now", but _updated_ afterwards? This is what we want.
- If we create a wh and specify startAt == "1 month ago", will we receive "FeaturesUpdated" payloads for all the updates that happened in the past? We want to avoid this because we are not interested in payloads from older changes.
To sum it up, we are trying to sort out how to initialize our system to start capturing "FeaturesCreated" and "FeaturesUpdated" from "now" forward. We need to know about updates to older features, but we do not want to be notified of creates/updates which happened before "now". How we control this from the AGOL webhook side?
Thanks,