简要描述:

  • SOP任务-推送详情

请求域名:

  • http://xx.com

请求URL:

plugin.sop-task.frontend.controller.member.member.getTaskInfo

请求类型

POST

参数:

参数名 是否必须 类型 说明
task_id int 任务id

返回示例:

正确时返回:


错误时返回:


返回参数说明:

参数名 类型 说明
date string 时间
task_name string 任务名称
task_type int 任务类型,1,2,3代表推送目标为客户,4为群聊
content_list array 如下
customer_list array 客户列表
customer_list array task_type为1,2,3时返回
customer_list[].external_userid string 客户userid
customer_list[].name string 客户名称
customer_list[].avatar string 客户头像
group_chat_avatar string 群图标链接,task_type为4时返回
group_chat_list array task_type为4时返回
group_chat_list[].id int 群聊id
group_chat_list[].chat_id string 群聊在企业微信的标识
group_chat_list[].group_name string 群聊名称

任务内容content_list

[
	{
		'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' : '文件地址'
	}
]