Maintenance
Create multiple maintenances
Use this call to create multiple maintenances.<br>You must have at least one of these scopes: 'maintenances.create, setup.manage'.
post/operations/v1/maintenances/bulk
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
{
"maintenances": [
{
"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."
},
{
"unitId": "MUC-MTA",
"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
Success.
Example response
{
"ids": [
"MUC-JQI-SGHZD",
"MUC-JQI-GSZGK"
]
}Changes
No recorded changes to this endpoint across all 1 revision of this API.