国际短信 SUBHOOK 事件
请求 request
events | request |
---|
address | 此联系人的手机号码 |
app | 应用 ID |
send_id | 该条短信的唯一发送标识,可在 API 请求时获取 |
timestamp | 事件触发时间(此时间戳为此事件本身的触发时间,不参与计算签名) |
token | 32 位随机字符串 |
signature | 数字签名 |
推送示例
{
"events":"request",
"address":"+138xxxxxxx",
"send_id":"093c0a7df143c087d6cba9cdf0cf3738",
"app":xxxxx,
"timestamp":1415014855,
"token":"067ef7e2f286a9a56eabb07dc9657852",
"signature":"a70d09a9345adfdd353d34a505dac4ca"
}
国际短信发送成功delivered
events | delivered |
---|
address | 此联系人的手机号码 |
app | 应用 ID |
send_id | 该条国际短信的唯一发送标识,可在 API 请求时获取 |
content | 国际短信正文 |
template_id | 国际短信模板id |
tag | 32位随机数字符串 |
timestamp | 事件触发时间(此时间戳为此事件本身的触发时间,不参与计算签名) |
token | 32 位随机字符串 |
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
events | dropped |
---|
address | 此联系人的手机号码 |
app | 应用 ID |
send_id | 该条国际短信的唯一发送标识,可在 API 请求时获取 |
report | 该条国际短信最终回执报告 |
content | 国际短信正文 |
template_id | 模板id |
tag | 32位随机数字符串 |
timestamp | 事件触发时间(此时间戳为此事件本身的触发时间,不参与计算签名) |
token | 32 位随机字符串 |
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
events | sending |
---|
address | 此联系人的手机号码 |
app | 应用 ID |
tag | 32位随机数字符串 |
send_id | 该条短信的唯一发送标识,可在 API 请求时获取 |
timestamp | 事件触发时间(此时间戳为此事件本身的触发时间,不参与计算签名) |
token | 32 位随机字符串 |
signature | 数字签名 |
推送示例
{
"events":"sending",
"address":"+138xxxxxxxx",
"send_id":"093c0a7df143c087d6cba9cdf0cf3738",
"app":xxxxxx,
"timestamp":1415014855,
"token":"067ef7e2f286a9a56eabb07dc9657852",
"signature":"a70d09a9345adfdd353d34a505dac4ca"
}
国际短信模板审核通过 template_accept
events | template_accept |
---|
template_id | 模板ID |
timestamp | 事件触发时间(此时间戳为此事件本身的触发时间,不参与计算签名) |
token | 32 位随机字符串 |
signature | 数字签名 |
推送示例
{
"events":"template_accept",
"timestamp":"1646244212",
"template_id":"DG4LQ",
"token":"067ef7e2f286a9a56eabb07dc9657852",
"signature":"a70d09a9345adfdd353d34a505dac4ca"
}
国际短信模板审核未通过 template_reject
events | template_reject |
---|
template_id | 模板ID |
timestamp | 事件触发时间(此时间戳为此事件本身的触发时间,不参与计算签名) |
token | 32 位随机字符串 |
signature | 数字签名 |
reason | 审核未通过原因 |
推送示例
{
"events":"template_accept",
"timestamp":"1646244212",
"template_id":"DG4LQ",
"token":"067ef7e2f286a9a56eabb07dc9657852",
"signature":"a70d09a9345adfdd353d34a505dac4ca",
"reason":"缺少主题内容"
}