Last Updated on : 2023-06-21 07:12:58download
Query the history of acceptance and rejection of meeting invitations based on the meeting ID and participant ID.
GET: /v2.0/iot-03/meeting-reservations/{reservation_id}/invitations
Parameter name | Type | IN | Required | Description |
---|---|---|---|---|
reservation_id | Long | uri | true | The reservation ID. |
req | MeetingInvitationQueryReq | false |
Description of req
Parameter name | Type | IN | Required | Description |
---|---|---|---|---|
participant_id | String | false | The ID of a specified participant. | |
status | String | false | Indicates whether to accept the meeting invitation. Valid values: accept : accept the invitation. reject : reject the invitation. | |
page_size | Integer | false | The number of items returned on each page. | |
page_no | Integer | false | The page number. |
Parameter name | Type | Description |
---|---|---|
result | Page |
Description of result
Parameter name | Type | Description |
---|---|---|
total | Long | The total number of results. |
list | List | |
has_more | Boolean | Specifies whether to return the next page. |
Description of list
Parameter name | Type | Description |
---|---|---|
reservation_id | Long | The ID of a specified invitation. |
participant_id | String | The ID of a specified participant. |
status | String | Indicates whether to accept the meeting invitation. Valid values: accept : accept the invitation. reject : reject the invitation. |
GET: /v2.0/iot-03/meeting-reservations/1410076676288679969/invitations?status=accept
{
"result": {
"list": [
{
"participant_id": "1",
"reservation_id": 1410076676288680000,
"status": "accept"
}
],
"total": 1,
"has_more": false
},
"t": 1625023490095,
"success": true
}
For more information, see error code.
Is this page helpful?
YesFeedbackIs this page helpful?
YesFeedback