物流追踪
1.接口描述
追踪物流信息
2.返回
JSON
3.地址
https://gemexdata.rmpsglobal.com/api/tracking
4.请求
4.1 请求参数
参数 类型 说明 必填 备注
token string 会员TOKEN Y
sn string 来源包裹单号(唯一识别) Y
4.2 请求示例
[
  "token"=>'d9d1d2408b6d1f7a4ce89c1b1de636a5'
  "sn"=>'SN20240520ABC123456'
]
5.方式
接口支持的消息接收方式为POST;格式:数组。
6.返回
6.1 返回参数
参数 说明 备注
sts 成功代码 1:成功,0:失败
data[trackingInfos][0][status] 状态码 3
data[trackingInfos][0][description] 状态名称 Picked up
data[trackingInfos][0][notes] 物流轨迹信息 Your parcel was picked up.
data[trackingInfos][0][statusTime] 时间 2025-12-19 10:18:33
6.1.1 成功返回示例
{
  "sts": 1,
  "msg": "success",
  "code": "200",
  "data": {
      "trackingInfos": [
          {
          "status": "3",
          "description": "Picked up"
          "notes": "Your parcel was picked up."
          "statusTime": "2025-12-19 10:18:33"
          },
          {
          "status": "2",
          "description": "Pick Up"
          "notes": "Pick Up Request Booked"
          "statusTime": "2025-12-17 13:17:18"
          }
          {
          "status": "0",
          "description": "Create Package"
          "notes": "Create Package"
          "statusTime": "2022-11-14 12:34:44"
          }
      ],
  }
}
6.1.2 失败返回示例
{
  "sts": 0,
  "msg": "[400] The request is missing the mandatory field with the name state. Please resubmit the request including the required fields and values.",
  "code": "200",
}