用于调试预估改价结果回调,仅沙箱环境可以用
请求地址: /v2/common/estimateUpdateFee
服务协议: HTTP/POST
Content-Type: application/x-www-form-urlencoded
请求参数:
参数名称 | 类型 | 必选 | 说明 |
---|---|---|---|
client_id | string | Y | 申请的client_id |
timestamp | long | Y | 时间戳 |
sign | string | Y | 签名 |
orderNo | string | Y | 订单id |
fixedPrice | int | N | 一口价 |
travelKm | double | Y | 用车里程(单位:千米) |
nightKm | double | Y | 夜间里程(单位:千米) |
travelMinute | int | Y | 用车时长(单位分钟) |
parkFee | int | Y | 停车费 |
hightSpeedFee | int | Y | 高速费 |
bridgeFee | int | Y | 过桥费 |
otherFee | int | Y | 其他费用 |
remark | string | Y | 改价备注 |
注意事项:
一口价只针对:用车里程,用车时长,过桥费,停车费,高速费,其他费
结果示例:
{
"code": 200,
"success": true,
"data":{
"travelMinute":30,
"parkFee":30,
"travelKmFee":9450,
"lowMinuteFee":0,
"bridgeFee":30,
"travelMinuteFee":1500,
"travelKm":30,
"derateType":1,
"nightTime":0,
"orderNo":12345678,
"longKm":20,
"otherFee":30,
"derateAmount":1000,
"nightKm":30,
"nightFee":2500,
"longKm2Fee":0,
"longKmFee":3500,
"lowMinute":0,
"totalFee":18270,
"hightSpeedFee":30,
"startFee":2000,
"derateRate":90,
"longKm2":0,
"extraFee":0,
"nightFix":200
}
}