简要描述:
- SOP任务-推送列表
请求域名:
- http://xx.com
请求URL:
xx.com/business/{公众号id}/plugin/SopTask/getLogList
请求类型
POST
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
id | 是 | int | 任务id |
task_type | 是 | int | 任务类型,1会员2消息3生日4群聊 |
export | 否 | int | 导出 |
search.staff_info | 否 | string | 员工姓名 |
search.customers_info | 否 | string | 客户姓名 |
search.is_complete | 否 | int | 完成状态,0未完成 1完成 |
search.start_time | 否 | string | 开始时间,非单传 |
search.end_time | 否 | string | 结束时间,非单传 |
返回示例:
正确时返回:
{
"result": 1,
"msg": "成功",
"data": {
"current_page": 1,
"data": [],
"first_page_url": "http://localhost-yunshop.cn/business/1/plugin/SopTask/getLogList?page=1",
"from": null,
"last_page": 1,
"last_page_url": "http://localhost-yunshop.cn/business/1/plugin/SopTask/getLogList?page=1",
"next_page_url": null,
"path": "http://localhost-yunshop.cn/business/1/plugin/SopTask/getLogList",
"per_page": 15,
"prev_page_url": null,
"to": null,
"total": 0,
"task_total": 0,
"completed_total": 0,
"incomplete_total": 0
}
}
错误时返回:
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
task_total | int | 总数 |
completed_total | int | 完成总数 |
incomplete_total | int | 未完成总数 |
data[].has_one_staff.name | string | 执行人姓名 |
data[].has_one_staff.avatar | string | 执行人头像 |
data[].has_one_customers.name | string | 推送人姓名 |
data[].has_one_customers.avatar | string | 推送人头像 |
data[].is_complete | int | 执行状态 |
data[].condition | string | 达成条件 |
data[].content_list | array | 如下 |
`` |
{
'type' : 'text'
'news' : '文本消息'
}
{
'type' : 'image'
'link_img':'图片地址'
}
{
'type' : 'link'
'title' : '链接标题',
'link' : '链接地址',
'describe' : '链接描述',
'link_img' : '链接封面'
}
{
'type' : 'applet'
'title' : '小程序标题',
'appid' : '小程序appid',
'page' : '小程序page路径',
'link_img' : '小程序封面',
}
{
'type' : 'video'
'link_video' : '视频地址'
}
{
'type' : 'file'
'link_file' : '文件地址'
}