GET api/AdminApi?loginId={loginId}&page={page}&length={length}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| loginId | integer |
Required |
|
| page | integer |
Required |
|
| length | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of BalanceList| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Balance | decimal number |
None. |
|
| RemainingBalance | decimal number |
None. |
|
| Comments | string |
None. |
|
| DateTime | string |
None. |
|
| Total | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Balance": 2.1,
"RemainingBalance": 3.1,
"Comments": "sample string 4",
"DateTime": "sample string 5",
"Total": 6
},
{
"Id": 1,
"Balance": 2.1,
"RemainingBalance": 3.1,
"Comments": "sample string 4",
"DateTime": "sample string 5",
"Total": 6
}
]
application/xml, text/xml
Sample:
<ArrayOfBalanceList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SMS.DataModels">
<BalanceList>
<Balance>2.1</Balance>
<Comments>sample string 4</Comments>
<DateTime>sample string 5</DateTime>
<Id>1</Id>
<RemainingBalance>3.1</RemainingBalance>
<Total>6</Total>
</BalanceList>
<BalanceList>
<Balance>2.1</Balance>
<Comments>sample string 4</Comments>
<DateTime>sample string 5</DateTime>
<Id>1</Id>
<RemainingBalance>3.1</RemainingBalance>
<Total>6</Total>
</BalanceList>
</ArrayOfBalanceList>