你可以使用此接口批量查询会话成员的详细信息。
你可以调用BatchGetConversationParticipant
接口,指定你所属的AppId
、会话 ID 和查询会话成员 UserId 进行批量查询会话成员的详细信息。
关于调用接口的服务地址、通信协议、字符编码和签名机制,参看调用 OpenAPI。
QPS 不得超过 100。
使用 POST 方式发起请求。
参数名 | 类型 | 必填 | 示例值 | 描述 |
---|---|---|---|---|
Action | String | 是 | BatchGetConversationParticipant | 接口名称,本接口取值:BatchGetConversationParticipant |
Version | String | 是 | 2020-12-01 | 接口版本,本接口取值:2020-12-01 |
参数名 | 类型 | 必填 | 示例值 | 描述 |
---|---|---|---|---|
AppId | Int | 是 | 000000 | 应用的唯一标志 |
ConversationShortId | Int | 是 | 000001 | 会话 ID |
ParticipantUserIds | Array of Int | 是 | [10001,10002] | 需要查询会话成员的 UserId |
https://rtc.volcengineapi.com?Action=BatchGetConversationParticipant&Version=2020-12-01
{ "AppId":000000, "ConversationShortId":000001, "ParticipantUserIds":[000002,000003] }
返回结果参看 BaseResponse。
其中 Result
的结构如下:
参数名 | 类型 | 描述 |
---|---|---|
Participants | Array of Participant | 成功时返回查询会话成员信息,失败时为空。 |
{ "ResponseMetadata": { "RequestId": "Your_RequestId", "Action": "BatchModifyConversationParticipant", "Version": "2020-12-01", "Service": "rtc", "Region": "cn-north-1" }, "Result": { "Participants": [ { "ConversationShortId": 000001, "ParticipantUserId": 10001, "Level": 1, "NickName": "NickName1", "Operator": 000010, "Status": 0, "CreateTime": 1669694619, "Ext": { "key": "value", "s:from": "biz" }, "Role": 1, "BlockTime": 0 }, { "ConversationShortId": 000001, "ParticipantUserId": 10002, "Level": 20, "NickName": "NickName2", "Operator": 000010, "Status": 0, "CreateTime": 1669694619, "Ext": { "key": "value", "s:from": "biz" }, "Role": 0, "BlockTime": 0 } ] } }