Get Maintenance Schedule
This endpoint returns Rev’s scheduled maintenance windows (by date/time) for the current year. Maintenance dates are different for different Rev environments and need to be maintained by environment (US, EU and AU regions).
GET
/api/v2/maintenance-schedule
Request Parameters
| Name | Type | Description | Required |
|---|---|---|---|
| none |
Example Response
Returns the list of schedules with start and end date and time in UTC.
{
“schedules”: [
{ “start”: “03-01-2020T20:00:00.000Z”, “end”:” 03-01-2020T23:00:00.000Z”},
{ “start”: “05-01-2020T21:00:00.000Z”, “end”:” 03-01-2020T23:00:00.000Z”},
{ “start”: “07-01-2020T21:00:00.000Z”, “end”:” 03-01-2020T23:00:00.000Z”}
]
}
Response Codes
| Code | Description |
|---|---|
| 200 | Successful response. |
| 401 | Unauthorized error. |
| 500 | Internal error. |