Last Updated on : 2023-06-21 07:12:58download
Create or update a system meeting room by setting parameters such as the available days of the week, the start and end time of the reservation, and the duration of a single reservation. A value of true
indicates that the creation or update is successful.
POST: /v2.0/iot-03/meeting-settings/reservations
Description of body
Parameter name | Type | IN | Required | Description |
---|---|---|---|---|
booking_date | List | true | The list of available days. | |
start_time | String | true | The start time of the reservation. | |
end_time | String | true | The end time of the reservation. | |
min_minute | Integer | true | The minimum number of minutes for a single reservation. | |
max_hour | Integer | true | The maximum number of hours for a single reservation. | |
max_day | Integer | true | The maximum number of available days before the reserved date. | |
release_time | Integer | true | The maximum number of minutes to release a reservation if no one is present after the reserved time. |
Parameter name | Type | Description |
---|---|---|
result | Boolean | The returned result. |
POST: /v2.0/iot-03/meeting-settings/reservations
{
"booking_date": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Sunday"
],
"start_time": "08:30",
"end_time": "22:00",
"min_minute": 20,
"max_hour": 2,
"max_day": 3,
"release_time": 2
}
{
"result": true,
"t": 1625053614398,
"success": true
}
For more information, see error code.
Is this page helpful?
YesFeedbackIs this page helpful?
YesFeedback