GET api/TaxInstallment
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of TaxInstallmentData| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| OrderID | integer |
None. |
|
| ParcelID | string |
None. |
|
| TaxYear | string |
None. |
|
| TaxLabel | string |
None. |
|
| Amount | decimal number |
None. |
|
| PayoffAmount | decimal number |
None. |
|
| Status | string |
None. |
|
| DueDate | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"OrderID": 2,
"ParcelID": "sample string 3",
"TaxYear": "sample string 4",
"TaxLabel": "sample string 5",
"Amount": 6.0,
"PayoffAmount": 7.0,
"Status": "sample string 8",
"DueDate": "2026-02-10T16:12:57.3824215-08:00"
},
{
"ID": 1,
"OrderID": 2,
"ParcelID": "sample string 3",
"TaxYear": "sample string 4",
"TaxLabel": "sample string 5",
"Amount": 6.0,
"PayoffAmount": 7.0,
"Status": "sample string 8",
"DueDate": "2026-02-10T16:12:57.3824215-08:00"
}
]
text/xml
Sample:
<ArrayOfTaxInstallmentData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SAS.DAL">
<TaxInstallmentData>
<Amount>6</Amount>
<DueDate>2026-02-10T16:12:57.3824215-08:00</DueDate>
<ID>1</ID>
<OrderID>2</OrderID>
<ParcelID>sample string 3</ParcelID>
<PayoffAmount>7</PayoffAmount>
<Status>sample string 8</Status>
<TaxLabel>sample string 5</TaxLabel>
<TaxYear>sample string 4</TaxYear>
</TaxInstallmentData>
<TaxInstallmentData>
<Amount>6</Amount>
<DueDate>2026-02-10T16:12:57.3824215-08:00</DueDate>
<ID>1</ID>
<OrderID>2</OrderID>
<ParcelID>sample string 3</ParcelID>
<PayoffAmount>7</PayoffAmount>
<Status>sample string 8</Status>
<TaxLabel>sample string 5</TaxLabel>
<TaxYear>sample string 4</TaxYear>
</TaxInstallmentData>
</ArrayOfTaxInstallmentData>