open api
  1. Shipping
open api
  • Authorization
    • Get Authorization
      GET
  • Category
    • Get children of the category specified
      GET
    • Get parent of the category specified
      GET
  • Product
    • Search products
      GET
    • Get the details of the specified product
      GET
    • Get the details of the specified product with images
      GET
    • Get status of a list of products
      GET
    • Download the images of the specified product
      GET
    • Download the Scenseimage of the specified product
      GET
    • Search products with specific main category
      GET
  • Order
    • Create Order
      POST
    • Create Dropshipping Orders
      POST
    • Create order(Deprecated)
      POST
    • Get Order List
      GET
    • Get Order Information
      GET
  • Shipping
    • Shipping Calculation
      POST
    • Shipping Calculation Enhancement
      POST
  1. Shipping

Shipping Calculation Enhancement

POST
/order/shippingcostenhancement
Shipping Calculation Enhancement

请求参数

Header 参数

Body 参数application/json

示例
{
"skuinfo":"660402384A*1,103517137A*2",
"countrycode":"US",
"shippingmethodcode":""
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/order/shippingcostenhancement' \
--header 'Authorization: 2+s8CDVEwkmRHSJ9lorE5Q==' \
--header 'Content-Type: application/json' \
--data-raw '{
"skuinfo":"660402384A*1,103517137A*2",
"countrycode":"US",
"shippingmethodcode":""
}'

返回响应

🟢200success
application/json
Body

示例
{
    "Success": true,
    "Currency": "USD",
    "CountryCode": "US",
    "Shippings": [
        {
            "ShippingMethodCode": "EUDDP",
            "ShippingMethod": "YunExpress",
            "ShippingCost": 5.31,
            "DeliveryCycle": "8-12 business days"
        },
        {
            "ShippingMethodCode": "NLP",
            "ShippingMethod": "POST NL",
            "ShippingCost": 9.06,
            "DeliveryCycle": "15-30 business days"
        },
        {
            "ShippingMethodCode": "FDX",
            "ShippingMethod": "Fedex",
            "ShippingCost": 20.8,
            "DeliveryCycle": "5-7 business days"
        },
        {
            "ShippingMethodCode": "DHL",
            "ShippingMethod": "DHL",
            "ShippingCost": 23.03,
            "DeliveryCycle": "5-7 business days"
        },
        {
            "ShippingMethodCode": "UPS",
            "ShippingMethod": "UPS",
            "ShippingCost": 87.0,
            "DeliveryCycle": "7-10 business days"
        }
    ],
    "Reason": ""
}
🟢200unauthorized
修改于 2024-04-07 04:20:57
上一页
Shipping Calculation
Built with