Maintenance windows
Delete Maintenance Window
Permanently deletes a maintenance window. Active alert suppression ends immediately.
DELETE /api/maintenance-windows/{id}
Path Parameters
id(required): The numeric ID of the maintenance window to delete.
Example (cURL)
BASE_URL="https://uptimeify.io"
TOKEN="<your-api-token>"
curl -X DELETE "$BASE_URL/api/maintenance-windows/42" \
-H "Authorization: Bearer $TOKEN"Response
Returns 204 No Content on success with an empty body.
Common errors
401 Unauthorizedwhen you are not logged in403 Forbiddenwhen you cannot access the organization or the window is out of scope (global supporter accounts cannot delete maintenance windows)404 Not Foundwhen no maintenance window with the given ID exists
Update Maintenance Window
Partially updates a maintenance window. All fields are optional; only supplied fields are changed. When targets or tagIds are provided they replace the existing selection entirely.
Global Administration
This section covers the global administration endpoints, which are protected and only accessible to platform administrators.