GET api/residentsubaccounts
GET: api/residentsubaccounts Get all items
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
ResidentSubaccountViewModel
Collection of ResidentSubaccountViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ResidentSubaccountId |
|
integer |
None. |
| ResidentSubaccountNumber |
|
string |
None. |
| ResidentSubaccountDescription |
|
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"residentSubaccountId": 1,
"residentSubaccountNumber": "sample string 2",
"residentSubaccountDescription": "sample string 3"
},
{
"residentSubaccountId": 1,
"residentSubaccountNumber": "sample string 2",
"residentSubaccountDescription": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfResidentSubaccountViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels">
<ResidentSubaccountViewModel>
<ResidentSubaccountDescription>sample string 3</ResidentSubaccountDescription>
<ResidentSubaccountId>1</ResidentSubaccountId>
<ResidentSubaccountNumber>sample string 2</ResidentSubaccountNumber>
</ResidentSubaccountViewModel>
<ResidentSubaccountViewModel>
<ResidentSubaccountDescription>sample string 3</ResidentSubaccountDescription>
<ResidentSubaccountId>1</ResidentSubaccountId>
<ResidentSubaccountNumber>sample string 2</ResidentSubaccountNumber>
</ResidentSubaccountViewModel>
</ArrayOfResidentSubaccountViewModel>