简要描述:

  • 查询频道自定义并发列表数据

访问权限

账号类型 是否有权限
主账号
子账号

接口URL:

http://api.zmengzhu.com/business/v1/channel/concurrentConfigList

请求方式:

GET

返回结果格式:

JSON

参数:

参数名 是否必须 类型 默认值 说明
offset int 0 分页获取
limit int 10 每页数量

返回示例:

响应成功JSON示例:

{
    "code": 200,
    "msg": "ok",
    "data": {
        "total": 1, // 总数量
        "list": [
            {
                "id": "2", // 记录id
                "channel_id": "2049908", // 频道id
                "concurrent_num": "3", // 频道并发数
                "created_at": "1600429566", // 设置时间
                "updated_at": "1600429620" // 最后更新时间
            }
        ]
    }
}

字段说明:

参数名 说明
code 成功为200
msg 成功返回ok
id 记录id
channel_id 频道id
concurrent_num 频道并发数
created_at 设置时间
updated_at 最后更新时间

错误时返回:

{
    "code": 20001,
    "msg": "签名校验失败",
    "data": {}
}