|
@@ -18,6 +18,7 @@
|
|
|
- [查询运单接口](#%E6%9F%A5%E8%AF%A2%E8%BF%90%E5%8D%95%E6%8E%A5%E5%8F%A3)
|
|
|
- [撤销运单接口](#%E6%92%A4%E9%94%80%E8%BF%90%E5%8D%95%E6%8E%A5%E5%8F%A3)
|
|
|
- [创建撮合运单接口](#%E5%88%9B%E5%BB%BA%E6%92%AE%E5%90%88%E8%BF%90%E5%8D%95%E6%8E%A5%E5%8F%A3)
|
|
|
+ - [更新运单司机运费](#%E6%9B%B4%E6%96%B0%E8%BF%90%E5%8D%95%E5%8F%B8%E6%9C%BA%E8%BF%90%E8%B4%B9)
|
|
|
- [基础信息类接口](#%E5%9F%BA%E7%A1%80%E4%BF%A1%E6%81%AF%E7%B1%BB%E6%8E%A5%E5%8F%A3)
|
|
|
- [司机相关接口](#%E5%8F%B8%E6%9C%BA%E7%9B%B8%E5%85%B3%E6%8E%A5%E5%8F%A3)
|
|
|
- [批量创建司机接口](#%E6%89%B9%E9%87%8F%E5%88%9B%E5%BB%BA%E5%8F%B8%E6%9C%BA%E6%8E%A5%E5%8F%A3)
|
|
@@ -1005,6 +1006,43 @@ https://openapi.wlhy.pre.kuaihuoyun.com/order/create_order?access_token=fe12047e
|
|
|
}
|
|
|
```
|
|
|
|
|
|
+## 更新运单司机运费
|
|
|
+
|
|
|
+**简要描述:** 撮合开单
|
|
|
+
|
|
|
+**请求 URL:** `/order/update_order_driver_freight`
|
|
|
+
|
|
|
+**请求方式:** POST
|
|
|
+
|
|
|
+**需要AccessToken:** 是
|
|
|
+
|
|
|
+**调用限制:** 3次/秒
|
|
|
+
|
|
|
+**请求参数:**
|
|
|
+
|
|
|
+|名称|说明|类型|
|
|
|
+|---|---|---|
|
|
|
+|**orderNumber** <br>*必填*|运单号|string|
|
|
|
+|**driverFreight** <br>*必填*|司机运费|number (double)|
|
|
|
+
|
|
|
+**请求参数示例**
|
|
|
+
|
|
|
+```json
|
|
|
+{
|
|
|
+ "orderNumber": "S2011181700650000",
|
|
|
+ "driverFreight": 96.95
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
+**返回示例**
|
|
|
+
|
|
|
+```json
|
|
|
+{
|
|
|
+ "code": 200,
|
|
|
+ "data": true,
|
|
|
+ "message": null
|
|
|
+}
|
|
|
+```
|
|
|
|
|
|
# 基础信息类接口
|
|
|
|