Query Meeting

Last Updated on : 2023-06-21 07:13:06download

Query the details of a specified meeting based on the meeting reservation ID. The returned result includes the meeting participants, those who are mentioned in the carbon copy, attachment lists, and other basic parameters.

API address

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

Request parameter

Parameter nameTypeINRequiredDescription
reservation_idStringuritrueThe reservation ID.

Return parameter

Parameter nameTypeDescription
resultMeetingReservationResThe meeting details.

Description of result

Parameter nameTypeDescription
reservation_idStringThe reservation ID.
topicStringThe theme of a specified meeting.
start_timeLongThe start time of a specified meeting.
end_timeLongThe end time of a specified meeting.
statusIntegerThe status of a specified meeting.
room_idStringThe ID of a specified meeting room.
participantsListThe ID of a specified participant in the meeting.
cc_participantsListThe ID of a specified person who is mentioned in the carbon copy.
noticeBooleanThe push notification.
notice_timeLongThe period for a push notification to be sent in advance of a meeting.
descriptionStringThe description of a specified meeting.
creatorStringThe ID of the user who creates the meeting.
modifierStringThe ID of the user who modifies the meeting.
gmt_createLongThe time when it is created.
gmt_modifiedLongThe time when it is modified.
attachmentsListThe information about a specified attachment.

Description of attachments

Parameter nameTypeDescription
nameStringThe name of a specified attachment.
urlStringThe URL of a specified attachment.
sizeStringThe size of a specified attachment.
typeStringThe type of a specified attachment.

Request example

GET: /v2.0/iot-03/meeting-reservations/140953569536560****

Return example

{
    "result": {
        "gmt_create": 1624894472339,
        "room_id": "12333****",
        "cc_participants": [
            "22****",
            "53****",
            "44****",
            "55****"
        ],
        "creator": "sun****",
        "attachments": [
            {
                "type": "jpg",
                "url": "https://****.com/stone/263c885f-0afc-4271-8e77-****.png",
                "size": "332.3kb",
                "name": "c.jpg"
            }
        ],
        "modifier": "32****",
        "end_time": 1624933200000,
        "description": "meeting test add by chenbin 01231411.",
        "gmt_modified": 1624894472368,
        "reservation_id": "140953569536560****",
        "start_time": 1624930800000,
        "notice_time": 1000,
        "topic": "sun_meeting_221",
        "notice": true,
        "participants": [
            "43****",
            "12****",
            "13****"
        ],
        "status": 1
    },
    "t": 1625038715831,
    "success": true
}

Error code

For more information, see error code.