Request URL

POST https://api.dotcom-monitor.com/config_api_v1/devices/DisableAlert

Disable alerts for the specified period of time for multiple devices.

Header Parameters

Content-Type: application/json
Example Post body of the request that will disable alerts for 30 minutes
{
                "DisableAlert":
                [
                               {
                                               "Device_ID": 271438,
                                               "Alert_Silence_Min": 10
                               },
                               {
                                               "Device_ID": 271439,
                                               "Alert_Silence_Min": 30
                               }
                ]
}

 

Body Parameters

Field Type Required Description
Device_ID

int32

true

The name of the device you want to disable alerts for.
Alert_Silence_min

int32

true

Defines time period in minutes when all alerts are disable.

Success Response

Example response
{
    "Success":true,
    "Result":"Bulk alert silence has been completed."
}