API: InternationalSMS/BatchSend - 国际短信批量群发
概览
internationalsms/batchsend
是 SUBMAIL 的批量国际短信发送接口。与 internationalsms/send 接口相似,在请求中自由提交短信内容,to (联系人)参数可以批量提交联系人手机号码(单次请求最大支持 10000 个)大幅提高群发需求的发送效率。
URL
https://api-v4.mysubmail.com/internationalsms/batchsend
支持格式
格式 | URL |
---|---|
json | https://api-v4.mysubmail.com/internationalsms/batchsend.json (默认) |
xml | https://api-v4.mysubmail.com/internationalsms/batchsend.xml |
yaml | https://api-v4.mysubmail.com/internationalsms/batchsend.yaml |
http 请求方式
请求方式 | content-type 支持 |
---|---|
http post | multipart/form-data、x-www-form-urlencoded、application/json |
是否需要授权
是
参阅 API 授权和验证机制
internationalsms/batchsend 方法请求参数
参数 | 类型 | 必需/可选 | 默认 | 描述 |
---|---|---|---|---|
appid | string | 必需 | 无 | 在 SUBMAIL 应用集成中创建的短信应用ID |
to | string | 必需 | 无 | 收件人手机号码,使用标准的 E164 格式,e.g. +1778889901 ,多个手机号请使用半角逗号“,”分隔,如“+135xxxxxx,+447xxxxxx”。单次请求最大上限可提交 10000 个手机号码 |
content | string | 必需 | 无 | 短信正文 |
tag | string | 可选 | 无 | 自定义标签功能,该标签可用作 SUBHOOK 追踪 (32 个字符以内,添加了 tag 参数的 API 请求,会在所有的 SUBHOOK 事件中携带此参数。tag 参数不参加加密计算) |
timestamp | UNIX 时间戳 | 可选 | 无 | 参阅 API 授权与验证机制 > Timestamp UNIX 时间戳 |
sign_type | string | 可选 | normal | API 授权模式( md5 or sha1 or normal )参阅 API 授权与验证机制 > 授权和验证方式 |
sign_version | string | 可选 | 无 | signature加密计算方式 (当sign_version传2时,content参数不参与加密计算) |
signature | string | 必需 | 无 | 应用密匙或数字签名 参阅 API授权与验证机制 > 授权和验证方式。当sign_type=normal时signature应传appkey的值。 |
代码示例
发送请求
request: curl -d "appid=***&signature=***&content=短信正文&to=+86186xxxxxx,+135xxxxxx,+447xxxxxx" https://api-v4.mysubmail.com/internationalsms/batchsend
响应
{
"status": "success", //请求状态
"batchlist": "***", //任务ID
"total_fee": 0.38, //总计费
"responses": [
{
"status": "success", //单号状态
"to": "+1352xxxxx", //号码
"send_id": "007cb85168d1450e7aca462462ef12b8", //单号 SEND ID
"fee": 0.08 //单号计费条数
},
{
"status": "error", // 单号状态 为 error 时提交失败 (无效号码,屏蔽区域,账户黑名单等原因)
"to": "+861xxx",
"fee": 0
},
{
"status": "success",
"to": "+447xxxxxx",
"send_id": "de4e69f475d24aad62948ac601e1c0ac",
"fee": 0.30
}
]
}
请求失败
{
"status":"error",
"code":"1xx",
"msg":"error message"
}
错误代码
参阅 API 错误代码