API: rcs/template - 模板删除API
概览
rcs/template
用于删除5G消息模板。
URL
https://api-v4.mysubmail.com/rcs/template
接口响应数据格式
格式 | URL |
---|---|
json | https://api-v4.mysubmail.com/rcs/template.json (默认) |
xml | https://api-v4.mysubmail.com/rcs/template.xml |
yaml | https://api-v4.mysubmail.com/rcs/template.yaml |
一、创建模板
请求方式 | content-type设置 |
---|---|
delete | multipart/form-data 、x-www-form-urlencoded 、application/json |
请求参数
参数 | 类型 | 必须/可选 | 默认 | 描述 |
---|---|---|---|---|
appid | string | 必须 | 无 | 在 SUBMAIL Chatbot中创建的5G消息应用ID |
timestamp | int | 可选 | 无 | UNIX 时间戳,结果以秒为单位,使用加密鉴权方式,此参数必填 |
signType | enum | 可选 | normal | API 鉴权模式,可选参数normal 、sha256 |
signature | string | 必须 | 无 | 鉴权签名 1. 当 signType 为sha256 时,将以下参数拼接appid +appkey +appid=12345&signType=sha256& timestamp=1712122221 +appid +appkey “+”号为链接符号,不参与拼接 用sha256将以上拼接字符串加密作为鉴权参数 当 signType 为normal 时,appkey 即是signature 的值 |
templateID | string | 必须 | 无 | 模板ID |
请求示例
curl --location --request DELETE 'https://api-v4.mysubmail.com/rcs/template' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'appid=appid' \
--data-urlencode 'signature=appkey' \
--data-urlencode 'templateID=Xs4dvE'
成功返回
{
"status": "success",
}
失败返回
{
"status":"error",
"code":"2xxx",
"msg":"错误信息描述"
}