Skip to main content
SLO & Service Quality/SLO

CreateOverride

Create a temporary target override for an SLO objective with a validity window.

POST/api/v1/slo/objectives/{sloId}/overrides

Operation ID

CreateOverride

Since

1.0.0

Execution Mode

Synchronous

Auth Context

Auth Required

Auth Context

Send these values as request headers when calling this API.

AuthorizationstringRequired

Bearer Token

X-Tenant-IDstring

X-Tenant-ID

Request Inputs

application/json

Path Parameters

  • sloId
    StringRequired

    Identifier of the SLO objective to override.

Body Fields

  • overrideTarget
    LongRequired

    Temporary target ratio to apply during the override window.

    Example: 0.95

  • startAt
    StringRequired

    Start time of the override window.

    Example: 2026-01-15T08:00:00Z

  • endAt
    StringRequired

    End time of the override window.

    Example: 2026-01-15T08:00:00Z

  • reason
    StringRequired

    Business justification for the override.

    Example: Planned maintenance window for DB upgrade

Responses

200 OK
200 OK

On success, this API returns the following response structure.

  • id
    String

    Unique identifier of this override record.

    Example: ovr-001

  • sloId
    String

    Identifier of the SLO objective being overridden.

    Example: slo-xyz789

  • overrideTarget
    Long

    Temporary target ratio that replaces the default target during the override window.

    Example: 0.95

  • startAt
    String

    Timestamp when the override becomes effective.

    Example: 2026-01-15T08:00:00Z

  • endAt
    String

    Timestamp when the override expires.

    Example: 2026-01-15T08:00:00Z

  • reason
    String

    Business justification for applying this override.

    Example: Planned maintenance window for DB upgrade