GET api/securitydeposittypes
Get all active security deposit types
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
List of SecurityDepositTypeViewModel
Collection of SecurityDepositTypeViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Id |
integer |
None. |
| Description |
Description |
string |
None. |
| DepositCode |
DepositCode |
string |
None. |
| DepositGLAccountId |
DepositGLAccountId |
integer |
None. |
| DepositGLSubAccountId |
DepositGLSubAccountId |
integer |
None. |
| RefundGLAccountId |
RefundGLAccountId |
integer |
None. |
| RefundGLSubAccount |
RefundGLSubAccount |
integer |
None. |
| InterestRate |
InterestRate |
decimal number |
None. |
| IsActive |
IsActive |
boolean |
None. |
Response Formats
application/json, text/json
[
{
"id": 1,
"description": "sample string 2",
"depositCode": "sample string 3",
"depositGLAccountId": 4,
"depositGLSubAccountId": 5,
"refundGLAccountId": 6,
"refundGLSubAccount": 7,
"interestRate": 8.0,
"isActive": true
},
{
"id": 1,
"description": "sample string 2",
"depositCode": "sample string 3",
"depositGLAccountId": 4,
"depositGLSubAccountId": 5,
"refundGLAccountId": 6,
"refundGLSubAccount": 7,
"interestRate": 8.0,
"isActive": true
}
]
application/xml, text/xml
<ArrayOfSecurityDepositTypeViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels">
<SecurityDepositTypeViewModel>
<DepositCode>sample string 3</DepositCode>
<DepositGLAccountId>4</DepositGLAccountId>
<DepositGLSubAccountId>5</DepositGLSubAccountId>
<Description>sample string 2</Description>
<Id>1</Id>
<InterestRate>8</InterestRate>
<IsActive>true</IsActive>
<RefundGLAccountId>6</RefundGLAccountId>
<RefundGLSubAccount>7</RefundGLSubAccount>
</SecurityDepositTypeViewModel>
<SecurityDepositTypeViewModel>
<DepositCode>sample string 3</DepositCode>
<DepositGLAccountId>4</DepositGLAccountId>
<DepositGLSubAccountId>5</DepositGLSubAccountId>
<Description>sample string 2</Description>
<Id>1</Id>
<InterestRate>8</InterestRate>
<IsActive>true</IsActive>
<RefundGLAccountId>6</RefundGLAccountId>
<RefundGLSubAccount>7</RefundGLSubAccount>
</SecurityDepositTypeViewModel>
</ArrayOfSecurityDepositTypeViewModel>