获取页面统计详情
拥有此API的权限集 |
---|
页面统计管理-查询 |
请求方式及url
- 请求方式:
POST
- 请求头:
Content-Type:application/json
- 接口地址:
https://api.xiaoe-tech.com/xe.page_stat.detail/1.0.0
- 频率限制:
10秒3000次
在线调试工具
请求
响应
请求参数
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
access_token | 是 | string | 专属token |
channel_id | 是 | int | 页面统计id |
请求示例
{
"access_token":"xe_xxxx",
"channel_id":0
}
返回参数
参数名 | 类型 | 说明 |
---|---|---|
code | int | 返回码 |
msg | int | 返回信息 |
data | object | 返回数据 |
返回数据data
参数名 | 类型 | 说明 |
---|---|---|
channel_id | int | 页面统计id |
channel_name | string | 页面统计名 |
resource_type | int | 商品类型 |
resource_name | string | 商品名 |
img_url | string | 商品url |
monitor_state | int | 监控状态, 0-监控中,1-关闭中 |
created_at | string | 创建时间 |
update_at | string | 更新时间 |
pv | int | 到达浏览量 |
pay_price | int | 支付金额 |
返回示例
{
"code": 0,
"msg": "成功",
"data": {
"channel_id": xxx,
"channel_name": "页面统计名称",
"resource_type": 6,
"resource_name": "",
"img_url": "",
"monitor_state": 0,
"created_at": "2021-08-03 17:11:10",
"update_at": "2021-08-03 17:11:11",
"pv": 0,
"pay_price": 0
}
}