v1

latestOpenAPI 3.0.02026-07-1310691106.0 KB
MaintenanceWindows

List all scheduled maintenance windows schedules on the stack. The default time range is 30 days. If both fromTime and toTime is empty, the default range is +30 days from current time. If only toTime is given, the default range is -30 days from toTime.

get/{stack}/adminconfig/v2/maintenance-windows/schedules

Path parameters

stackstring required

The name of the stack.

Query parameters

countinteger

The maximum number of results to return.

nextLinkstring

The key for the next page of the result set. A nextLink with the value null indicates there are no more pages.

fromTimestring

The earliest time to return results from. Format is expected to be YYYY-MM-DD or in RFC3339. UTC is the default timezone.

toTimestring

The latest time to return results from. Format is expected to be YYYY-MM-DD or in RFC3339. UTC is the default timezone.

Response

successfully listed all scheduled maintenance windows schedules

nextLinkstring required

Example response

[
  {
    "schedules": [
      {
        "operations": [
          {
            "SFDCTickets": [
              "1001234",
              "1001235"
            ],
            "tickets": [
              {
                "id": "1000123",
                "type": "SFDC",
                "url": "https://splunk.my.site.com/customer/s/case/500KW0000000123ABC"
              }
            ]
          }
        ]
      }
    ]
  }
]