获取取消结果-标签服务


POST http://openapi.ck1info.com/v1/directExpressOrders/GetDirectExpressCancelResult
接口说明: 获取取消结果-标签服务,支持多个包裹,最多支持1000个包裹
Http 200 - 成功
Http 400 - 提交的数据有误,请检查

输入参数

Body Parameters
名称类型格式要求是否必须描述示例值
IdType IdType

None.

必须

输入参数id的类型

PackageIds Collection of string

None.

必须

包裹Id列表,每次请求不超过1000个

输入参数的json形式
{
  "IdType": "PackageId",
  "PackageIds": [
    "sample string 1",
    "sample string 2"
  ]
}

返回结果

名称类型格式要求是否必须描述示例值
PackageId string

None.

包裹Id

CancelStatus DirectExpressCancelStatus

None.

取消状态

取消成功 CancelSuccess,取消失败 CancelFailed,初始 Initial,进行中 Underway

IsFeeCharged boolean

None.

是否产生手续费

FeePercentage decimal number

None.

手续费比例

20 表示 20%

返回结果的json形式
[
  {
    "PackageId": "sample string 1",
    "CancelStatus": "Initial",
    "IsFeeCharged": true,
    "FeePercentage": 3
  },
  {
    "PackageId": "sample string 1",
    "CancelStatus": "Initial",
    "IsFeeCharged": true,
    "FeePercentage": 3
  }
]