注册送短信

国际短信 SUBHOOK 事件


请求 request


eventsrequest
address此联系人的手机号码
app应用 ID
send_id该条短信的唯一发送标识,可在 API 请求时获取
timestamp事件触发时间(此时间戳为此事件本身的触发时间,不参与计算签名)
token32 位随机字符串
signature数字签名


推送示例
{
"events":"request",
"address":"+138xxxxxxx",
"send_id":"093c0a7df143c087d6cba9cdf0cf3738",
"app":xxxxx,
"timestamp":1415014855,
"token":"067ef7e2f286a9a56eabb07dc9657852",
"signature":"a70d09a9345adfdd353d34a505dac4ca"
}


国际短信发送成功delivered


eventsdelivered
address此联系人的手机号码
app应用 ID
send_id该条国际短信的唯一发送标识,可在 API 请求时获取
content国际短信正文
template_id国际短信模板id
tag32位随机数字符串
timestamp事件触发时间(此时间戳为此事件本身的触发时间,不参与计算签名)
token32 位随机字符串
signature数字签名


推送示例
{
"events":"delivered",
"address":"+138xxxxxxxx",
"send_id":"093c0a7df143c087d6cba9cdf0cf3738",
"app":xxxxxx,
"content":"[SUBMAIL] your code is 0001",
"template_id":"xxxx",
"timestamp":1415235639,
"token":"067ef7e2f286a9a56eabb07dc9657852",
"signature":"a70d09a9345adfdd353d34a505dac4ca"
}


国际短信发送失败 dropped


eventsdropped
address此联系人的手机号码
app应用 ID
send_id该条国际短信的唯一发送标识,可在 API 请求时获取
report该条国际短信最终回执报告
content国际短信正文
template_id模板id
tag32位随机数字符串
timestamp事件触发时间(此时间戳为此事件本身的触发时间,不参与计算签名)
token32 位随机字符串
signature数字签名


推送示例
{
"events":"dropped",
"address":"138xxxxxxxx",
"send_id":"093c0a7df143c087d6cba9cdf0cf3738",
"app":xxxxxx,
"report":"UNKNOWN",
"content":"[SUBMAIL] your code is 0001",
"template_id":"xxxx",
"timestamp":1415014855,
"token":"067ef7e2f286a9a56eabb07dc9657852",
"signature":"a70d09a9345adfdd353d34a505dac4ca"
}


国际短信正在发送中sending


eventssending
address此联系人的手机号码
app应用 ID
tag32位随机数字符串
send_id该条短信的唯一发送标识,可在 API 请求时获取
timestamp事件触发时间(此时间戳为此事件本身的触发时间,不参与计算签名)
token32 位随机字符串
signature数字签名


推送示例
{
"events":"sending",
"address":"+138xxxxxxxx",
"send_id":"093c0a7df143c087d6cba9cdf0cf3738",
"app":xxxxxx,
"timestamp":1415014855,
"token":"067ef7e2f286a9a56eabb07dc9657852",
"signature":"a70d09a9345adfdd353d34a505dac4ca"
}


国际短信模板审核通过 template_accept


eventstemplate_accept
template_id模板ID
timestamp事件触发时间(此时间戳为此事件本身的触发时间,不参与计算签名)
token32 位随机字符串
signature数字签名


推送示例
{
"events":"template_accept",
"timestamp":"1646244212",
"template_id":"DG4LQ",
"token":"067ef7e2f286a9a56eabb07dc9657852",
"signature":"a70d09a9345adfdd353d34a505dac4ca"
}


国际短信模板审核未通过 template_reject


eventstemplate_reject
template_id模板ID
timestamp事件触发时间(此时间戳为此事件本身的触发时间,不参与计算签名)
token32 位随机字符串
signature数字签名
reason审核未通过原因


推送示例
{
"events":"template_accept",
"timestamp":"1646244212",
"template_id":"DG4LQ",
"token":"067ef7e2f286a9a56eabb07dc9657852",
"signature":"a70d09a9345adfdd353d34a505dac4ca",
"reason":"缺少主题内容"
}