使用订单号批量查询报告解读订单

请求地址: https://m-api.lejian.com/open-api/V2/order/report/queryByOrderNums?accessToken=ACCESS_TOKEN
请求协议:HTTPS
请求方式:POST
需要签名:否
URL参数:
参数名 是否必须 类型 说明
accessToken string 当前有效的accessToken
POST参数示例
  1. {
  2. "unscrambleOrderNums":
  3. [
  4. 12345,
  5. 12346,
  6. 12347
  7. ]
  8. }
参数名 是否必须 类型 说明
unscrambleOrderNums array 需要查询的订单号,最大不能超过20个
返回示例:
  1. {
  2. "success":"T",
  3. "data":{
  4. "orders":[
  5. {
  6. "unscrambleOrderNum":12345
  7. "applyMobile":"18668182661",
  8. "applyName":"张三",
  9. "applyTime":"2023-02-28 10:00-12:00",
  10. "businessId":1,
  11. "status":2
  12. }
  13. ]
  14. },
  15. "msg":"success"
  16. }

返回参数说明:

通俗易懂的参数不再说明

字段 类型 说明
unscrambleOrderNum int 预约订单号
businessId int 业务id,乐荐提供
applyMobile string 预约人手机号码
applyName string 预约人姓名
idCard string 预约人证件号
applyTime string 预约报告解读日期
status integer 预约状态

备注:

文档更新时间: 2023-02-21 16:49