1. YDH
供应商接口预览
  • 供应商API
    • YDH
      • 获取产品列表
        POST
      • 获取报价
        POST
      • 创建订单
        POST
      • 获取物流单号
        POST
      • 获取订单面单
        POST
  1. YDH

获取报价

POST
http://zapi.damaierp.com/web/api/v1/rates/list
最后修改时间:2026-08-13 11:12:41

请求参数

Body 参数application/json必填

示例
{
    "appId": "testAppId",
    "timestamp": "1750170431063",
    "sign": "86fc2025f0d114f0be907a28089e2fba",
    "data": {
        "countryCode": "US",
        "city": "London",
        "postCode": "E11 1JZ",
        "weight": 1,
        "length": 1,
        "width": 1,
        "height": 1
    }
}

请求示例代码

Shell
HTTP
Python
Java
PHP
Go
C
C#
JavaScript
Swift
Dart
Objective-C
Ruby
OCaml
R
请求示例请求示例
Shell
HTTP
Python
Java
curl --location 'http://zapi.damaierp.com/web/api/v1/rates/list' \
--header 'Content-Type: application/json' \
--data '{
    "appId": "testAppId",
    "timestamp": "1750170431063",
    "sign": "86fc2025f0d114f0be907a28089e2fba",
    "data": {
        "countryCode": "US",
        "city": "London",
        "postCode": "E11 1JZ",
        "weight": 1,
        "length": 1,
        "width": 1,
        "height": 1
    }
}'

返回响应

🟢200
application/json
成功
Bodyapplication/json

示例
{
    "status": "S",
    "message": "success",
    "data": [
        {
            "productCode": "TEST_CODE",
            "productName": "测试产品",
            "totalAmount": 10,
            "currency": "CNY"
        }
    ]
}
修改于 2026-08-13 11:12:41
上一页
获取产品列表
下一页
创建订单