PUT api/TaxInstallment
Request Information
URI Parameters
None.
Body Parameters
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. |
Request 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:13:24.4457159-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:13:24.4457159-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>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |