POST api/TaxInfo

Request Information

URI Parameters

None.

Body Parameters

TaxInfoData
NameDescriptionTypeAdditional information
ID

integer

None.

OrderID

integer

None.

ParcelID

string

None.

TaxLabel

string

None.

TaxYear

string

None.

LandValue

decimal number

None.

Improvements

decimal number

None.

TaxAmount

decimal number

None.

Examptions

decimal number

None.

SEV

decimal number

None.

TotalAssessment

decimal number

None.

Status

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "OrderID": 2,
  "ParcelID": "sample string 3",
  "TaxLabel": "sample string 4",
  "TaxYear": "sample string 5",
  "LandValue": 6.0,
  "Improvements": 7.0,
  "TaxAmount": 8.0,
  "Examptions": 9.0,
  "SEV": 10.0,
  "TotalAssessment": 11.0,
  "Status": "sample string 12"
}

text/xml

Sample:
<TaxInfoData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SAS.DAL">
  <Examptions>9</Examptions>
  <ID>1</ID>
  <Improvements>7</Improvements>
  <LandValue>6</LandValue>
  <OrderID>2</OrderID>
  <ParcelID>sample string 3</ParcelID>
  <SEV>10</SEV>
  <Status>sample string 12</Status>
  <TaxAmount>8</TaxAmount>
  <TaxLabel>sample string 4</TaxLabel>
  <TaxYear>sample string 5</TaxYear>
  <TotalAssessment>11</TotalAssessment>
</TaxInfoData>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'TaxInfoData'.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.