简要描述
  • 使用HTTP的GET请求,查询短信模板信息
请求URL
  • http://{ip:port}/openapi/message/sms/template/list
请求方式
  • GET
请求参数
参数 必选 类型 描述
templateName String 模板名称
startTime integer format:int64 模板开始创建时间,精确到毫秒
endTime integer format:int64 模板结束创建时间,精确到毫秒
status integer 审核状态(1:草稿;2待审核;3:审核通过;4:拒审)
msgType integer 消息类型(1-通知;2-推广)
pageNo integer 页数,起始下标从1开始,默认1
pageSize integer 条数,默认10
token string 通过授权接口获取的token
请求示例
{
    "templateName": "e1ad91dd-75a0-4fe9-87a7-cc669872d062",
    "startTime": 1656604800000,
    "endTime": 1656691199000,
    "status": 3,
    "msgType": 1,
    "pageNo": 1,
    "pageSize": 10,
    "token": "1287c6e2ebfb4a29xx0a8aba749aa27a"
}
返回示例
{
    "code": "0",
    "data": {
        "records": [{
            "templateId": "1287c6e2ebfb4a29xx0a8aba749aa27a",
            "templateName": "无锡xxxx",
            "content": "${userName}, 您的验证码为:${verifyCode}",
            "ctime": 1656604800000,
            "utime": 1656691199000,
            "status": 2,
            "msgType": 2
        }],
        "total": 1
    },
    "msg": "success"
}
返回参数说明
名称 类型 是否必须 默认值 备注 其他信息
code string 非必须
data object 非必须
├ total integer 非必须 format:int64
└ records object [] 非必须 item 类型:object
    ├ templateId string 非必须 模板ID
    ├ templateName string 非必须 模板名称
    ├ content string 非必须 模板内容
    ├ ctime integer format:int64 非必须 模板创建时间,精确到毫秒
    ├ utime integer format:int64 非必须 模板更新时间,精确到毫秒
    ├ status integer 非必须 审核状态(1:草稿;2待审核;3:审核通过;4:拒审)
    ├ msgType integer 非必须 消息类型(1-通知;2-推广)
msg string 必须
code说明
code msg 说明
0 查询成功 当且仅当code=”0”时成功
403 鉴权失败
文档更新时间: 2024-01-18 06:19   作者:刘强