GET api/{area}/Checkout?access_token={access_token}&asid={asid}&pid={pid}
结账预检查
Request Information
Body Parameters
None.
Response Information
Resource Description
结账预检查
Collection of PreCheckResult| Name | Description | Type | Additional information |
|---|---|---|---|
| IsPassed |
是否通过 |
boolean |
None. |
| PreCheckName |
检查名称 |
string |
None. |
| PreCheckId |
用于标识检查类别 |
integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"is_passed": true,
"pre_check_name": "sample string 2",
"pre_check_id": 3
},
{
"is_passed": true,
"pre_check_name": "sample string 2",
"pre_check_id": 3
}
]
application/xml, text/xml
Sample:
<ArrayOfPreCheckResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAccEngine.BLL.Checkout.DTO">
<PreCheckResult>
<IsPassed>true</IsPassed>
<PreCheckId>3</PreCheckId>
<PreCheckName>sample string 2</PreCheckName>
</PreCheckResult>
<PreCheckResult>
<IsPassed>true</IsPassed>
<PreCheckId>3</PreCheckId>
<PreCheckName>sample string 2</PreCheckName>
</PreCheckResult>
</ArrayOfPreCheckResult>