查看会议白名单
1. 接口描述
接口名称:
/eventopenapi/event/whitelist/list
发送方式:
POST
参数格式:
accept: application/json;content-type: application/json
2. 输入参数
参数 | 类型 | 必须 | 说明 |
---|---|---|---|
token | String | 是 | 统一鉴权token |
eventId | Long | 是 | 直播会议ID |
3. 输出参数
参数 | 类型 | 说明 |
---|---|---|
timeStamp | Long | 返回时间(时间戳,单位毫秒) |
requestId | String | 请求ID(在接口异常时, 需提供请求ID) |
code | Int | 返回的状态码 |
msg | String | 当返回结果的状态码不为200时,包含的错误信息 |
data | Json | 返回数据 |
4. 示例
输入示例
{
"token":"5d41c4ac806c6440eb6aa8e071115f2b",
"eventId": 542818
}
输出示例
{
"timeStamp": 1679393888644,
"code": 200,
"msg": "Successfully to get the event whitelist list!",
"data": {
"eventId": 624046,
"isShowList": 1,
"namespaceId": null,
"whiteNamespaces": [
{
"namespaceId": 71473,
"namespaceName": "用户白名单",
"namespaceType": 1,
"groupList": [
{
"groupId": 12270693,
"groupName": "G1"
}
],
"switchEnable": 1
},
{
"namespaceId": 72494,
"namespaceName": "namespace-u",
"namespaceType": 1,
"groupList": [
{
"groupId": 12271067,
"groupName": "G1"
}
],
"switchEnable": 1
}
]
},
"requestId": "10.255.0.105_20230321_181808_1679393888537"
}