Last Updated on : 2023-06-15 05:44:31
Add a meeting reservation based on the meeting theme, start time, end time, participant ID list, CC ID list, attachments, description, creator, and other parameters. If the reservation is successful, the reservation ID will be returned.
POST: /v2.0/iot-03/meeting-reservations
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 | String | 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 | false | The description of a specified meeting, with no more than 256 characters. | |
creator | String | true | The ID of the user who creates the meeting. | |
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 | String | The reservation ID that is returned when the operation is successful. |
POST: /v2.0/iot-03/meeting-reservations
{
"topic": "Test Meeting"
"start_time": 1625040238000,
"end_time": 1625045462000,
"meeting_room_id": "1410148741926678528",
"participants": [
"1",
"2"
],
"cc_participants": [],
"notice": true,
"notice_time": 180,
"attachment_url": [
"www.baidu.com"
],
"description": "The small meeting room has been upgraded.",
"creator": "3",
"attachments": [
{
"name": "12222.jpg",
"url": "http://****.com/12222.jpg"
}
]
}
{
"result": "1410148835895808097",
"t": 1625040656531,
"success": true
}
For more information, see error code.
Is this page helpful?
YesFeedbackIs this page helpful?
YesFeedback