Batch Disable/Enable¶
POST /api/v1/slo/batch_set_disable
Overview¶
Body Request Parameters¶
Parameter Name | Type | Required | Description |
---|---|---|---|
isDisable | boolean | Y | Enable/Disable, false: Enable, true: Disable Allow null: False |
sloUUIDs | array | Y | List of SLO UUIDs Allow null: False |
Additional Parameter Notes¶
Request Example¶
curl 'https://openapi.guance.com/api/v1/slo/batch_set_disable' \
-H 'Content-Type: application/json' \
-H 'DF-API-KEY: <DF-API-KEY>' \
--data '{
"isDisable": false,
"sloUUIDs": [
"monitor_xxxx32",
"monitor_xxxx32"
]
}'