Add Meeting Invitations

Last Updated on : 2023-06-21 07:12:55download

Create a history of acceptance and rejection of meeting invitations.

API address

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

Request parameter

Parameter nameTypeINRequiredDescription
reservation_idLonguritrueThe reservation ID.

Description of body

Parameter nameTypeINRequiredDescription
participant_idString trueThe ID of a specified participant in the meeting.
statusString trueIndicates whether to accept the meeting invitation. Valid values: accept: accept the invitation. reject: reject the invitation.

Return parameter

Parameter nameTypeDescription
resultLongThe ID of a specified invitation.

Request example

POST: /v2.0/iot-03/meeting-reservations/1410076676288679969/invitations
{
  "participant_id": "1",
  "status": "accept"
}

Return example

{
    "result": 1410076739505229800,
    "t": 1625023467329,
    "success": true
}

Error code

For more information, see error code.