Delete manual threshold
DELETE
Soft-deletes a manual threshold in the caller's environment.
Path parameters
| Parameter | Type | Description |
|---|---|---|
id | string | Required manual threshold identifier returned by create or list operations |
Response
200 OK
The response returns the deleted manual threshold together with deletedAt.
| Field | Type | Description |
|---|---|---|
id | string | Manual threshold identifier |
target | object | Threshold target |
mode | string | Threshold mode |
bounds | object | Threshold bounds |
createdAt | ISO 8601 datetime | Creation timestamp |
updatedAt | ISO 8601 datetime | Timestamp updated as part of the delete operation |
deletedAt | ISO 8601 datetime | Timestamp when the threshold was soft-deleted |
{
"id": "64b64b64b64b64b64b64b64b",
"target": {
"statTypeId": "11111111-1111-1111-1111-111111111111"
},
"mode": "CAPPED",
"bounds": {
"upper": 10,
"lower": 20
},
"createdAt": "2025-01-02T00:00:00.000Z",
"updatedAt": "2025-01-03T00:00:00.000Z",
"deletedAt": "2025-01-03T00:00:00.000Z"
}
Errors
400: invalid threshold identifier401: unauthorized403: forbidden404: manual threshold not found
Examples
DELETE /v1/ad/manual-thresholds/64b64b64b64b64b64b64b64b