Inbound pricing for all services


POST http://openapi.ck1info.com/v1/pricing/inbound/box
Description: Inbound pricing for all services

Request

Body Parameters
NameDataTypeAnnotationRequiredDescriptionExample
ServiceCode string

regular expression: ^[a-zA-Z0-9\-_]*$

String length: between 0 and 30

WarehouseId string

regular expression: ^[a-zA-Z0-9\-_]*$

String length: between 0 and 10

Required

LocationId string

String length: between 0 and 30

Boxes Collection of InboundBox

None.

Required

IncludeUnsuccessful boolean

None.

IsCustomsClearance boolean

None.

IsBorrowTaxNo boolean

None.

Request in JSON
{
  "ServiceCode": "sample string 1",
  "WarehouseId": "sample string 2",
  "LocationId": "sample string 3",
  "Boxes": [
    {
      "Weight": 1,
      "Length": 2,
      "Width": 3,
      "Height": 4,
      "Quantity": 5
    },
    {
      "Weight": 1,
      "Length": 2,
      "Width": 3,
      "Height": 4,
      "Quantity": 5
    }
  ],
  "IncludeUnsuccessful": true,
  "IsCustomsClearance": true,
  "IsBorrowTaxNo": true
}

Response

NameDataTypeAnnotationRequiredDescriptionExample
ServiceCode string

None.

USRPP

ServiceName string

None.

美国本地快捷签收派送

Success boolean

None.

true

Message string

None.

ChargeInfo ChargeInfo

None.

LogisticsTimes LogisticsTime

None.

Response in JSON
[
  {
    "ServiceCode": "sample string 1",
    "ServiceName": "sample string 2",
    "Success": true,
    "Message": "sample string 4",
    "ChargeInfo": {
      "Summary": [
        {
          "Currency": "sample string 1",
          "Amount": 2
        },
        {
          "Currency": "sample string 1",
          "Amount": 2
        }
      ],
      "Detail": [
        {
          "Currency": "sample string 1",
          "Amount": 2,
          "ChargeName": "sample string 3",
          "Remark": "sample string 4"
        },
        {
          "Currency": "sample string 1",
          "Amount": 2,
          "ChargeName": "sample string 3",
          "Remark": "sample string 4"
        }
      ]
    },
    "LogisticsTimes": {
      "Min": 1,
      "Max": 2
    }
  },
  {
    "ServiceCode": "sample string 1",
    "ServiceName": "sample string 2",
    "Success": true,
    "Message": "sample string 4",
    "ChargeInfo": {
      "Summary": [
        {
          "Currency": "sample string 1",
          "Amount": 2
        },
        {
          "Currency": "sample string 1",
          "Amount": 2
        }
      ],
      "Detail": [
        {
          "Currency": "sample string 1",
          "Amount": 2,
          "ChargeName": "sample string 3",
          "Remark": "sample string 4"
        },
        {
          "Currency": "sample string 1",
          "Amount": 2,
          "ChargeName": "sample string 3",
          "Remark": "sample string 4"
        }
      ]
    },
    "LogisticsTimes": {
      "Min": 1,
      "Max": 2
    }
  }
]