Maintenance windows quickstart
By the end of this guide you’ll have a one-time maintenance window scheduled for Friday 14:00–14:30 UTC that silences any monitor tagged service:api.
Prerequisites
Section titled “Prerequisites”- One or more monitors tagged with
service:api. Tags are an array on every monitor — set on create or viaPUT.
1. Tag your monitors
Section titled “1. Tag your monitors”If your monitors aren’t tagged yet:
Open the monitor → Settings → Tags → add service:api → save.
curl -X PUT https://api.siteqwality.com/http/job/$JOB_ID \ -H "Authorization: Bearer $SITEQWALITY_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "tags": ["service:api", "env:prod"] }'2. Create the window
Section titled “2. Create the window”-
Maintenance → New window.
-
Configure:
- Name:
Friday API deploy. - Tags:
service:api. - Schedule type:
one-time. - Starts:
2026-05-10 14:00 UTC. Ends:2026-05-10 14:30 UTC.
- Name:
-
Save.
curl -X POST https://api.siteqwality.com/maintenance_windows \ -H "Authorization: Bearer $SITEQWALITY_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "name": "Friday API deploy", "tags": ["service:api"], "schedule_type": "one_time", "starts_at": "2026-05-10T14:00:00Z", "ends_at": "2026-05-10T14:30:00Z" }'The response includes is_currently_active: false (assuming the window is in the future) and confirms the start/end timestamps in RFC 3339.
3. Verify
Section titled “3. Verify”The window appears in the Maintenance list with a status badge:
Scheduled— in the future.Active— happening now.Past— already ended.
When the window goes active, any matching monitor’s status badge in the dashboard gets a “Maintenance” overlay. Notifications are suppressed automatically.
4. (Recommended) Publish on the status page
Section titled “4. (Recommended) Publish on the status page”For customer-visible maintenance, also create a status-page maintenance entry — see Status pages. The two objects are independent: the maintenance window suppresses internal paging, the status page maintenance shows “Scheduled” cards to customers.