Skip to content

查询退票手续费

  • 接口地址: [basePath]/support/third-party/order/ticket/refundHandlingFee
  • 示例请求body:
json
{
  "order_id": "1234567", //第三方订单Id
  "time": "2024-02-02 12:30:00", //查询手续费时间
  "appid": "[appid]",
  "sign": "[signature]"
}
  • 示例响应body
json
{
  "code": 0,
  "msg": "",
  "data": {
      "rate":"50.0%",  // 收取手续费比例
      "refund_fee":"40.00", //退款金额
      "handling_fee":"40.00" //收取手续费金额
  }
}

Released under the MIT License.