Linksfield Developer
OverviewCube APIs旧版本API
OverviewCube APIs旧版本API
  1. Notification
  • CSSS APIs
    • 全局说明/Overview
    • 国际化/ Internationalization
    • 状态码/Status code
    • 签名代码示例 / Sign code Example
    • SIM
      • 批量获取拥有的设备信息/Get all SIM cards info
      • 查询单一设备实时信息/Get real-time info about one SIM card
      • 同步使用中SIM卡信息/Get the SIM Cards in use
    • Usage
      • 查询单张SIM卡流量使用情况/ Example Query the traffic usage of a single SIM card
      • 批量查询SIM卡流量接口 /Batch querying SIM card usage
      • 查询单日流量使用情况 / Example Query the daily usage
      • 批量查询指定月份的流量使用情况/ Batch querying the usage in a specified month
    • Plan
      • 同步资费套餐 / Get data plan
      • 订购流量套餐/ Order data plan
      • 批量订购套餐/ Bulk order package
      • 续订流量套餐/ Renew your data plan
      • 查询套餐订单信息 / Query the package order information
      • 开通/启用流量套餐订单 / To enable the order
      • 取消流量套餐订单/ Cancel an unenabled package order
      • 提前结束设备套餐订单/ End package orders early
      • [不推荐]停机/暂停流量套餐订单
      • [不推荐]复机/重新启动流量套餐订单
      • 【不推荐】分页批量(查询)同步设备可订购套餐
    • SMS
      • 发送短信/ send SMS
    • Customized
      • OTA日套餐下单/Order OTA Plan
      • 运营商侧剩余流量查询/Query the remaing data by MNO side
  • Notification
    • Notification全局说明
    • Notification状态码
    • 流量使用量API预警
      POST
    • 短信下行回调
      POST
    • 短信上行回调
      POST
    • 短信上行回调(区分文本二进制)
      POST
    • 订单状态变更回调(IMSI)
      POST
  • Mall APIs
    • Mall全局说明
    • Mall业务流程
    • Mall签名代码示例
    • APP调用Stripe的SDK示例说明
    • Vshop
      • 卡片登录验证
      • 获取可购套餐商品列表
      • 创建用户订单
      • 查询正在使用、未启用订单
      • 获取生效中的自动续费
      • 关闭自动续费
      • 用户下单(第三方支付)
    • Payment
      • 获取stripe单次支付权限
      • 获取Stripe订阅支付权限
      • 创建Stripe订阅/自动续费
      • 支付结果查询
    • Notification
      • 消息推送
  • eSIM QR Mall APIs
    • Introduction
    • Pre - order
      POST
    • webhook
      POST
    • 用户登录
      POST
    • My eSIM Detail
      POST
  1. Notification

短信上行回调

Cube UAT
https://api-uat.io.linksfield.net/cube/v4
Cube UAT
https://api-uat.io.linksfield.net/cube/v4
POST
URL(客户设置的接收事件回调URL)
向预先配置的URL推送短信下行发生结果。SIM卡发送下行短信后24小时内收到的信息,均视为该SIM卡的上行。具有上行短信能力的卡片资源请与领科商务人员确认。

请求参数

Header 参数
x-lf-md5
string 
必需
base64(md5("key1=value1&key2=value2&secret"))
x-lf-delivery
string 
必需
unique id (snowflake)
Body 参数application/json
partner_code
string 
企业编码
必需
sim_id
string 
SIM卡ICCID
必需
imsi
string 
码号imsi
必需
text_message
string 
短信内容
必需
received_at
string 
接收时间UTC0 时区
必需
示例
{
  "partner_code": "P123456",
  "sim_id": "89860220190123456789",
  "imsi": "4230001234567",
  "message_type":"Binary"
  "text_message": "发送短信内容",
  "received_at": "1642385160000"
}

示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api-uat.io.linksfield.net/cube/v4URL(客户设置的接收事件回调URL)' \
--header 'x-lf-md5;' \
--header 'x-lf-delivery;' \
--header 'Content-Type: application/json' \
--data-raw '{
  "partner_code": "P123456",
  "sim_id": "89860220190123456789",
  "imsi": "4230001234567",
  "message_type":"Binary"
  "text_message": "发送短信内容",
  "received_at": "1642385160000"
}'

返回响应

🟢200成功
application/json
Body
object {0}
示例
{}
修改于 2022-12-12 03:21:14
上一页
短信下行回调
下一页
短信上行回调(区分文本二进制)
Built with