GET api/AdminApi?page={page}&length={length}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| page | integer |
Required |
|
| length | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of LookupAccountViewModal| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Username | string |
None. |
|
| Password | string |
None. |
|
| SID | string |
None. |
|
| Token | string |
None. |
|
| Status | boolean |
None. |
|
| LoginId | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Username": "sample string 2",
"Password": "sample string 3",
"SID": "sample string 4",
"Token": "sample string 5",
"Status": true,
"LoginId": 7
},
{
"Id": 1,
"Username": "sample string 2",
"Password": "sample string 3",
"SID": "sample string 4",
"Token": "sample string 5",
"Status": true,
"LoginId": 7
}
]
application/xml, text/xml
Sample:
<ArrayOfLookupAccountViewModal xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SMS.DataModels">
<LookupAccountViewModal>
<Id>1</Id>
<LoginId>7</LoginId>
<Password>sample string 3</Password>
<SID>sample string 4</SID>
<Status>true</Status>
<Token>sample string 5</Token>
<Username>sample string 2</Username>
</LookupAccountViewModal>
<LookupAccountViewModal>
<Id>1</Id>
<LoginId>7</LoginId>
<Password>sample string 3</Password>
<SID>sample string 4</SID>
<Status>true</Status>
<Token>sample string 5</Token>
<Username>sample string 2</Username>
</LookupAccountViewModal>
</ArrayOfLookupAccountViewModal>