Skip to content

`GET /api/v1/maintenance-windows/{id}` — get a single maintenance window.

GET
/api/v1/maintenance-windows/{id}
curl --request GET \
--url https://example.com/api/v1/maintenance-windows/example
id
required
string

Maintenance window ID

Maintenance window

Media type application/json

Response body for a single maintenance window.

object
created_by
required
string
ends_at
required
integer format: int64
id
required
string
reason
required
string
starts_at
required
integer format: int64
Example generated
{
"created_by": "example",
"ends_at": 1,
"id": "example",
"reason": "example",
"starts_at": 1
}

Maintenance window not found