Updating Alert Maintenance Window

You can update the maintenance window using the following API.

Request URL

POST https://http-collector-observability.sixthsense.rakuten.com/api-externalization/api/v1/maintenance/{maintenanceId}

Header

Header key - Authorization

Header value - Bearer {{access_token}} (Navigate to Settings > Access token > Show access token in the SixthSence portal.)

Request

{
"endTime": "string",
"maintenanceName": "string",
"rules": [
"string"
],
"startTime": "string",
"timezone": "string"
}
ParametersDescription
maintenanceIdmaintenanceId of the notification channel to be updated.

Example:

{
"maintenanceName" : "Feb 2023 maintenance 1"
}

Response

{
"data": {},
"message": "string",
"success": true
}

Example:

{
"message": "Alert maintenance updated successfully.",
"success": true,
"data": {
"maintenanceId": "MGNiNGRjZGItZTZkOS00MzgyLTk3MDUtNjMzZjc3NDVhNDdmXzE2NzY5NjYxNTE0MjU=",
"maintenanceName": "Feb 2023 maintenance 1",
"rules": [
"ZGUxOWNhOTAtY2Y3OC00MGRlLWI0NjktNTNjMWU3NGU3ZGEzXzE2NzUyNjAyNTIxMjM="
],
"lastUpdatedBy": "API USER",
"lastUpdatedAt": "2023-02-21T13:31",
"createdBy": "API USER",
"createdAt": "2023-02-21T13:25",
"startTime": "2023-02-01T09:00",
"endTime": "2023-02-01T10:00",
"timezone": "IST"
}
}