创建模板
更新时间:2021-01-12
URL
/sms/v3/template?clientToken={clientToken}
HTTP Method
POST
请求Body参数
参数名称 | 类型 | 是否必需 | 描述 | 取值示例 |
---|---|---|---|---|
name | String | 是 | 模板名称 | 假日活动大促营销短信模板 |
content | String | 是 | 模板内容 | 您的验证码是${code},将在${minutes}分钟后失效。 |
smsType | String | 是 | 短信类型。见下方短信类型参数说明。 | CommonNotice |
countryType | String | 是 | 适用国家类型 DOMESTIC:国内 INTERNATIONAL:国际/港澳台 GLOBAL:全球 |
DOMESTIC |
description | String | 是 | 模板描述 | - |
请求Query参数
参数名称 | 类型 | 是否必需 | 描述 | 取值示例 |
---|---|---|---|---|
clientToken | String | 是 | 幂等性参数 | 7aba2f19-43fb-4bcb-aa9f-912585ffe43d |
响应参数
参数名称 | 类型 | 描述 |
---|---|---|
templateId | String | 模板ID,用于唯一标识一个模板 |
status | String | 模板状态 |
短信类型参数说明
smsType | 名称 |
---|---|
CommonSale | 普通营销 |
CommonVcode | 普通验证码 |
CommonNotice | 普通通知 |
ExpressVcode | 物流验证码 |
ExpressNotice | 物流通知 |
FinanceSale | 传统金融营销 |
FinanceVcode | 传统金融验证码 |
FinanceNotice | 传统金融通知 |
ItfinSale | 互联网金融营销 |
ItfinVcode | 互联网金融验证码 |
ItfinNotice | 互联网金融通知 |
CreditcardSale | 信用卡营销 |
CreditcardVcode | 信用卡验证码 |
CreditcardNotice | 信用卡通知 |
CollectionNotice | 催收通知 |
GameSale | 游戏营销 |
GameVcode | 游戏验证码 |
GameNotice | 游戏通知 |
GamesSale | 小游戏营销 |
GamesVcode | 小游戏验证码 |
GamesNotice | 小游戏通知 |
EducationSale | 教育营销 |
EducationVcode | 教育验证码 |
EducationNotice | 教育通知 |
EcSale | 电商营销 |
EcVcode | 电商验证码 |
EcNotice | 电商通知 |
HTTP请求示例
POST /sms/v3/template?clientToken=7aba2f19-43fb-4bcb-aa9f-912585ffe43d HTTP/1.1
Host: 127.0.0.1:8420
Authorization: bce-auth-v1/203069ff6d1145548efbccc0aeaf8b5a/2020-08-14T03:37:35Z/1800/host;x-bce-date/864b39a36411f975c1a9781ee748f19c17cbba94fb050551a15f9f9971ea9bba
User-Agent: bce-sdk-java/0.10.108/Mac_OS_X/10.15.2/Java_HotSpot(TM)_64-Bit_Server_VM/25.192-b12/1.8.0_192/zh/
Date: Fri, 14 Aug 2020 03:37:35 GMT
Content-Type: application/json
x-bce-date: 2020-08-14T03:37:35Z
Content-Length: 129
Connection: Keep-Alive
Accept-Encoding: gzip,deflate
{
"name": "My test template",
"content": "您的验证码是${code}",
"smsType": "CommonNotice",
"countryType": "GLOBAL",
"description": "test sdk create"
}
响应成功示例
HTTP/1.1 200 OK
x-bce-request-id: b5f77216-e9a5-4c2e-a6ab-12127e5e3e5f
Cache-Control: no-cache
Content-Type: application/json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 14 Aug 2020 03:37:35 GMT
Server: BWS
{
"templateId": "sms-tmpl-wHoJXL09355",
"status": "SUBMITTED",
}