POST api/PropertySaleJudgements
Request Information
URI Parameters
None.
Body Parameters
Judgements| Name | Description | Type | Additional information |
|---|---|---|---|
| judgements | Collection of shortPropertySaleJudgement |
None. |
Request Formats
application/json, text/json
Sample:
{
"judgements": [
{
"id": 1,
"propertySaleId": 2,
"amount": 3.0,
"notes": "sample string 4"
},
{
"id": 1,
"propertySaleId": 2,
"amount": 3.0,
"notes": "sample string 4"
}
]
}
application/xml, text/xml
Sample:
<PropertySaleJudgementsController.Judgements xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HamiltonCountyPublic.Controllers">
<judgements xmlns:d2p1="http://schemas.datacontract.org/2004/07/HamiltonCountyPublic.DataClasses">
<d2p1:PropertySaleJudgements.shortPropertySaleJudgement>
<d2p1:amount>3</d2p1:amount>
<d2p1:id>1</d2p1:id>
<d2p1:notes>sample string 4</d2p1:notes>
<d2p1:propertySaleId>2</d2p1:propertySaleId>
</d2p1:PropertySaleJudgements.shortPropertySaleJudgement>
<d2p1:PropertySaleJudgements.shortPropertySaleJudgement>
<d2p1:amount>3</d2p1:amount>
<d2p1:id>1</d2p1:id>
<d2p1:notes>sample string 4</d2p1:notes>
<d2p1:propertySaleId>2</d2p1:propertySaleId>
</d2p1:PropertySaleJudgements.shortPropertySaleJudgement>
</judgements>
</PropertySaleJudgementsController.Judgements>
application/x-www-form-urlencoded
Sample:
Sample not available.
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. |