提交预约申请

预约申请包含:门诊预约、专业陪诊预约、手术安排预约、住院安排预约。

请求URL:

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

请求协议:HTTPS
请求方式:POST
需要签名: 否
URL参数:
参数名 是否必须 类型 说明
accessToken string 当前有效的accessToken
POST参数示例

1.门诊预约

  1. {
  2. "type":1,
  3. "city":"浙江省杭州市",
  4. "hospitalName":"解放军杭州疗养院",
  5. "payType":"1",
  6. "visitType":1,
  7. "hospitalDepartment":"内科",
  8. "expertName":"王大夫",
  9. "startDate":"2021-11-16",
  10. "endDate":"2021-11-18",
  11. "patientInfo":{
  12. "userName":"张三",
  13. "gender":1,
  14. "married":1,
  15. "birthDay":"2017-09-04",
  16. "mobile":"18668182661",
  17. "idType":"1",
  18. "idCard":"220102199003077434",
  19. "medicalInsuranceNo":"220102199003077434",
  20. "medicalInsuranceMobile":"18668182661"
  21. }
  22. }

2.专业陪诊预约

  1. {
  2. "type":2,
  3. "city":"浙江省杭州市",
  4. "hospitalName":"解放军杭州疗养院",
  5. "payType":"1",
  6. "visitType":1,
  7. "hospitalDepartment":"内科",
  8. "startDate":"2021-11-16",
  9. "endDate":"2021-11-18",
  10. "patientInfo":{
  11. "userName":"张三",
  12. "gender":1,
  13. "married":1,
  14. "birthDay":"2017-09-04",
  15. "mobile":"18668182661",
  16. "idType":"1",
  17. "idCard":"220102199003077434",
  18. "medicalInsuranceNo":"220102199003077434",
  19. "medicalInsuranceMobile":"18668182661"
  20. }
  21. }

3.手术安排预约

  1. {
  2. "type":3,
  3. "city":"浙江省杭州市",
  4. "hospitalName":"解放军杭州疗养院",
  5. "payType":"1",
  6. "visitType":1,
  7. "hospitalDepartment":"内科",
  8. "expertName":"王大夫",
  9. "operationType":1,
  10. "outpatientType":1,
  11. "wardType":1,
  12. "startDate":"2021-11-16",
  13. "endDate":"2021-11-18",
  14. "patientInfo":{
  15. "userName":"张三",
  16. "gender":1,
  17. "married":1,
  18. "birthDay":"2017-09-04",
  19. "mobile":"18668182661",
  20. "idType":"1",
  21. "idCard":"220102199003077434",
  22. "medicalInsuranceNo":"220102199003077434",
  23. "medicalInsuranceMobile":"18668182661"
  24. }
  25. }

4.住院安排预约

  1. {
  2. "type":4,
  3. "city":"浙江省杭州市",
  4. "hospitalName":"解放军杭州疗养院",
  5. "payType":"1",
  6. "visitType":1,
  7. "hospitalDepartment":"内科",
  8. "expertName":"王大夫",
  9. "wardNotice":true,
  10. "startDate":"2021-11-16",
  11. "endDate":"2021-11-18",
  12. "patientInfo":{
  13. "userName":"张三",
  14. "gender":1,
  15. "married":1,
  16. "birthDay":"2017-09-04",
  17. "mobile":"18668182661",
  18. "idType":"1",
  19. "idCard":"220102199003077434",
  20. "medicalInsuranceNo":"220102199003077434",
  21. "medicalInsuranceMobile":"18668182661"
  22. }
  23. }
参数名 是否必须 类型 说明
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:国际部
wardNotice boolean 是否开具住院通知单,true:开具、false:未开具
startDate string 最早日期
endDate string 最晚日期
patientInfo PatientInfo 就诊人信息

PatientInfo属性:

参数名 是否必须 类型 说明
userName string 姓名
gender int 性别,0:男、1:女
married int 婚否,0:未婚、1:已婚
birthDay string 出生日期
mobile string 手机号
idType int 证件类型,1:身份证
idCard string 证件号
medicalInsuranceNo string 医保卡号,使用医保时必须传
medicalInsuranceMobile string 医保卡绑定手机号

type含义:

属性值 含义
1 门诊预约
2 专业陪诊预约
3 手术安排预约
4 住院安排预约

返回示例:

正确时返回:

  1. {
  2. "success":"T",
  3. "data":{
  4. "orderNum":"20170822194904339001236"
  5. },
  6. "msg":"success"
  7. }

返回参数说明:

参数名 类型 说明
orderNum String 预约单号
  1. {
  2. "success":"F",
  3. "errCode":"201006",
  4. "msg":"order fail"
  5. }
文档更新时间: 2021-11-17 19:55