获取红包数据概况
拥有此API的权限集 |
---|
直播管理-查询 |
请求方式及url
- 请求方式:
POST
- 请求头:
Content-Type:application/json
- 接口地址:
https://api.xiaoe-tech.com/xe.live.redpacket.analysis/1.0.0
- 频率限制:
10秒3000次
在线调试工具
请求
响应
请求参数
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
access_token | 是 | string | 专属token |
resource_id | 是 | string | 资源id |
resource_type | 是 | int | 资源类型 |
请求示例
{
"access_token":"xe_xxx",
"resource_id":"l_61a6eaebe4b0cc47c3c0f51f",
"resource_type":4
}
返回参数
参数名 | 类型 | 说明 |
---|---|---|
code | int | 返回码 |
msg | string | 返回信息 |
data | object | 返回值 |
data.data.receive_total | int | 红包领取总数 |
data.data.total_after_deduction_money | int | 红包总金额(扣除手续费后) |
data.data.total_money | int | 红包总金额(扣除手续费前) |
data.data.total_number | int | 红包总数量 |
data.data.total_rounds | int | 红包总轮数 |
返回示例
{
"code": 0,
"msg": "success",
"data": {
"data": {
"receive_total": 0,
"total_after_deduction_money": null,
"total_money": null,
"total_number": null,
"total_rounds": 0
}
}
}