GET api/v1/SelfCheckin/SaveQRCodeResult?code={code}&qrcode={qrcode}&key={key}
保存结果(这个只能商城那边调用js
请求信息(Request)
URI 参数
| 名称 | 描述 | 类型 | 备注 |
|---|---|---|---|
| code |
code |
string |
Required |
| qrcode |
二维码编码 |
string |
Required |
| key |
key |
string |
Required |
Body 参数
None.
响应信息(Response)
资源描述
RequestResultOfWxUserQRCodeResultDto| 名称 | 描述 | 类型 | 备注 |
|---|---|---|---|
| Data | WxUserQRCodeResultDto |
None. |
|
| Status |
状态(0:成功,1:失败) |
integer |
None. |
| Message |
导致失败的相关消息 |
string |
None. |
| Total |
集合总数,用于分页时使用 |
integer |
None. |
响应格式
application/json, text/json
Sample:
{
"Data": {
"IsSuccess": true,
"Code": 2,
"Msg": "sample string 3"
},
"Status": 1,
"Message": "sample string 2",
"Total": 3
}
application/xml, text/xml
Sample:
<RequestResultOfWxUserQRCodeResultDto6NgmDdgv xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WLife.Application">
<Message>sample string 2</Message>
<Status>1</Status>
<Total>3</Total>
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/WLife.Application.DTOs">
<d2p1:Code>2</d2p1:Code>
<d2p1:IsSuccess>true</d2p1:IsSuccess>
<d2p1:Msg>sample string 3</d2p1:Msg>
</Data>
</RequestResultOfWxUserQRCodeResultDto6NgmDdgv>