文档
测试

3.9.确认挂号

POST
{{baseURL}}/confirmRegist

接口描述

确认挂号(生成挂号订单)

请求参数

application/json
参数名
类型
描述
必填
patientNumber
string
患者唯一编号
必填
resourceID
string
号源唯一id
必填

响应参数

application/json
参数名
类型
描述
必填
tradeNo
string
订单编号
必填
totalAmount
string
总金额
必填
needPay
string
是否需要付款 [1] 是 [0] 否
必填
memo
string
备注
必填
isNeedConfirm
string
是否需要确认 [1] 是 [0] 否
必填

说明 / 示例

```javascript { "code":"200", "message":"业务逻辑成功", "data":{ "tradeNo":"xxxxx", "totalAmount":"xxxxx", "needPay":"xxxxx", "memo":"xxxxx", "isNeedConfirm":"xxxxx" } } ```