GET api/IncomeBracket?FiscalYear={FiscalYear}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| FiscalYear | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of IncomeBracket| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Income_Id | integer |
None. |
|
| FamilySize | integer |
None. |
|
| Duration | string |
None. |
|
| ReducedAmount | decimal number |
None. |
|
| FreeAmount | decimal number |
None. |
|
| CloneObject | Object |
None. |
|
| Dirty | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Income_Id": 2,
"FamilySize": 3,
"Duration": "sample string 4",
"ReducedAmount": 5.0,
"FreeAmount": 6.0,
"CloneObject": {
"Id": 0,
"Income_Id": 0,
"FamilySize": 0,
"Duration": null,
"ReducedAmount": 0.0,
"FreeAmount": 0.0,
"CloneObject": null,
"Dirty": false
},
"Dirty": true
},
{
"Id": 1,
"Income_Id": 2,
"FamilySize": 3,
"Duration": "sample string 4",
"ReducedAmount": 5.0,
"FreeAmount": 6.0,
"CloneObject": {
"Id": 0,
"Income_Id": 0,
"FamilySize": 0,
"Duration": null,
"ReducedAmount": 0.0,
"FreeAmount": 0.0,
"CloneObject": null,
"Dirty": false
},
"Dirty": true
}
]
application/xml, text/xml
Sample:
<ArrayOfIncomeBracket xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MP.BaseObject">
<IncomeBracket>
<Duration>sample string 4</Duration>
<FamilySize>3</FamilySize>
<FreeAmount>6</FreeAmount>
<Id>1</Id>
<Income_Id>2</Income_Id>
<ReducedAmount>5</ReducedAmount>
</IncomeBracket>
<IncomeBracket>
<Duration>sample string 4</Duration>
<FamilySize>3</FamilySize>
<FreeAmount>6</FreeAmount>
<Id>1</Id>
<Income_Id>2</Income_Id>
<ReducedAmount>5</ReducedAmount>
</IncomeBracket>
</ArrayOfIncomeBracket>