物流API文档
  1. 下单公共参数
物流API文档
  • 访问令牌
    • 获取令牌
      POST
    • 刷新令牌
      POST
    • 获取个人信息
      POST
  • 下单公共参数
    • 出口名义
      • 创建出口名义
    • 获取可用渠道
      POST
    • 获取可用出口名义
      POST
    • 获取可用号段类型
      POST
    • 获取可用订单类型
      POST
    • 美国地址验证接口
      POST
  • 物流轨迹
    • 物流轨迹订阅
    • 物流轨迹查询
      POST
    • 物流轨迹节点
      POST
  • 订单管理
    • 创建订单(日本发往中国内地)
      POST
    • 创建订单(日本发往中国香港)
      POST
    • 创建订单(日本发往美国)
      POST
    • 订单详情
      POST
    • 删除订单
      POST
  1. 下单公共参数

美国地址验证接口

POST
http://18.116.73.210/api/order/validate-address

请求参数

Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token
示例:
Authorization: Bearer ********************
Header 参数

Body 参数application/json

示例
{
    "address": [
        {
            "recipientCountry": "US",
            "recipientPostalCode": "80904",
            "recipientState": "CO",
            "recipientCity": "Colorado Springs",
            "recipientAddress": "1592 Meadow Peak View Apt 100"
        },
        {
			"recipientAddress": "10909 Gulf 3806",
			"recipientCity": "Houston",
			"recipientState": "CO",
			"recipientPostalCode": "12569",
			"recipientCountry": "US"
		}
    ]
}

返回响应

🟢200成功
application/json
Body

示例
{
    "success": true,
    "code": 0,
    "locale": "string",
    "message": "string",
    "data": {
        "address": [
            {
                "original": {
                    "recipientCountry": "string",
                    "recipientPostalCode": "string",
                    "recipientState": "string",
                    "recipientCity": "string",
                    "recipientAddress": "string"
                },
                "error": true,
                "message": true,
                "matches": [
                    {
                        "recipientCountry": "string",
                        "recipientPostalCode": "string",
                        "recipientState": "string",
                        "recipientCity": "string",
                        "recipientAddress": "string"
                    }
                ]
            }
        ]
    }
}
上一页
获取可用订单类型
下一页
物流轨迹订阅
Built with