获取优惠码效果数据
拥有此API的权限集 |
---|
营销码券管理-查询 |
请求方式及url
- 请求方式:
POST
- 请求头:
Content-Type:application/json
- 接口地址:
https://api.xiaoe-tech.com/xe.promo_code.effect_data/1.0.0
- 频率限制:
10秒3000次
在线调试工具
请求
响应
请求参数
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
access_token | 是 | string | 专属token |
batch_id | 是 | string | 批次id |
请求示例
{
"access_token": "xe_xxxxx",
"batch_id":"pc_itn79781_HjOpJ7f5Ye32RAB4RC8LHq"
}
返回参数
参数名 | 类型 | 说明 |
---|---|---|
code | int | 返回码 |
msg | string | 返回信息 |
data | object | 返回值 |
data.detail | object | 优惠码详情 |
data.effect_data | object | 效果数据 |
data.detail
优惠码详情
参数名 | 类型 | 说明 |
---|---|---|
name | string | 优惠码名称 |
status | int | 状态:0有效1失效 |
note | string | 内部备注 |
start_at | string | 开始时间 |
end_at | string | 结束时间 |
ptype | int | 优惠码类型:0通用码,1专属码 |
total_num | int | 发放总量 |
use_num | int | 使用总量 |
state | int | 状态0未上架,1进行中,10有效,11已失效 |
data.effect_data
效果数据
参数名 | 类型 | 说明 |
---|---|---|
sum_price | string | 用码总成交额 |
sum_code_price | string | 用码总优惠额 |
pre_price | string | 客单价 |
old_user_counts | int | 用码老用户数 |
new_user_counts | int | 用码新用户数 |
get_code_count | int | 领取人数 |
返回示例
{
"code": 0,
"msg": "获取成功",
"data": {
"detail": {
"end_at": "2021-12-31 00:00:00",
"name": "分享test",
"note": "",
"ptype": 1,
"start_at": "2021-12-28 15:09:19",
"state": 1,
"status": 0,
"total_num": 100,
"use_num": 0
},
"effect_data": {
"get_code_count": 1,
"new_user_counts": 0,
"old_user_counts": 0,
"pre_price": "0.00",
"sum_code_price": "0.00",
"sum_price": "0.00"
}
}
}