接口说明
-
1、关于开始日期、结束日期、开始时间、结束时间订单列表接口会根据支付时间、退款时间、个人支付转个人垫付时间查,这三个时间的任意一个在时间范围内,就会被查询出来。2018-08-23这个订单个人支付转个人垫付时间是2018-10-8 07:58 所以滴滴返回的订单列表中含有 paytime=2018-08-23 08:51:29的订单
2、关于分页第一次查询,offset应为0;涉及多次查询时,后续的offset应为length的整数倍。根据返回值的total(总条数),判断一共需要查询几次(total/length 向上取整)例如:第一次offset 0, length 100, 第二次应该是offset 100, length 100。offset应为length的整数倍
3、关于个人垫付订单当开通企业审批报销高级版、第三方费控报销高级版时,能查看所有端的个人垫付订单当未开通以上高级版时,只能查看滴滴企业版App的个人垫付订单
4、订单查询请求的开始日期和结束日期时间跨度不能大于七天。若只传开始日期,则返回结果为开始日期后的七天范围内的订单查询结果;若只传结束日期,则返回结果为结束日期前七天范围内的订单
基本信息
|
HTTP URL |
/river/Order/get |
|---|---|
|
HTTP Method |
GET |
|
权限要求 |
|
请求头
|
参数名称 |
参数值 |
|---|---|
|
Content-Type |
application/json |
请求参数
|
字段名 |
字段说明 |
字段类型 |
必填 |
备注 |
|---|---|---|---|---|
|
client_id |
应用唯一标识 |
string |
Y |
滴滴开放平台创建应用时,由平台分配的唯一标识,用于识别调用方身份 |
|
access_token |
接口调用授权凭证 |
string |
Y |
授权认证后获取的访问令牌,用于校验接口调用权限;授权认证方式参见【接口认证-授权认证】 |
|
company_id |
租户唯一标识 |
string |
Y |
滴滴企业版租户唯一 ID,代表当前操作的企业主体 |
|
timestamp |
当前时间戳 |
int |
Y |
当前时间戳,精确到秒级 |
|
sign |
签名 |
string |
Y |
根据规则生成的接口签名,用于校验请求合法性与完整性;生成方式参见【接口认证-授权认证】 |
|
call_phone |
叫车人手机号 |
string |
N |
叫车人手机号 |
|
phone |
乘客手机号 |
string |
N |
乘客手机号 |
|
start_date |
开始日期 |
string |
N |
开始日期(如:2015-05-01) |
|
end_date |
结束日期 |
string |
N |
结束日期(如:2015-05-28) |
|
start_time |
开始时间 |
string |
N |
开始时间(如:2018-12-12 20:00:00) |
|
end_time |
结束时间 |
string |
N |
结束时间(如:2018-12-12 21:00:00) |
|
use_car_type |
用车方式 |
int |
N |
枚举值数字: |
|
pay_type |
支付方式 |
int |
N |
枚举值数字: |
|
is_invoice |
是否已开票 |
int |
N |
枚举值数字: |
|
budget_center_id |
部门/项目滴滴侧ID |
string |
N |
部门:budget_center_id或out_budget_id,任选一个传值 |
|
out_budget_id |
部门/项目外部编号 |
string |
N |
|
|
name |
部门/项目名称 |
string |
N |
|
|
offset |
数据开始位置 |
int |
Y |
数据开始位置。第一次查询,offset应为0;涉及多次查询时,offset应为length的整数倍 |
|
length |
数据条数 |
int |
Y |
数据条数(最大100条) |
|
last_order_id |
上次数据的最后一个订单ID |
string |
N |
每次返回结果的最后一个order_id作为下一次查询入参的last_order_id |
|
page_type |
分页方式 |
string |
N |
当要使用last_order_id方式时,page_type需要传为last_id;默认为offset方式 |
|
need_approval_id |
是否需要返回审批单ID字段 |
int |
N |
枚举值数字: |
|
need_rule_info |
是否返回制度信息 |
int |
N |
枚举值数字: |
|
need_abnormal_msg |
是否返回敏感订单信息 |
int |
N |
枚举值数字: |
|
need_project_info |
是否返回项目拓展信息 |
int |
N |
枚举值数字: |
|
need_call_employee_number |
是否返回叫车人员工编号 |
int |
N |
枚举值数字: |
|
source_area |
订单区域 |
int |
N |
枚举值数字: |
请求示例
curl -X GET -H "Content-Type: application/x-www-form-urlencoded" https://api.es.xiaojukeji.com/river/Order/get?client_id=client_id_test&access_token=141ea31466478eab2f1c1ddcca2675b989a16552×tamp=1566764837&company_id=12345678980&offset=0&length=100&sign=091cf244ad5ab16935cfe44fc698bc58
响应参数
返回参数:
|
字段名 |
字段说明 |
字段类型 |
必填 |
备注 |
|---|---|---|---|---|
|
errno |
错误,0表示成功,非0表示失败 |
string |
Y |
|
|
errmsg |
errno=0时为常量"SUCCESS",errno!=0时为错误信息 |
string |
Y |
|
|
data |
数据 |
object |
Y |
|
data数据格式
|
字段名 |
字段中文说明 |
字段类型 |
备注 |
|---|---|---|---|
|
total |
此次查询符合条件的订单总数 |
int |
|
|
records |
订单集合 |
array |
|
records数组元素格式
|
字段名 |
字段中文说明 |
字段类型 |
备注 |
|---|---|---|---|
|
基本信息 |
|
|
|
|
order_id |
订单id |
string |
|
|
status |
订单状态 |
string |
枚举值数字: |
|
type |
订单类型 |
string |
枚举值数字: |
|
pay_type |
支付类型 |
string |
首次发起支付时,记录对应支付类型 |
|
order_source |
订单来源 |
string |
枚举值数字: |
|
supplier_type |
运力来源 |
int |
枚举值数字: |
|
pricing_mode |
计价模型 |
int |
枚举值数字: |
|
is_carpool |
是否为拼车 |
string |
枚举值数字: |
|
is_invoice |
是否已开票 |
int |
枚举值数字: |
|
source_area |
订单区域 |
int |
枚举值数字: |
|
用车场景 |
|
|
|
|
sub_use_car_type |
用车场景 |
int |
枚举值数字: |
|
actual_start_scene |
实际出发地场景 |
string |
枚举值数字: |
|
actual_end_scene |
实际目的地场景 |
string |
枚举值数字: |
|
车型 |
|
|
|
|
use_car_type |
用车车型大类 |
string |
枚举值数字: |
|
require_level |
用车车型 |
string |
枚举值数字: |
|
product_category |
品类/3.0车型列表 |
int |
枚举值数字: |
|
upgrade_type |
升舱类型 |
int |
枚举值数字: |
|
level_type |
是否为特快 |
int |
枚举值数字: |
|
combo_type |
快车的计价类型 |
int |
枚举值数字: |
|
叫车人信息 |
|
|
|
|
call_phone |
叫车人手机号 |
string |
|
|
call_employee_number |
叫车人员工工号 |
string |
need_call_employee_number=1时返回 |
|
call_employee_name |
叫车人姓名 |
string |
|
|
member_id |
下单员工 ID |
int64 |
滴滴侧员工ID |
|
group_id |
部门ID |
string |
滴滴侧部门ID |
|
legal_entity_info |
所属公司信息 |
object |
|
|
乘车人信息 |
|
|
|
|
passenger_phone |
乘车人手机号 |
string |
|
|
passenger_name |
乘车人名字 |
string |
|
|
行程信息 |
|
|
|
|
city |
出发地城市id |
string |
|
|
city_name |
出发地城市名称 |
string |
|
|
departure_county_id |
出发地区县ID |
int |
|
|
departure_county_name |
出发地区县名称 |
string |
|
|
start_name |
出发地名称 |
string |
|
|
actual_start_name |
实际出发地名称(司机点击开始的位置) |
string |
|
|
actual_flat |
实际出发地纬度(司机点击开始的位置) |
string |
|
|
actual_flng |
实际出发地经度(司机点击开始的位置) |
string |
|
|
actual_start_address |
实际出发地址 |
string |
|
|
dest_city |
目的地城市ID |
int |
|
|
dest_city_name |
目的地城市名称 |
string |
|
|
destination_county_id |
目的地区县ID |
int |
|
|
destination_county_name |
目的地区县名称 |
string |
|
|
end_name |
目的地名称 |
string |
|
|
actual_end_name |
实际目的地名称(司机点击结束的位置) |
string |
|
|
actual_tlat |
实际目的地纬度(司机点击结束的位置) |
string |
|
|
actual_tlng |
实际目的地经度(司机点击结束的位置) |
string |
|
|
actual_end_address |
实际目的地址 |
string |
|
|
stopover_points |
途经点 |
array |
参考stopover_points对象 |
|
history_destinations |
修改过的历史目的地信息 |
array |
|
|
时间信息 |
|
|
|
|
create_time |
下单时间(订单生成时间) |
string |
|
|
departure_time |
出发时间(预约单为预约出发时间) |
string |
|
|
strive_time |
接单时间 |
string |
|
|
meet_time |
接驾时间 |
string |
|
|
begin_charge_time |
开始计价时间 |
string |
|
|
finish_time |
结束计价时间 |
string |
|
|
pay_time |
支付时间 |
string |
|
|
refund_time |
退款时间 |
string |
|
|
金额信息 |
|
|
|
|
total_price |
订单总金额 |
string |
包含车费与平台使用费(含异步),单位:元 |
|
estimate_price |
预估金额 |
string |
预估金额,单位:元 |
|
actual_price |
实付金额 |
string |
=订单总金额-券抵扣金额,单位:元 |
|
refund_price |
退款金额 |
string |
总退款金额(企业支付退款+个人支付退款) |
|
es_cut_fee |
整单立减金额 |
BigDecimal |
针对企业特价快车、远必省场景,订单整单优惠的金额,包含了尊享立减/远途立省 |
|
pre_total_fee |
特惠快车原价金额 |
string |
特惠快车原价金额,单位:元 |
|
car_price |
车费金额 |
string |
实付金额减去额外费用 |
|
公司/个人部分的金额信息 |
|
|
|
|
company_pay |
公司支付金额 |
string |
公司应付金额,单位:元 |
|
company_card_pay |
公司出行卡支付金额 |
string |
公司出行卡应付金额,单位:元 |
|
company_real_pay |
公司实付金额 |
string |
公司实付金额,单位:元 |
|
company_card_real_pay |
公司出行卡实付金额 |
string |
公司出行卡实付金额,单位:元 |
|
personal_pay |
个人支付金额 |
string |
个人应付金额,单位:元 |
|
personal_real_pay |
个人实付金额 |
string |
个人实付金额,单位:元 |
|
company_real_refund |
公司实际退款金额 |
string |
公司实退金额,单位:元 |
|
company_card_real_refund |
公司出行卡实际退款金额 |
string |
公司出行卡实退金额,单位:元 |
|
personal_real_refund |
个人实际退款金额 |
string |
个人实退金额,单位:元 |
|
里程信息 |
|
|
|
|
normal_distance |
总里程 |
string |
单位:千米 |
|
制度信息 |
|
|
|
|
rule_name |
制度名称 |
string |
(need_rule_info = 1 时返回) |
|
regulation_id |
制度ID |
int64 |
(need_rule_info = 1 时返回) |
|
use_car_config_id |
用车规则id |
string |
|
|
申请单信息 |
|
|
|
|
approval_id |
滴滴侧申请单ID |
string |
订单关联的滴滴侧申请单ID |
|
out_approval_id |
客户侧申请单ID |
string |
订单关联的申请单外部ID |
|
extra_info |
扩展信息 |
string |
通过API创建申请单时携带的扩展信息 |
|
extend_field_list |
扩展信息列表 |
string |
通过API创建申请单时携带的拓展信息列表,参考extend_field_list对象 |
|
callback_info |
下单时携带的callback_info |
string |
通过H5单点登录下单时,携带的callback_info信息 |
|
成本中心与备注 |
|
|
|
|
budget_center_id |
成本中心ID |
string |
通过API创建申请单时携带的成本中心信息,或下单时选择的成本中心 |
|
budget_center_list |
多成本中心 |
array |
通过API创建申请单时携带的成本中心列表,或下单时选择的成本中心列表,参考budget_center_list对象 |
|
budget_extra_info |
项目扩展信息的自定义字段 |
string |
项目扩展信息的自定义字段;最长不大于 500 字符 |
|
remark |
备注信息 |
string |
备注信息,remark为备注+补充说明,如果两个字段均有值,中间用“|”分割,例“重要客户拜访 | 拜访xxx客户”,多条备注中间用“;”号进行分隔,例“重要客户拜访 | 拜访xxx客户;车型升舱| 同行人一共6人” |
|
remark_details |
订单备注详情 |
array |
返回结构化备注列表,包含备注名称与补充说明 |
|
敏感订单信息 |
|
|
|
|
is_abnormal |
是否为敏感订单 |
int |
枚举值数字: |
|
abnormal_explanation |
敏感订单员工说明文案 |
string |
need_abnormal_msg为 1时返回 |
|
abnormal_type |
敏感订单类型 |
string |
need_abnormal_msg为 1时返回 |
|
reason_type |
敏感订单解释原因类型 |
string |
need_abnormal_msg为 1时返回 |
|
operation_type |
敏感订单干预方式 |
int |
need_abnormal_msg为 1时返回 |
|
is_sensitive |
是否为敏感订单 |
int |
历史字段,新用户可忽略,使用is_abnormal字段 |
|
sensitive_rule_id |
命中的敏感规则id |
string |
历史字段,新用户可忽略 |
|
其他 |
|
|
|
|
encrypted_info |
订单加密信息 |
string |
(可忽略) |
budget_center_list
|
字段 |
字段说明 |
字段类型 |
备注 |
|---|---|---|---|
|
app_name |
字段员工侧展示名称 |
string |
|
|
sequence |
字段序号 |
int |
字段序号 支持从1到9 |
|
id |
滴滴主键 |
string |
sequence为1时,生效 |
|
value |
对应成本中心的值 |
string |
对应成本中心的值。sequence为1时与name字段一致,sequence为2时,对应extend_field_01,sequence为3时,对应extend_field_02,sequence为4时,对应extend_field_03 |
|
code |
对应成本中心的编码 |
string |
对应成本中心的编码。sequence为1时与out_budget_id字段一致 |
extend_field_list
|
字段名 |
字段中文说明 |
字段类型 |
必填 |
备注 |
|---|---|---|---|---|
|
extend_field_01 |
扩展信息一 |
string |
N |
|
|
extend_field_02 |
扩展信息二 |
string |
N |
|
|
extend_field_03 |
扩展信息三 |
string |
N |
|
stopover_points
|
字段 |
字段说明 |
字段类型 |
备注 |
|---|---|---|---|
|
cityid |
途经点城市id |
string |
|
|
address |
途经点详细地址 |
string |
途经点的详细地址信息 |
|
stop_id |
途经点id |
int |
|
|
city |
途径点城市名称 |
string |
|
|
lng |
途经点经度 |
string |
|
|
lat |
途经点维度 |
string |
|
|
name |
途经点名称 |
string |
|
|
status |
途径点状态 |
int |
状态分为0和1,0代表还未经过途径点,1代表已经经过途径点 |
legal_entity_info
|
字段 |
字段说明 |
字段类型 |
备注 |
|---|---|---|---|
|
legal_entity_id |
叫车人所属公司id |
string |
|
|
out_legal_entity_id |
叫车人所属公司业务编码 |
string |
|
|
legal_entity_name |
叫车人所属公司名称 |
string |
|
history_destinations
|
字段 |
字段说明 |
字段类型 |
备注 |
|---|---|---|---|
|
address |
历史目的地详细地址 |
string |
|
|
lng |
历史目的地经度 |
string |
|
|
lat |
历史目的地维度 |
string |
|
|
name |
历史目的地地址名称 |
string |
|
|
sequence |
历史目的地序号 |
int |
序号从1开始递增,存在多次修改目的地时,1表示最早修改的那次 |
响应示例
正常示例
{
"errno": 0,
"errmsg": "SUCCESS",
"data": {
"total": 4,
"records": [
{
"order_id": "1125937328253434",
"create_time": "2024-07-18 18:04:25",
"require_level": "600",
"product_category": 5000,
"start_name": "弘源·新时代东门",
"end_name": "滴滴新橙海大厦B座",
"departure_time": "2024-07-18 18:04:25",
"strive_time": "2024-07-18 18:04:49",
"meet_time": "2024-07-18 18:04:52",
"begin_charge_time": "2024-07-18 18:04:59",
"finish_time": "2024-07-18 18:05:04",
"status": "2",
"member_id": "1125937310409713",
"pay_time": "2024-07-18 19:00:08",
"total_price": "16.50",
"actual_price": "16.50",
"refund_price": "0.00",
"refund_time": "",
"is_invoice": 0,
"use_car_type": "3",
"call_phone": "00016240942",
"passenger_phone": "00016240942",
"passenger_name": "荣员工2",
"pay_type": "1",
"budget_center_id": "0",
"budget_item_id": "0",
"use_car_config_id": "1125937233736352",
"city": "1",
"order_source": "4",
"company_real_pay": "0.00",
"personal_real_pay": "16.50",
"company_card_real_pay": "0.00",
"personal_pay": "16.50",
"company_pay": "0.00",
"company_card_pay": "0.00",
"company_real_refund": "0.00",
"personal_real_refund": "0.00",
"company_card_real_refund": "0.00",
"estimate_price": "25.96",
"is_carpool": "0",
"remark": "重要客户拜访 | 拜访xxx客户;车型升舱 | 同行人一共6人",
"remark_details": [
{
"title": "重要客户拜访",
"order_additional_remark": "拜访xxx客户"
},
{
"title": "车型升舱",
"order_additional_remark": "同行人一共6人"
}
],
"actual_flat": "39.913370000000",
"actual_flng": "116.452960000000",
"actual_tlat": "39.933490000000",
"actual_tlng": "116.514310000000",
"normal_distance": "0",
"actual_end_name": "国美第一城-东院",
"actual_start_name": "光华路口东-公交站",
"city_name": "北京市",
"pricing_mode": 0,
"encrypted_info": "kwOmjSZe0KH%2BQcO4tozy%2FqNnt5n4PNPTJGMAcMIjOz8z%2F1%2F%2BPK0L%2FSeqqqj5e7hLpfAtLfa6FSjiLjoS8E5jYbsuyzYCsQkJhvOh21z4m7h%2Fmy%2B0nZL6KJRDKJZUcpxr",
"is_sensitive": 0,
"sensitive_rule_id": 0,
"callback_info": "",
"is_abnormal": 0,
"abnormal_type": "",
"reason_type": "",
"abnormal_explanation": "",
"operation_type": 0,
"upgrade_type": 0,
"is_personal_dispatch": 0,
"level_type": 0,
"combo_type": 0,
"sub_use_car_type": 0,
"type": "0",
"group_id": "1125915646135311",
"dest_city_name": "北京市",
"dest_city": "1",
"pre_total_fee": "",
"fixed_discount_fee": "",
"discount_fee": "",
"company_real_refund_detail": [
],
"supplier_type": "0"
},
{
"order_id": "1125937322763043",
"create_time": "2024-07-18 16:40:58",
"require_level": "600",
"product_category": 5000,
"start_name": "弘源·新时代东门",
"end_name": "龙泽-地铁站",
"departure_time": "2024-07-18 16:40:58",
"strive_time": "2024-07-18 16:41:27",
"meet_time": "2024-07-18 16:41:35",
"begin_charge_time": "2024-07-18 16:41:41",
"finish_time": "2024-07-18 16:41:47",
"status": "2",
"member_id": "1125937310409713",
"pay_time": "2024-07-18 17:43:26",
"total_price": "16.50",
"actual_price": "16.50",
"refund_price": "0.00",
"refund_time": "",
"is_invoice": 0,
"use_car_type": "3",
"call_phone": "00016240942",
"passenger_phone": "00016240942",
"passenger_name": "荣员工2",
"pay_type": "0",
"budget_center_id": "0",
"budget_item_id": "0",
"use_car_config_id": "1125937233736352",
"city": "1",
"order_source": "4",
"company_real_pay": "16.50",
"personal_real_pay": "0.00",
"company_card_real_pay": "0.00",
"personal_pay": "0.00",
"company_pay": "16.50",
"company_card_pay": "0.00",
"company_real_refund": "0.00",
"personal_real_refund": "0.00",
"company_card_real_refund": "0.00",
"estimate_price": "24.01",
"is_carpool": "0",
"remark": "",
"actual_flat": "39.913370000000",
"actual_flng": "116.452960000000",
"actual_tlat": "39.933490000000",
"actual_tlng": "116.514310000000",
"normal_distance": "0",
"actual_end_name": "国美第一城-东院",
"actual_start_name": "光华路口东-公交站",
"city_name": "北京市",
"pricing_mode": 0,
"encrypted_info": "XgWafbXz1BAy9EXhMCOiwyNLOXSV5yqRN9pDq2gMBj1dAg%2B0%2FJCU6cBRzpDQbee4kdPQIpF6LW4WCo0nXttE2B5BNdLGFYZKE0oWU%2By1Xo%2BGrEMonfOZU%2BXu%2F9JtagH6",
"is_sensitive": 0,
"sensitive_rule_id": 0,
"callback_info": "",
"is_abnormal": 0,
"abnormal_type": "",
"reason_type": "",
"abnormal_explanation": "",
"operation_type": 0,
"upgrade_type": 0,
"is_personal_dispatch": 0,
"level_type": 0,
"combo_type": 0,
"sub_use_car_type": 0,
"type": "0",
"group_id": "1125915646135311",
"dest_city_name": "北京市",
"dest_city": "1",
"pre_total_fee": "",
"fixed_discount_fee": "",
"discount_fee": "",
"company_real_refund_detail": [
],
"supplier_type": "0"
},
{
"order_id": "1125937314742704",
"create_time": "2024-07-18 14:41:48",
"require_level": "600",
"product_category": 5000,
"start_name": "万科天空之城B座",
"end_name": "龙泽-地铁站",
"departure_time": "2024-07-18 14:41:48",
"strive_time": "2024-07-18 14:42:11",
"meet_time": "2024-07-18 14:42:16",
"begin_charge_time": "2024-07-18 14:42:22",
"finish_time": "2024-07-18 14:42:26",
"status": "4",
"member_id": "1125937310409713",
"pay_time": "2024-07-18 16:31:35",
"total_price": "15.30",
"actual_price": "0.00",
"refund_price": "0.00",
"refund_time": "",
"is_invoice": 0,
"use_car_type": "3",
"call_phone": "00016240942",
"passenger_phone": "00016240942",
"passenger_name": "荣员工2",
"pay_type": "0",
"budget_center_id": "0",
"budget_item_id": "0",
"use_car_config_id": "1125937233736352",
"city": "1",
"order_source": "4",
"company_real_pay": "0.00",
"personal_real_pay": "0.00",
"company_card_real_pay": "0.00",
"personal_pay": "0.00",
"company_pay": "15.30",
"company_card_pay": "0.00",
"company_real_refund": "0.00",
"personal_real_refund": "0.00",
"company_card_real_refund": "0.00",
"estimate_price": "15.30",
"is_carpool": "0",
"remark": "",
"actual_flat": "39.913370000000",
"actual_flng": "116.452960000000",
"actual_tlat": "39.933490000000",
"actual_tlng": "116.514310000000",
"normal_distance": "0",
"actual_end_name": "国美第一城-东院",
"actual_start_name": "光华路口东-公交站",
"city_name": "北京市",
"pricing_mode": 0,
"encrypted_info": "BrA0G5HX8nMkcZf3q25XQ%2B6AoD38Lxks4KHC8eFCDTDlb%2BQcJQRZPBM31OWhVGltTrAB3FwdBT4HCygdUPPJa2jS%2FIxGOn%2B8mOxYEmEVjZ71eVFocMYLR1BS9KXwUHxk",
"is_sensitive": 0,
"sensitive_rule_id": 0,
"callback_info": "",
"is_abnormal": 0,
"abnormal_type": "",
"reason_type": "",
"abnormal_explanation": "",
"operation_type": 0,
"upgrade_type": 0,
"is_personal_dispatch": 0,
"level_type": 0,
"combo_type": 0,
"sub_use_car_type": 0,
"type": "0",
"group_id": "1125915646135311",
"dest_city_name": "北京市",
"dest_city": "1",
"pre_total_fee": "",
"fixed_discount_fee": "",
"discount_fee": "",
"company_real_refund_detail": [
],
"supplier_type": "0"
},
{
"order_id": "1125937310433192",
"create_time": "2024-07-18 13:18:17",
"require_level": "600",
"product_category": 5000,
"start_name": "万科天空之城B座",
"end_name": "滴滴新橙海大厦B座",
"departure_time": "2024-07-18 13:18:17",
"strive_time": "2024-07-18 13:18:38",
"meet_time": "2024-07-18 13:18:47",
"begin_charge_time": "2024-07-18 13:18:53",
"finish_time": "2024-07-18 13:19:00",
"status": "2",
"member_id": "1125937310409713",
"pay_time": "2024-07-18 14:36:06",
"total_price": "15.30",
"actual_price": "15.30",
"refund_price": "0.00",
"refund_time": "",
"is_invoice": 0,
"use_car_type": "3",
"call_phone": "00016240942",
"passenger_phone": "00016240942",
"passenger_name": "荣员工2",
"pay_type": "0",
"budget_center_id": "0",
"budget_item_id": "0",
"use_car_config_id": "1125937233736352",
"city": "1",
"order_source": "4",
"company_real_pay": "15.30",
"personal_real_pay": "0.00",
"company_card_real_pay": "0.00",
"personal_pay": "0.00",
"company_pay": "15.30",
"company_card_pay": "0.00",
"company_real_refund": "0.00",
"personal_real_refund": "0.00",
"company_card_real_refund": "0.00",
"estimate_price": "25.50",
"is_carpool": "0",
"remark": "",
"actual_flat": "39.913370000000",
"actual_flng": "116.452960000000",
"actual_tlat": "39.933490000000",
"actual_tlng": "116.514310000000",
"normal_distance": "0.1",
"actual_end_name": "国美第一城-东院",
"actual_start_name": "光华路口东-公交站",
"city_name": "北京市",
"pricing_mode": 0,
"encrypted_info": "CAVmiKijRorTh7zZ%2BoajS13zLVeN433AJ8TXPRlt5VVJFpvIbnY2Pe3pvN5NPvQ47NW5bMreCjZT9xfHtaztctsp3t88erQ%2FTwZdFRS%2FW2QIPdWHYAk9iiSfvVxw5bKq",
"is_sensitive": 0,
"sensitive_rule_id": 0,
"callback_info": "",
"is_abnormal": 1,
"abnormal_type": "代别人叫车",
"reason_type": "发单位置异常,订单起点与实际叫车地点相距过远(相距:4.3公里)",
"abnormal_explanation": "敏感订单情况说明1111111111",
"operation_type": 4,
"upgrade_type": 0,
"is_personal_dispatch": 0,
"level_type": 0,
"combo_type": 0,
"sub_use_car_type": 0,
"type": "0",
"group_id": "1125915646135311",
"dest_city_name": "北京市",
"dest_city": "1",
"pre_total_fee": "",
"fixed_discount_fee": "",
"budget_center_list": [
],
"actual_start_address": "北京市朝阳区光华路9号光华路SOHO2C座光华路SOHO2期-C座F16-1",
"actual_end_address": "北京市朝阳区国美餐饮街国美第一城-3号院",
"discount_fee": "",
"company_real_refund_detail": [
],
"supplier_type": "0"
}
]
},
"request_id": "zP0OSTssYlas+\/2+3h825+hvPx2f5KlrbJhxrEH0wqiSSFtLFPrfXw8HUznvR9vs"
}
异常示例
{
"errno": 401,
"errmsg": "access_token不合法或已过期",
"request_id": "202311010956450ab68d336541b05d4add9cabab572002"
}
错误码
附录
require_level全量枚举
|
CODE |
说明 |
|---|---|
|
100 |
专车舒适型 |
|
200 |
专车行政型 |
|
400 |
六座商务 |
|
450 |
滴滴轻享 |
|
500 |
专车优选型 |
|
600 |
普通快车 |
|
900 |
优享 |
|
1000 |
豪华车 |
|
1100 |
企业出租车 |
|
2000 |
优选出租车 |
|
40600 |
企业特价快车 |
|
2300 |
同时呼叫(司机接单后为实际的车型) |
|
690 |
甄选快车 |
|
1400 |
豪华车-宝马5系 |
|
1401 |
豪华车-奥迪A6L |
|
1402 |
豪华车-专车页面下豪华车 |
|
1403 |
豪华车-特斯拉 |
|
1404 |
豪华车-奔驰S级 |
|
1405 |
豪华车-奔驰V级 |
|
1406 |
豪华车-豪华六座 |
|
1407 |
豪华车-埃尔法 |
|
1408 |
豪华车-场景车型 |
|
1409 |
豪华车-Panamera |
|
1410 |
豪华车-豪华轿车 |
|
1411 |
豪华车-红旗H7 |
|
1412 |
豪华车-英菲尼迪 |
|
1413 |
豪华车-保时捷 |
|
1414 |
豪华车-林肯大陆 |
|
1415 |
豪华车-奥迪A8L |
|
1416 |
豪华车-讴歌RDX |
|
1417 |
豪华车-蔚来ES8 |
|
1418 |
豪华车-兰博基尼 |
|
1419 |
豪华车-雷克萨斯 |
|
1420 |
豪华车-沃尔沃 |
|
1500 |
豪华车-奔驰E级 |
|
1600 |
豪华车-捷豹路虎 |
product_category全量枚举
|
CODE |
说明 |
|---|---|
|
5000 |
快车 |
|
5001 |
特快 |
|
5002 |
优享 |
|
5003 |
拼车 |
|
5004 |
出租车 |
|
5005 |
舒适专车 |
|
5006 |
行政专车 |
|
5007 |
六座商务 |
|
5024 |
企业特价快车 |
|
193 |
滴滴轻享 |
|
0 |
同时呼叫 (等待司机接单) |
|
5008 |
优选新出租 |
|
5009 |
任意豪华车 |
|
81 |
甄选快车 |
|
5010 |
奥迪e-tron |
|
5011 |
丰田埃尔法 |
|
5012 |
奔驰E级 |
|
5013 |
红旗H7 |
|
5014 |
红旗H9 |
|
5015 |
林肯飞行家 |
|
5016 |
林肯大陆 |
|
5017 |
奥迪A8L |
|
5018 |
捷豹XFL |
|
5019 |
宝马5系 |
|
5020 |
奥迪A6L |
|
5021 |
特斯拉 |
|
5022 |
奔驰S级 |
|
5023 |
奔驰Vito |
版本记录
|
日期 |
更新人 |
更新内容 |
上线时间 |
|---|---|---|---|
|
2024.04.18 |
陈继诗 |
文档迁移 |
2024.04.18 |
|
2024.05.06 |
陈继诗 |
require_level增加枚举40600 |
2024.05.06 |
|
2024.05.13 |
陈继诗 |
文档修改:返回增加预估金额 |
2024.05.13 |
|
2024.06.20 |
陈继诗 |
文档更新:增加supplier_type |
2024.06.20 |
|
2024.07.22 |
陈继诗 |
文档更新:返回增加operation_type |
2024.07.22 |
|
2024.09.02 |
陈继诗 |
新增budget_center_list信息 |
2024.09.13 |
|
2024.09.27 |
陈继诗 |
新增actual_start_address,actual_end_address,departure_county_id,departure_county_name,destination_county_id,destination_county_name |
2024.11.04 |
|
2025.02.11 |
陈继诗 |
增加car_price字段 |
2024.02.11 |
|
2025.02.19 |
梁镇超 |
新增stopover_points信息 |
2024.02.19 |
|
2025.05.23 |
高洋洋 |
新增legal_entity_info信息 |
2025.05.23 |
|
2025.05.26 |
高洋洋 |
新增history_destinations信息 |
2025.06.04 |
|
2025.06.30 |
杨露佳 |
require_level新增枚举 450 (滴滴轻享),product_category新增枚举 193 |
2025.06.30 |
|
2025.07.30 |
杨露佳 |
新增字段 |
2025.07.30 |
|
2025.11.18 |
谢朱莉 |
新增叫车人姓名 |
2025.11.18 |
|
2026.04.01 |
谢朱莉 |
更新require_level与product_category |
|
|
2026.04.07 |
谢朱莉 |
新增remark_details多备注能力 |
2026.04.07 |
|
2026.04.15 |
谢朱莉 |
更新整单立减相关逻辑 |
2026.04.15 |
|
2026.04.15 |
谢朱莉 |
新增港澳台与海外用车相关参数 |
|