简要描述:

  • 后台编辑/新增规则接口

请求域名:

  • http://xx.com

请求URL:

POST:route=plugin.wechat.admin.reply.controller.keywords-auto-reply.edit&id=20

参数:

参数名 是否必须 类型 说明
id 新增时不必须,编辑时必须 int 规则id

编辑时返回示例:

正确时返回:

{
    "id":20,
    "name":"yun_shop:wechat:aaa",
    "module":"reply",
    "displayorder":0,
    "status":1,
    "containtype":"basic,news,images",
    "reply_type":0,
    "has_many_basic_reply":[
        {
            "id":17,
            "rid":20,
            "content":"jjj"
        },
        {
            "id":16,
            "rid":20,
            "content":"gfh"
        }
    ],
    "has_many_news_reply":[
        {
            "id":17,
            "rid":20,
            "parent_id":0,
            "title":"EXO",
            "author":"",
            "description":"exo",
            "thumb":"https://dev5.yunzshop.com/attachment/images/2/2018/10/R9p9h9y8V4YK9984MwvZJuTW9Kk9V9.jpg",
            "content":"",
            "url":"",
            "displayorder":0,
            "incontent":0,
            "createtime":1540883801,
            "media_id":"10"
        },
        {
            "id":16,
            "rid":20,
            "parent_id":0,
            "title":"yuty",
            "author":"",
            "description":"",
            "thumb":"http://www.yz.com/attachment/images/2/2019/02/O9Kt9tF48KKEAm9Jmk39KtkajIbUj4.jpg",
            "content":"",
            "url":"",
            "displayorder":0,
            "incontent":0,
            "createtime":1551261201,
            "media_id":"16"
        }
    ],
    "has_many_image_reply":[
        {
            "id":5,
            "rid":20,
            "title":"",
            "description":"",
            "mediaid":"6lzZm939uXrGNwAVWORSNiyEtaWn1f3iheCnIFhGlfw",
            "createtime":1552377309,
            "has_one_attachment":{
                "id":2,
                "acid":2,
                "filename":"/data/wwwroot/dev3.yunzshop.com/attachment//images/3/2018/05/WNqnFZnH0DFF6NNFnMmNn8fzzmWd4N.png",
                "attachment":"http://mmbiz.qpic.cn/mmbiz_png/mroJaEUKXU3SmkV4njhdCvbvIQPxzFVxaEemssAib6eFTQQEeQU1cZNBEnBJCejWZ3wKWqzIjhYic8mX0PPbz2CQ/0?wx_fmt=png",
                "media_id":"6lzZm939uXrGNwAVWORSNiyEtaWn1f3iheCnIFhGlfw",
                "type":"image",
                "model":"perm",
                "tag":"",
                "createtime":1525741611
            }
        }
    ],
    "has_many_keywords":[
        {
            "id":47,
            "rid":20,
            "uniacid":2,
            "module":"reply",
            "content":"rrr",
            "type":2,
            "displayorder":0,
            "status":1
        },
        {
            "id":46,
            "rid":20,
            "uniacid":2,
            "module":"reply",
            "content":"ttt",
            "type":1,
            "displayorder":0,
            "status":1
        },
        {
            "id":45,
            "rid":20,
            "uniacid":2,
            "module":"reply",
            "content":"fghfghj",
            "type":1,
            "displayorder":0,
            "status":1
        }
    ]
}

错误时返回:


返回参数说明:

参数名 类型 说明
id int 回复id
name string 规则名
module string 模块名,shop代表商城的回复,其他为插件回复,如poster则海报插件回复
displayorder int 显示顺序
status int 开启情况,0为关闭,1为开启
containtype int 内容类型
reply_type int 回复类型
has_many_keywords array 规则中的多个关键字
has_many_basic_reply array 文字回复列表
has_many_news_reply array 图文回复列表
has_many_image_reply array 图片回复列表
has_many_voice_reply array 语音回复列表
has_many_video_reply array 视频回复列表
has_many_music_reply array 音乐回复列表
has_many_keywords 参数说明 类型 说明
id int 关键字id
rid int 规则id
uniacid int 公众号id
module string 模块
content string 内容
type string 类型
displayorder int 回复顺序
status int 开启情况,0为关闭,1为开启
replySum int 回复总条数
has_many_basic_reply 参数说明 类型 说明
id int id
rid int 规则id
content string 回复内容
has_many_news_reply 参数说明 类型 说明
id int id
rid int 规则id
title string 文章标题
description string 文章描述
thumb string 缩略图
url string 文章链接
media_id int 素材表id
has_many_image_reply 参数说明 类型 说明
id int id
rid int 规则id
title string 标题
description string 描述
mediaid string 微信端的mediaid
has_one_attachment object 素材
has_many_voice_reply 参数说明 类型 说明
has_one_attachment object 素材
has_many_video_reply 参数说明 类型 说明
has_one_attachment object 素材
has_many_music_reply 参数说明 类型 说明
has_one_attachment object 素材
has_one_attachment 参数说明 类型 说明
id int id
acid int 公众号id
filename string 素材标题
attachment string 素材链接
media_id string 微信端的media_id
model string 素材存储方式,perm或local,分别代表存储微信端还是本地
tag string 标签记录
createtime int时间戳 创建时间

备注:

  • 更多返回错误代码请看首页的错误代码描述