v1

latestOpenAPI 3.0.02026-07-243339471.1 MB
Alerts

Defer alerts

This API endpoint defers the specified alerts until a specified time. Deferred alerts will not generate notifications until the deferral period expires.

post/network-notifications/v1/alerts/defer

Request body

keysstring[] required

List of alert keys to defer.

deferUntilstring date-time required

The date-time until which the alerts should be deferred.

Example request

{
  "keys": [
    "22071893000:47765082406",
    "22071893000:47764775046"
  ],
  "deferUntil": "2026-03-01T00:00:00Z"
}

Response

Accepted response for asynchronous alert action operations.

responsestring

Response message indicating the action was accepted.

taskIdstring

Unique task identifier for tracking the asynchronous operation.

locationstring

URL to check the status of the asynchronous operation.

Example response

{
  "response": "Request accepted",
  "taskId": "abc123-def456-ghi789",
  "location": "/network-notifications/v1/alerts/async-operations/abc123-def456-ghi789"
}