Maintenance
Create a new maintenance window
Use this call to create a new maintenance window for the given unit. You can only create maintenances for today and days in the future.<br>You must have at least one of these scopes: 'maintenances.create, maintenances.manage'.
post/operations/v1/maintenances
Headers
Idempotency-Keystring
Unique key for safely retrying requests without accidentally performing the same operation twice. We'll always send back the same response for requests made with the same key, and keys can't be reused with different request parameters. Keys expire after 24 hours.
Request body
Example request
{
"unitId": "MUC-JQI",
"from": "2026-09-01T13:48:09+02:00",
"to": "2026-09-03T13:48:09+02:00",
"type": "OutOfService",
"description": "The remote control for the TV needs to be replaced."
}Response
Creation of the new maintenance was successful.
Example response
{
"id": "MUC-JQI-SGHZD"
}Changes
No recorded changes to this endpoint across all 1 revision of this API.