SLO & Service Quality/SLO
POSTSLOSince 1.0SynchronousAuth Required
CreateOverride
Create a temporary target override for an SLO objective with a validity window.
Execution Availability
Try It Out
Submit a mock request using the current auth context and example-driven inputs.
Path Parameters
Request Inputs
Path Parameters
sloIdStringRequiredIdentifier of the SLO objective to override.
Body Fields
overrideTargetLongRequiredTemporary target ratio to apply during the override window.
Example: 0.95
startAtStringRequiredStart time of the override window.
Example: 2026-01-15T08:00:00Z
endAtStringRequiredEnd time of the override window.
Example: 2026-01-15T08:00:00Z
reasonStringRequiredBusiness justification for the override.
Example: Planned maintenance window for DB upgrade
Responses
Endpoint
POST/api/v1/slo/objectives/{sloId}/overrides
/api/v1/slo/objectives/{sloId}/overrides
Request Example
curl -X POST '{host}/api/v1/slo/objectives/{sloId}/overrides' -H 'Authorization: Bearer {token}' -H 'Content-Type: application/json' -d '{"overrideTarget":0.95,"startAt":"2026-01-15T08:00:00Z","endAt":"2026-01-15T08:00:00Z","reason":"Planned maintenance window for DB upgrade"}'
Response Example
200{
"id": "ovr-001",
"sloId": "slo-xyz789",
"overrideTarget": 0.95,
"startAt": "example",
"endAt": "example",
"reason": "Planned maintenance window for DB upgrade"
}Change History
This API has no change history records yet.
