查询预约申请状态

使用预约单号查询申请单状态

请求URL:

https://m-api.lejian.com/open-api/greenChannel/queryOrderByOrderNums?accessToken=ACCESS_TOKEN

请求协议:HTTPS
请求方式:POST
需要签名: 否
URL参数:
参数名 是否必须 类型 说明
accessToken string 当前有效的accessToken
POST参数示例:
  1. {
  2. "orderNums":
  3. [
  4. "201200000000000",
  5. "201200000000001",
  6. "201200000000002"
  7. ]
  8. }
参数名 是否必须 类型 说明
orderNums array 需要查询的订单号,最大不能超过10个
返回示例:
  1. {
  2. "success":"T",
  3. "data":{
  4. "orders":
  5. [
  6. {
  7. "orderNum":"201200000000000",
  8. "status":2,
  9. "type":1,
  10. "city":"浙江省杭州市",
  11. "hospitalName":"解放军杭州疗养院",
  12. "payType":1,
  13. "visitType":1,
  14. "hospitalDepartment":"内科",
  15. "expertName":"王大夫",
  16. "operationType":1,
  17. "outpatientType":1,
  18. "wardType":1,
  19. "createTime":"2017-06-02 06:27:19",
  20. "patientInfo":{
  21. "userName":"张三",
  22. "gender":1,
  23. "mobile":"18668182661",
  24. "idCard":"220102199003077434"
  25. }
  26. }
  27. ]
  28. }
参数名 是否必须 类型 说明
orderNum string 订单号
status int 订单状态
type int 预约类型
city string 城市,精确到市级单位
hospitalId string 医院名称
payType int 费用类型,1:医保、2:自费
visitType int 初/复诊,1:初诊、2:复诊
hospitalDepartment string 科室
expertName string 专家姓名
operationType int 手术类型,1:住院手术、2:门诊手术
outpatientType int 门诊类型,1:普通门诊、2:特需门诊、3:国际医疗
wardType int 病房类型,1:普通、2:特需、3:国际部
createTime string 下单日期
patientInfo PatientInfo 就诊人信息

PatientInfo属性:

参数名 是否必须 类型 说明
userName string 姓名
gender int 性别,0:男、1:女
mobile string 手机号
idCard string 证件号

status对照表

状态 说明
1 待受理
2 协调中
3 待就诊
4 已完结
5 取消中
6 已取消
文档更新时间: 2021-11-17 20:08