简要描述:

  • 话术库-获取素材列表

请求域名:

  • http://xx.com

请求URL:

xx.com/business/{公众号id}/plugin/SpeechcraftLibrary/getMaterialList

请求类型

POST

参数:

参数名 是否必须 类型 说明
group_id int 分组id,不传则获取全部
search[material_name] string 素材名称
search[staff_info] 成员名称
search[start_time] string 开始时间,开始和结束时间必同时传入,不可单传
search[end_time] string 结束时间

返回示例:

正确时返回:

{
    "result": 1,
    "msg": "成功",
    "data": {
        "id": 13,
        "staff_id": 1,
        "member_id": 1,
        "material_name": "测试素材3",
        "is_enable": 1,
        "group_id": 56,
        "use_count": 0,
        "created_at": "2022-08-18 16:30:09",
        "content_count": 0,
        "content_list": [
            {
                "id": 23,
                "type": "text",
                "content": {
                    "type": "text",
                    "news": "测试文本测试文本测试文本测试文本测试文本测试文本测试文本测试文本测试文本测试文本<span contenteditable=\"false\" style=\"color: rgb(41, 186, 156); margin: 0px 5px;\">客户昵称</span>"
                }
            },
            {
                "id": 24,
                "type": "image",
                "content": {
                    "type": "image",
                    "link_img": "https://ysm-1251768088.cos.ap-guangzhou.myqcloud.com/images/25/2022/08/haibianrichu_6697627.jpg"
                }
            },
            {
                "id": 25,
                "type": "link",
                "content": {
                    "type": "link",
                    "title": "我是一个链接",
                    "link": "www.baidu.com",
                    "describe": "我是一个描述",
                    "link_img": "https://ysm-1251768088.cos.ap-guangzhou.myqcloud.com/images/25/2022/08/src=http___www.lgzgh.org_uploads_allimg_191111_14345914H_0.jpg&refer=http___www.lgzgh.png"
                }
            },
            {
                "id": 26,
                "type": "video",
                "content": {
                    "type": "video",
                    "link_video": "https://ysm-1251768088.cos.ap-guangzhou.myqcloud.com/videos/25/2022/08/96912aad5ca7dd5256a0d69a07699432.mp4"
                }
            },
            {
                "id": 27,
                "type": "applet",
                "content": {
                    "type": "applet",
                    "title": "我是一个小程序",
                    "appid": "dsadwad1515r2dc",
                    "page": "/pata/index",
                    "link_img": "https://ysm-1251768088.cos.ap-guangzhou.myqcloud.com/images/25/2022/08/haibianrichu_6697627.jpg"
                }
            },
            {
                "id": 37,
                "type": "file",
                "content": {
                    "type": "file",
                    "link_file": "https://ysm-1251768088.cos.ap-guangzhou.myqcloud.com/files/25/2022/08/芸众爆客码操作文档.docx"
                }
            }
        ]
    }
}

返回参数说明:

参数名 类型 说明
id int 素材id
material_name string 素材名称
is_enable int 是否启用,0否1是
group_id int 分组id
content_list array 如下
use_count int 使用次数
created_at string 创建时间
content_count 素材数量

content_list返回参数说明:

参数名 类型 说明
id int 素材内容id
type string 类型
content array 素材内容

创建人优先用员工,没有再用会员

以下为content参数

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