结合短信,让通知可听也可查
从“已发送”到“被关注”,关键在于选择适合场景的提醒方式。
重要提醒仅依赖文本消息时,用户可能无法及时关注。
系统、设备异常通常要求相关人员尽快响应。
电话负责强提醒,短信负责保留可查阅信息。
事务、物流与资金类提醒需要在关键时间点完成触达。
电话强提醒结合短信可查阅,适用于不方便看手机或不能错过的重要通知。
适合运输节点、提货与到达提醒。

适合服务器、业务系统和设备运行异常。

减少反复拨号,提高配送通知效率。

适合养殖环境与关键设备的自动预警。

适合分布式终端和无人值守设备。

适合门锁、烟感、水浸等重要家居事件。

接口支持GET和POST,统一使用UTF-8。以下示例不包含真实凭证,完整参数与鉴权以官方文档为准。
// POST https://api.ihuyi.com/vm/Submit.json
// Content-Type: application/x-www-form-urlencoded
String form = "account=YOUR_API_ID&password=YOUR_API_KEY&mobile=13600000000&content=您的订单已发出&templateid=YOUR_TEMPLATE_ID";
// 使用标准 HTTP 客户端提交;code=2 表示提交成功$url = 'https://api.ihuyi.com/vm/Submit.json';
$data = [
'account' => 'YOUR_API_ID',
'password' => 'YOUR_API_KEY',
'mobile' => '13600000000',
'content' => '您的订单已发出',
'templateid' => 'YOUR_TEMPLATE_ID',
];
// 使用 application/x-www-form-urlencoded POST 提交// POST application/x-www-form-urlencoded
var url = "https://api.ihuyi.com/vm/Submit.json";
var fields = new Dictionary<string,string> {
["account"]="YOUR_API_ID", ["password"]="YOUR_API_KEY",
["mobile"]="13600000000", ["content"]="您的订单已发出",
["templateid"]="YOUR_TEMPLATE_ID"
};const params = new URLSearchParams({
account: 'YOUR_API_ID', password: 'YOUR_API_KEY',
mobile: '13600000000', content: '您的订单已发出',
templateid: 'YOUR_TEMPLATE_ID'
});
const res = await fetch('https://api.ihuyi.com/vm/Submit.json', {
method: 'POST', headers: {'Content-Type':'application/x-www-form-urlencoded'}, body: params
});
const result = await res.json(); // result.code === 2 表示成功import requests
data = {
'account': 'YOUR_API_ID', 'password': 'YOUR_API_KEY',
'mobile': '13600000000', 'content': '您的订单已发出',
'templateid': 'YOUR_TEMPLATE_ID'
}
result = requests.post('https://api.ihuyi.com/vm/Submit.json', data=data).json()
# result['code'] == 2 表示提交成功// POST application/x-www-form-urlencoded to:
// https://api.ihuyi.com/vm/Submit.json
values := url.Values{}
values.Set("account", "YOUR_API_ID")
values.Set("password", "YOUR_API_KEY")
values.Set("mobile", "13600000000")
values.Set("content", "您的订单已发出")
values.Set("templateid", "YOUR_TEMPLATE_ID")uri = URI('https://api.ihuyi.com/vm/Submit.json')
response = Net::HTTP.post_form(uri, {
account: 'YOUR_API_ID', password: 'YOUR_API_KEY',
mobile: '13600000000', content: '您的订单已发出',
templateid: 'YOUR_TEMPLATE_ID'
})
# JSON响应中 code=2 表示提交成功语音通知优惠套餐,免费整合语音+短信双呼功能,确保不错过重要信息。价格与条数以发布时官网为准。
互亿无线提供电话语音通知接口对接支持服务。
在线注册并登录互亿无线用户中心。
启用语音通知接口,使用赠送测试条数完成API调试。
提交企业或个人认证材料并完成实名认证。
签订协议并提交语音模板审核,通过后正式发送。
以下资质名称来自互亿无线官网披露,图片使用官网同源或经确认素材。




