查看自动外呼列表

1. 接口描述

接口名称:

/eventopenapi/event/call/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 返回数据

data 参数说明

参数 类型 说明
eventId Long 直播会议ID
beforeMinutes Int 提前入会时间,单位分钟
callList Array 外呼人员列表

callList 参数说明

参数 类型 说明
id String 外呼ID
name String 姓名
company String 公司
countryCode String 国家码
mobile String 手机
areaCode String 区号
phone String 座机电话

4. 示例

输入示例

{
    "token":"5d41c4ac806c6440eb6aa8e071115f2b",
    "eventId": 544992
}

输出示例

{
    "timeStamp": 1640922674313,
    "code": 200,
    "msg": "Successfully to get the event call list!",
    "data": {
        "eventId": 544992,
        "beforeMinutes": 30,
        "callList": [
            {
                "id": "620f60cfcd6db30006a667e5",
                "areaCode": "",
                "company": "quanshi.com",
                "countryCode": "86",
                "mobile": "18100000001",
                "name": "user1",
                "phone": ""
            }
        ]
    },
    "requestId": "10.255.0.106_20211231_115114_1640922674019"
}