Last Updated on : 2023-06-15 05:44:35
Modify the information about a meeting reservation. If the reservation of the current meeting room needs to be approved, modifying the start time and end time of the meeting will trigger the approval process. If the new meeting room after replacement requires approval, the approval process will also be triggered.
PUT: /v2.0/iot-03/meeting-reservations/{reservation_id}
Parameter name | Type | IN | Required | Description |
---|---|---|---|---|
reservation_id | String | uri | true | The reservation ID. |
Description of body
Parameter name | Type | IN | Required | Description |
---|---|---|---|---|
topic | String | true | The theme of a specified meeting. | |
start_time | Long | true | The 13-digit timestamp of the start time. | |
end_time | Long | true | The 13-digit timestamp of the end time. | |
meeting_room_id | Long | false | The ID of a specified meeting room. | |
participants | List | true | The IDs of participants in the meeting. | |
cc_participants | List | false | The IDs of persons who are mentioned in the carbon copy. | |
notice | Boolean | true | Indicates whether to send push notifications. | |
notice_time | Long | false | The period for a push notification to be sent in advance of a meeting. Unit: seconds. | |
description | String | true | The description of a specified meeting, with no more than 256 characters. | |
modifier | String | true | The modifier. | |
attachments | List | false | The information about a specified attachment. |
Description of attachments
Parameter name | Type | IN | Required | Description |
---|---|---|---|---|
name | String | false | The name of a specified attachment. | |
url | String | false | The URL of a specified attachment. | |
size | String | false | The size of a specified attachment. | |
type | String | false | The type of a specified attachment. |
Parameter name | Type | Description |
---|---|---|
result | Boolean | The result of modifying the meeting reservation. Valid values:
|
PUT: /v2.0/iot-03/meeting-reservations/141014746825490****
{
"topic": "Weekly Meeting",
"start_time": 1641294000000,
"end_time": 1641297600000,
"meeting_room_id": "1475669844291******",
"participants": [
"bsh1633938215016****"
],
"cc_participants": [],
"notice": false,
"description": "desc22",
"creator": "bay1632819585638****",
"modifier": "bay1632819585638****",
"attachments": [
{
"name": "12222.jpg",
"url": "http://****.com/12222.jpg"
}
]
}
{
"result": true,
"t": 1624887931042,
"success": true
}
For more information, see error code.
Is this page helpful?
YesFeedbackIs this page helpful?
YesFeedback