简要描述:

  • 企业欢迎语创建或编辑

请求域名:

  • http://xx.com

请求URL:

xx.com/business/{公众号}/plugin/WelcomeWords/save

参数:

参数名 是否必须 类型 说明
id int 欢迎语id,不传则创建
form[type] int 选择成员类型,1为全体,2为成员或部门
form[appoint] array 选择成员类型为2时必传
form[content] 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' : '文件地址'
}

返回示例:

正确时返回:

{
	result: 1,
	msg: "保存成功",
	data: {
		
	}
}

参数名 类型 说明
名称 类型 说明
data[id] int 欢迎语id
data[type] int 选择成员类型,1为全体,2为成员或部门
data[appoint] array 选择成员类型为2时会有值
data[appoint][0][type] string department部门,staff成员
data[appoint][0][id] int 成员id或部门id
data[appoint][0][name] string 成员名称或部门名称
data[content] 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' : '文件地址'
}

错误时返回:

{
	result: 0,
	msg: "保存失败",
	data: {
		
	}
}