简要描述:
- 获取场景模板
接口版本:
版本号 | 制定人 | 制定日期 | 修订日期 |
---|---|---|---|
3.6.0 | 朱小乾 | 2023-03-13 | - |
请求URL:
-/api/mobileGuide/message/GetMessageTemplates
请求方式:
- GET
请求头:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
Content-Type | 是 | string | 请求类型: application/json |
请求参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
sceneId | 是 | int | 场景Id |
返回示例:
正确时返回:
{
"code": 1,
"message": "操作成功",
"data": [
{
"messageChannelCode": "WeChat",
"messageChannelName": "微信",
"templateCode": "11",
"userParam": "1",
"content": "1",
"isBind": false
}
]
}
错误时返回:
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
messageChannelCode | int | 通道代码 |
messageChannelName | string | 通道名称 |
templateCode | string | 模板代码 |
userParam | string | 用户参数 |
content | string | 内容 |
isBind | string | 是否开启 |
备注:
-
文档更新时间: 2023-03-13 10:34