GetMeeting
Description
Retrieves the details of a meeting.
Request parameters
Parameter | Type | Required | Description |
MeetingUUID | String | Yes | The unique identity of the meeting. |
Response parameters
Parameter | Type | Description |
ErrorCode | int | The error code. |
Message | String | The error message. |
Success | boolean | The request status. |
RequestId | String | The request ID. |
MeetingInfo | Struct | The meeting details. For more information, see the MeetingInfo structure. |
MeetingInfo structure
Parameter | Type | Description |
MeetingName | String | The meeting name. |
ValidTime | Long | The validity period of the meeting. |
MeetingCode | String | The security token for the meeting. This token is used to join the meeting. |
MeetingCodeExpire | Boolean | Indicates whether the security token for the meeting has expired. true: The token has expired. false: Not expired |
CreateTime | Long | Creation Time |
UserId | String | The ID of the creator. |
MeetingUUID | String | The unique identity of the meeting. |
MemberList | Struct[] | The list of members in the meeting. For more information, see the MemberInfo structure. |
Password | String | The meeting password. |
OpenPasswordFlag | Boolean | Indicates whether a password is required for the meeting. true: enabled false: Disabled |
MasterEnableFlag | Boolean | Are hosted meetings enabled? true: Enabled. false: Disabled |
MemberInfo structure
Parameter | Type | Description |
UserAvatarUrl | String | Profile picture |
MemberUUID | String | The unique identity of the meeting member. |
UserName | String | The user's name. |
UserId | String | The enterprise user ID. |
Status | String | The user status. Valid values: online, offline, and ring. |
CreatorFlag | Boolean | Indicates whether the user is the creator of the meeting. True (Yes) false means No. |
MasterFlag | Boolean | Indicates whether the user is the meeting master. true: Indicates Yes. false: The user is not the master. |
Example response
{
"Message": "successful!",
"RequestId": "15FD61F0-E61E-5EF9-BDDA-5E4081C958FC",
"MeetingInfo": {
"EndTime": 1676613299000,
"MasterEnableFlag": false,
"Password":"123456",
"MemberList": [
{
"Status": "offline",
"UserName": "Xiong Xiong Xiong",
"MemberUUID": "hz-dab908af-c782-401f-8781-71b11fda54a6",
"UserId": "22075574909",
"CreatorFlag": true,
"UserAvatarUrl","taobao.com",
"MasterFlag": false
}
],
"CreateTime": 1676606099000,
"StartTime": 1676606099000,
"ValidTime": 1684382098796,
"MeetingCodeExpire": false,
"OpenPasswordFlag": true,
"MeetingCode": "10215011",
"MeetingUUID": "hz-f69a6f58-6fab-4b17-8e65-a23a3e8ae404",
"UserId": "22075574909",
"MeetingName": "2211785826775"
},
"ErrorCode": 0,
"Success": true
}