v1

latestOpenAPI 3.0.02026-07-243339471.1 MB
Alerts

Set alert priority

This API endpoint sets the priority level for the specified alerts.

post/network-notifications/v1/alerts/priority

Request body

keysstring[] required

List of alert keys to update priority.

priority'Very High' | 'High' | 'Medium' | 'Low' | 'Very Low' required

The priority level to set for the alerts.

Example request

{
  "keys": [
    "ad4c9f5b-25d2-37f9-a4ed-fc0e6b0f5825",
    "bd5c9f5b-35d2-47f9-b4ed-fc0e6b0f5826"
  ],
  "priority": "High"
}

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