Skip to main content
PATCH
/
maintenance
/
{id}
Update a maintenance window
curl --request PATCH \
  --url https://api.example.com/maintenance/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "description": "<string>",
  "startTime": "2023-11-07T05:31:56Z",
  "endTime": "2023-11-07T05:31:56Z"
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json
title
string

The title of the maintenance window

description
string

The description of the maintenance window

startTime
string<date-time>

The start time of the maintenance window

endTime
string<date-time>

The end time of the maintenance window

Response

The maintenance window has been successfully updated.