Deprecated

Issue snooze endpoint deprecated

Issues API — Snoozing an entire issue is being retired

The endpoint to snooze an entire issue is now deprecated and will be removed on 30 June 2026. Snoozing an issue silences all of its current and future occurrences indefinitely; after the removal date this behaviour will no longer be available and the endpoint will respond with 410 Gone.

Endpoint: POST /v1/issues/{issue_id}/snooze/

The endpoint continues to function until the removal date. In the meantime, responses now include standard deprecation headers so you can detect and plan the migration programmatically:

Deprecation: @1781568000
Sunset: Mon, 29 Jun 2026 23:59:59 GMT
Link: <https://developers.intruder.io/reference/issues_occurrences_snooze_create>; rel="successor-version", <https://developers.intruder.io/update/changelog/issues-api-snoozing-an-entire-issue-is-being-retired>; rel="deprecation"

To prepare, snooze individual occurrences instead using POST /v1/issues/{issue_id}/occurrences/{id}/snooze/.

This gives you finer-grained control over which occurrences are silenced, and is the supported approach going forward.

For more information, see the API documentation for snoozing occurrences.