Get CancelResult Label Service


POST https://openapi.chukou1.cn/v1/directExpressOrders/GetDirectExpressCancelResult
Description: Get CancelResult Label Service, support multi-packages
Http 200 - Ok
Http 400 - Invalid data, Please check

Request

Body Parameters
NameDataTypeAnnotationRequiredDescriptionExample
IdType IdType

None.

PackageIds Collection of string

None.

Required

Request in JSON
{
  "IdType": "PackageId",
  "PackageIds": [
    "sample string 1",
    "sample string 2"
  ]
}

Response

NameDataTypeAnnotationRequiredDescriptionExample
PackageId string

None.

CancelStatus DirectExpressCancelStatus

None.

取消成功 CancelSuccess,取消失败 CancelFailed

IsFeeCharged boolean

None.

FeePercentage decimal number

None.

20 表示 20%

Response in JSON
[
  {
    "PackageId": "sample string 1",
    "CancelStatus": "Cancelling",
    "IsFeeCharged": true,
    "FeePercentage": 3
  },
  {
    "PackageId": "sample string 1",
    "CancelStatus": "Cancelling",
    "IsFeeCharged": true,
    "FeePercentage": 3
  }
]