GET api/TaxInstallment/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
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:14:51.0268379-08:00"
}
text/xml
Sample:
<TaxInstallmentData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SAS.DAL"> <Amount>6</Amount> <DueDate>2026-02-10T16:14:51.0268379-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>