GET api/VirtualAccount?aid={aid}&pageIndex={pageIndex}&pageSize={pageSize}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| aid | string |
Required |
|
| pageIndex | integer |
Required |
|
| pageSize | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
VirtualAccountInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| Balance | string |
None. |
|
| TotalRecord |
总记录数 |
integer |
None. |
| TotalPages |
总页数 |
integer |
None. |
| Logs | Collection of VirtualAccountOperationLogInfo |
None. |
Response Formats
application/json, text/json
Sample:
{
"Balance": "sample string 1",
"TotalRecord": 2,
"TotalPages": 3,
"Logs": [
{
"Type": "sample string 1",
"Amount": "sample string 2",
"Remark": "sample string 3",
"CreatedDate": "sample string 4"
},
{
"Type": "sample string 1",
"Amount": "sample string 2",
"Remark": "sample string 3",
"CreatedDate": "sample string 4"
}
]
}
application/xml, text/xml
Sample:
<VirtualAccountInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/open.wst.com.Areas.Hotel.Controllers">
<Balance>sample string 1</Balance>
<Logs>
<VirtualAccountOperationLogInfo>
<Amount>sample string 2</Amount>
<CreatedDate>sample string 4</CreatedDate>
<Remark>sample string 3</Remark>
<Type>sample string 1</Type>
</VirtualAccountOperationLogInfo>
<VirtualAccountOperationLogInfo>
<Amount>sample string 2</Amount>
<CreatedDate>sample string 4</CreatedDate>
<Remark>sample string 3</Remark>
<Type>sample string 1</Type>
</VirtualAccountOperationLogInfo>
</Logs>
<TotalPages>3</TotalPages>
<TotalRecord>2</TotalRecord>
</VirtualAccountInfo>