ListMembers
Description
Queries the details of members for a specific meeting using a meeting ID. The details include records of when members join and leave the meeting. A separate record is generated each time a member joins.
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. |
MeetingCode | String | The meeting security token. |
CreateDate | Long | The creation time. |
UserId | String | The creator ID. |
MeetingUUID | String | The unique identity of the meeting. |
Memo | String | The remarks. |
MemberInfos | Struct[] | A list of members who joined the meeting. For more information, see the MemberInfo structure. |
MemberInfo structure
Parameter | Type | Description |
MemberUUID | String | The unique identity of the member. |
UserId | String | The enterprise user ID. |
Status | String | The user status. Valid values:
|
BeginTime | Long | Joined |
EndTime | Long | End time |
UserName | String | The user name. |
Response example
{
"RequestId": "123",
"Message": "successful!",
"Success": true,
"ErrorCode": 0,
"MeetingInfo":{
"MeetingUUID": "6c1f361",
"MeetingCode": 12345678,
"MeetingName": "Test Meeting",
"UserId": "1001",
"Memo": "Alibaba Cloud Test",
"CreateDate": 123321321342,
"MemberInfos": [{
"UserId":"001",
"MemberUUID": "qweqweqsdf",
"Status":"online",
"BeginTime":1989123913,
"EndTime":19912312312,
"UserName":"Zhang San"
}, {
"UserId":"002",
"MemberUUID": "qweqweqwe-sdf",
"Status":"online",
"BeginTime":1989123913,
"EndTime":19912312312,
"UserName":"Zhang San"
}]
}
}