企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## 获取关键字规则列表 **简要描述:** * 获取规则列表 **请求URL:** * /wechat/keyword/findPage **请求方式:** * POST **参数:** | 参数名 | 必选 | 类型 | 说明 | | --- | --- | --- | --- | | id| 否 | int| id 获取详情时传递 | | keyword| 否 | string| 关键字查询 | | type| 否 | string| 类别 | | status| 否 | int| 1正常 0禁用 | | start_time| 否 | int| 查询初始时间戳 | | end_time| 否 | int| 查询截止时间戳 | | current_page| 否 | number | 当前页 | | per_page | 否 | number | 分页查询每页数量 默认 10 | **返回参数** | 参数名 | 必选 | 类型 | 说明 | | --- | --- | --- | --- | | id| 是 | int | id | | name| 是 |string| 关键字 | | type| 是| string| 类别 'text','image','voice','video','music','news','customservice'| | content| 是 | string| 内容 1.text: 回复正文 2.news:图文id| | media_id| 是 | string | 微信返回的素材id | | url| 是 | string | 微信返回素材URL | | local_url| 是 | string| 本地素材url | | thumb_media_id| 是 | string | 微信返回的音乐封面缩略图素材id | | thumb_url| 是 | string | 微信返回音乐封面缩略图素材URL | | thumb_local_url| 是 | string| 本地音乐封面缩略图素材url | | materials_title| 是 | string | 素材标题 | | materials_introduction| 是 | string| 素材描述 | | status| 是 | int| 1正常 0禁用 | | sort| 是 | int| 排序 倒序排列 | | add_time| 是 | string | 创建时间 | | current_page| 否 | number | 当前页 | | per_page | 否 | number | 分页查询每页数量 默认 10 | | last_page| 否 | number | 总页数 | | total | 否 | number | 总数量| **返回示例** ~~~ { "msg": "success", "data": { "total": 2, "per_page": 10, "current_page": 1, "last_page": 1, "data": [ { "id": 18, "name": 关键字, "type": "music", "content": xxxxxxxxx, "media_id": "CE5eNrD_JJX6ghW8PmIQ0ZDJ6n0yvp4Qbb8sWAWF3mI", "url": "https://mmbiz.qlogo.cn/mmbiz/5aX12EYBdf3FZOiaAicqgfhvbZyJ3UpaDmJwKhDgTFnNf4lAjlJ1qMWblUW8VqSSECIP4anCk8taoLGUdufCm4iaA/0?wx_fmt=png", "local_url": "resource/xxx/2020/0829/xxx.jpg", "thumb_media_id": "CE5eNrD_JJX6ghW8PmIQ0ZDJ6n0yvp4Qbb8sWAWF3mI", "thumb_url": "https://mmbiz.qlogo.cn/mmbiz/5aX12EYBdf3FZOiaAicqgfhvbZyJ3UpaDmJwKhDgTFnNf4lAjlJ1qMWblUW8VqSSECIP4anCk8taoLGUdufCm4iaA/0?wx_fmt=png", "thumb_local_url": "resource/xxx/2020/0829/xxx.jpg", "materials_title": "this is a title", "materials_introduction": "简介描述", "status": 1, "sort": 6, "add_time": "2020-08-29 13:28:37", }, ] }, "code": 200 } ~~~