Query Meeting Invitations

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.

API address

GET: /v2.0/iot-03/meeting-reservations/{reservation_id}/invitations

Request parameter

Parameter nameTypeINRequiredDescription
reservation_idLonguritrueThe reservation ID.
reqMeetingInvitationQueryReq false

Description of req

Parameter nameTypeINRequiredDescription
participant_idString falseThe ID of a specified participant.
statusString falseIndicates whether to accept the meeting invitation. Valid values: accept: accept the invitation. reject: reject the invitation.
page_sizeInteger falseThe number of items returned on each page.
page_noInteger falseThe page number.

Return parameter

Parameter nameTypeDescription
resultPage

Description of result

Parameter nameTypeDescription
totalLongThe total number of results.
listList
has_moreBooleanSpecifies whether to return the next page.

Description of list

Parameter nameTypeDescription
reservation_idLongThe ID of a specified invitation.
participant_idStringThe ID of a specified participant.
statusStringIndicates whether to accept the meeting invitation. Valid values: accept: accept the invitation. reject: reject the invitation.

Request example

GET: /v2.0/iot-03/meeting-reservations/1410076676288679969/invitations?status=accept

Return example

{
    "result": {
        "list": [
            {
                "participant_id": "1",
                "reservation_id": 1410076676288680000,
                "status": "accept"
            }
        ],
        "total": 1,
        "has_more": false
    },
    "t": 1625023490095,
    "success": true
}

Error code

For more information, see error code.