maintenance windows

Get all maintenance windows

Returns a list of maintenance windows for an account.

get/maintenance-windows

Query parameters

pageinteger

Page of results

limitinteger

The number of maintenance windows to return per page

state'active' | 'paused' | 'pending'

Maintenance window state

Response

OK

Example response

{
  "data": [
    {
      "id": "123",
      "name": "Weekends",
      "end_at": "2020-10-25T23:59:59+00:00",
      "repeat_interval": "1w",
      "start_at": "2020-10-24T00:00:00+00:00",
      "state": "active",
      "tags": [
        "tag1",
        "tag2"
      ],
      "tests": [
        "1",
        "2",
        "3",
        "4"
      ],
      "timezone": "UTC"
    }
  ],
  "metadata": {
    "page": 1,
    "per_page": 25,
    "page_count": 10,
    "total_count": 230
  }
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.