查询订单
优质
小牛编辑
129浏览
2023-12-01
请求地址
https://api.es.xiaojukeji.com/river/Approval/getOrder
返回数据格式
JSON
请求类型
GET
请求参数
参数名称 | 数据类型 | 必选 | 说明 |
client_id | string | yes | 申请应用时分配的AppKey |
access_token | string | yes | 授权后的access token |
timestamp | string | yes | 当前时间戳 |
company_id | string | yes | 企业ID |
approval_id | string | yes | 审批单ID |
offset | int | yes | 数据开始位置(从0开始) |
length | int | yes | 数据条数(最大50条) |
sign | string | yes | 签名 |
请求示例
curl -X GET -H "Content-Type: application/x-www-form-urlencoded" https://api.es.xiaojukeji.com/river/Approval/getOrder?client_id=client_id_test&access_token=access_token_test×tamp=1566764837&approval_id=781948394919012&company_id=12345678980&offset=0&length=100&sign=fba8dfb887afe16cb71c50b26a5eae0e
返回参数说明
参数名称 | 数据类型 | 说明 |
records | array | 当前页订单数组 |
参数名称 | 数据类型 | 说明 |
order_id | string | 订单ID |
approval_id | string | 审批单ID |
out_approval_id | string | 企业主内部审批单ID |
regulation_id | string | 制度ID |
scene_type | string | 因公出行场景(0-个人用车、1-商务出行、2-差旅、3-加班、4-办公地点通勤、91-代叫车、92-接送机) |
order_create_time | string | 订单创建时间,如:2017-05-25 10:00:00 |
begin_charge_time | string | 订单开始计费时间,如:2017-05-25 10:00:00 |
finish_time | string | 订单结束计费时间,如:2017-05-25 10:00:00 |
departure_time | string | 预约上车时间,如:2017-05-25 10:00:00 |
use_car_type | int | 用车方式(2:专车,3:快车) |
car_level | int | 车型,如(600-快车普通型、100-专车舒适型、200-专车商务型、400-专车豪华型) |
city_name | string | 出发城市名称 |
start_name | string | 出发地名称 |
end_name | string | 目的地名称 |
actual_start_name | string | 实际出发地(司机点击开始的位置) |
actual_end_name | string | 实际目的地(司机点击结束的位置) |
actual_flat | string | 实际出发地纬度(司机点击开始的位置) |
actual_flng | string | 实际出发地经度(司机点击开始的位置) |
actual_tlat | string | 实际目的地纬度(司机点击结束的位置) |
actual_tlng | string | 实际目的地经度(司机点击结束的位置) |
pay_time | string | 支付时间 |
order_status | int | 订单状态(2-已支付、3-已退款、4-已取消、7-部分退款) |
pay_type | int | 支付方式(0-企业支付、1-个人支付需报销、2-混合支付(企业和个人各支付部分)) |
is_invoice | int | 开票状态(0-未开、1-开过 ) |
call_phone | string | 叫车人手机号 |
passenger_phone | string | 乘车人手机号 |
total_price | float | 订单总金额 |
actual_price | float | 订单实付金额(总金额-券折扣金额) |
refund_price | float | 订单总退款金额(企业支付退款+个人支付退款) |
company_pay | float | 企业支付应付金额 |
personal_pay | float | 个人支付应付金额 |
company_real_pay | float | 企业支付实付金额 |
personal_real_pay | float | 个人支付实付金额 |
company_real_refund | float | 企业支付退款金额 |
personal_real_refund | float | 个人支付退款金额 |
budget_center_id | string | 成本中心ID |
extra_info | json | 扩展信息,自定义字段 |
返回示例:
{
"errno": 0,
"errmsg": "SUCCESS",
"data": {
"records": [
{
"order_id": "9668294457792204005",
"approval_id": "xxxxxxxx",
"out_approval_id": "xxxxxxxx",
"regulation_id": "xxxxxxxx",
"order_create_time": "2017-03-18 10:00:00",
"begin_charge_time": "2017-03-18 10:00:00",
"finish_time": "xxxxxxxxxxx",
"departure_time": "xxxxxxxx",
"use_car_type": "3",
"car_level": "600",
"city_name": "北京市",
"start_name": "xxxxxx",
"end_name": "xxxxxxxx",
"actual_start_name": "当代城市家园",
"actual_end_name": "北京南站",
"actual_flat": "40.043900000000",
"actual_flng": "116.322556000000",
"actual_tlat": "39.871201000000",
"actual_tlng": "116.386002000000",
"pay_time": "xxxxxxxx",
"order_status": "2",
"pay_type": "xxxxxxx",
"is_invoice": "2",
"call_phone": "13378987666",
"passenger_phone": "13098387654",
"total_price": "20.00",
"actual_price": "20.00",
"refund_price": "5.00",
"company_pay": "10.00",
"personal_pay": "10.00",
"company_real_pay": "10.00",
"personal_real_pay": "10.00",
"company_refund": "5.00",
"personal_refund": "0.00",
"budget_center_id": "xxxxxx",
"scene_type": "4"
},
......
]
}
}