1、回单服务

请求URL
https://api.mytijian.com/open-api/V2/ws/order/orderDone?accessToken=ACCESS_TOKEN&nonce=NONCE&sign=SIGN
请求协议:HTTPS
请求方式:POST
需要签名: 是
URL参数:

参数名 是否必须 类型 说明
accessToken string 当前有效的accessToken
nonce string 当前有效的nonce
sign string 数据sign值
POST参数示例
  1. {
  2. "accomplishOrderParams":[
  3. {
  4. "orderNum":"20180703141944364002053",
  5. "absent":0,
  6. "name":"黄伟",
  7. "examDate":1530590400000,
  8. "mobile":"11811811811",
  9. "age":29,
  10. "gender":1,
  11. "marriageStatus":"未婚",
  12. "examCompany":"个人改",
  13. "accomplishExamItemList":[
  14. {
  15. "name":"外科(男)",
  16. "hisId":"000007",
  17. "price":90,
  18. "refuseStatus":"2"
  19. },
  20. {
  21. "name":"眼科检查1",
  22. "hisId":"000012",
  23. "price":210,
  24. "refuseStatus":"2"
  25. }
  26. ]
  27. }
  28. ]
  29. }
请求参数说明:
参数名 是否必须 类型 说明
accomplishOrderParams List(AccomplishOrderParam) 回单对象集合
AccomplishOrderParam参数说明:
参数名 是否必须 类型 说明
orderNum String 订单号
status String 订单状态,是否读取
absent String 是否到检,his间会有差异:1-未到检,0-到检
name String 体检人姓名
examDate Date 体检时间
mobile String 手机号
age String 年龄
gender String 性别
marriageStatus String 婚姻状态
examCompany String 体检单位
department String 部门
workno String 工号
offlinePayAmount double 现场加项目付款,精确到分
accomplishExamItemList List(AccomplishOrderExamItemParam) 体检单项信息
dynamicAttributes Map(String, Object) 动态数据
AccomplishOrderExamItemParam参数说明:
参数名 是否必须 类型 说明
name String 项目名称
hisItemId String 医院项目ID
price Integer 项目体检价格
refuseStatus String 是否拒检:1—拒检,2—已检

正确返回示例:

  1. {
  2. "success":"T",
  3. "msg":"success",
  4. "data":["20180703141944364002053"]
  5. }
返回参数说明:
参数名 类型 说明
success String T成功,F失败
errCode String 错误码,只有失败的时候才有
msg String 描述消息
data List(String) 订单号集合
文档更新时间: 2022-03-03 14:26