An Azure service that provides an event-driven serverless compute platform.
Hi @Kroolo Dev
Thank you for reaching out to Microsoft Q&A.
At this time, Azure DevOps Service Hooks do not provide any event triggers for sprint (iteration) creation, updates, or deletion. This is because iterations are treated as project and team configuration metadata, not as work items. Service Hooks only fire for events that are explicitly published by Azure DevOps (such as work item created/updated, pipeline events, repository events, etc.). Since iteration paths are managed as classification nodes under project settings and not part of the work item store, no Service Hook publisher exists for iteration lifecycle changes. As a result, creating or modifying sprints does not emit any webhook or event natively.
Refer below points to resolve this issue or this is the workaround:
Polling Iterations (Classification Nodes) REST API (Recommended Approach)
- Since there is no Service Hook support, polling the Iterations API is the only supported and reliable solution.
- You can periodically call the Azure DevOps REST API for iterations and compare the results with a previously stored snapshot to detect newly created sprints.
- This approach is commonly used with Azure Functions, Logic Apps, Power Automate (scheduled flows), or background jobs.
Use Team or Process Automation as a Controlled Workaround
- If your organization controls how sprints are created, consider enforcing sprint creation through a script, pipeline, or internal automation.
- Your automation can then emit a custom webhook or event at sprint creation time, effectively filling the gap left by missing native events.
No Existing Service Hook or Event-Based Alternative
- Work Item Created/Updated events cannot be used because iterations are not work items.
- Pipeline, repository, or audit-related Service Hooks also do not capture iteration configuration changes.
- As of now, Azure DevOps does not offer any near real-time, event-driven trigger for sprint or iteration lifecycle changes outside of polling.