模板管理
更新时间:2021-06-15
描述
创建一个新的模板申请
参数说明
参数名称 | 类型 | 是否必需 | 描述 | 取值示例 |
---|---|---|---|---|
name | String | 是 | 模板名称 | 假日活动大促营销短信模板 |
content | String | 是 | 模板内容 | 您的验证码是${code},将在${minutes}分钟后失效。 |
smsType | String | 是 | 短信类型。见下方短信类型参数说明。 | CommonNotice |
countryType | String | 是 | 适用国家类型 DOMESTIC:国内 INTERNATIONAL:国际/港澳台 GLOBAL:全球 |
DOMESTIC |
description | String | 是 | 模板描述 | - |
代码示例
CreateTemplateRequest request = new CreateTemplateRequest();
request.withName("假日活动大促营销短信模板")
.withContent("您的验证码是${code},将在${minutes}分钟后失效。")
.withCountryType("GLOBAL")
.withDescription("test sdk")
.withSmsType("CommonNotice");
try {
CreateTemplateResponse response = smsClient.createTemplate(request);
System.out.println(response.toString());
} catch (BceServiceException e) {
e.printStackTrace();
}