获取模板 #

描述 #

使用此接口获取短信或语音模板列表。

接口说明 #

授权对象 APP

请求地址 GET /open/sms/template

请求规则 请查阅开发必读

响应参数 #

参数名称 变量名称 参数类型 是否必填 描述
模板列表 list array

模板列表

模板列表项 #

参数名称 变量名称 参数类型 是否必填 描述
模板ID templateId string

示例值:2001

模板名称 templateName string

示例值:验证码模板

模板内容 content string

示例值:您的验证码是{code},{time}分钟内有效

审核状态 status int32 1-审核通过,2-待审核,3-审核驳回

示例值:1

签名ID signId uint32

示例值:1001

签名内容 signContent string

示例值:BOOL

发送量 sendCount uint32

示例值:1000

响应示例 #

{
    "code": 200,
    "message": "success",
    "data": {
        "list": [
            {
                "templateId": "2001",
                "templateName": "验证码模板",
                "content": "您的验证码是{code},{time}分钟内有效",
                "status": 1,
                "signId": 1001,
                "signContent": "BOOL",
                "sendCount": 1000
            }
        ]
    }
}
上次更新: 12/18/2024, 6:54:20 PM