POST api/UpdateCounty

Request Information

URI Parameters

None.

Body Parameters

PostCountyVm
NameDescriptionTypeAdditional information
Id

integer

None.

Date

string

None.

CountyName

string

None.

CaseId

string

None.

CaseDate

string

None.

BankName

string

None.

City

string

None.

DefendantName

string

None.

Address

string

None.

ZipCode

string

None.

RealValueString

string

None.

RealValue

decimal number

None.

HighValuationString

string

None.

HighValuationValue

decimal number

None.

AcquisitionRatio

decimal number

None.

LowValuationString

string

None.

LowValuationValue

decimal number

None.

AverageApproximateValue

decimal number

None.

AverageEstimateValue

decimal number

None.

DefendantType

string

None.

CaseType

string

None.

DocumentRefLink

string

None.

IsSynchronised

boolean

None.

AddressReferenceLink

string

None.

CompanyId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Date": "sample string 2",
  "CountyName": "sample string 3",
  "CaseId": "sample string 4",
  "CaseDate": "sample string 5",
  "BankName": "sample string 6",
  "City": "sample string 7",
  "DefendantName": "sample string 8",
  "Address": "sample string 9",
  "ZipCode": "sample string 10",
  "RealValueString": "sample string 11",
  "RealValue": 12.0,
  "HighValuationString": "sample string 13",
  "HighValuationValue": 14.0,
  "AcquisitionRatio": 15.0,
  "LowValuationString": "sample string 16",
  "LowValuationValue": 17.0,
  "AverageApproximateValue": 18.0,
  "AverageEstimateValue": 19.0,
  "DefendantType": "sample string 20",
  "CaseType": "sample string 21",
  "DocumentRefLink": "sample string 22",
  "IsSynchronised": true,
  "AddressReferenceLink": "sample string 24",
  "CompanyId": 25
}

application/xml, text/xml

Sample:
<PostCountyVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Services.County">
  <AcquisitionRatio>15</AcquisitionRatio>
  <Address>sample string 9</Address>
  <AddressReferenceLink>sample string 24</AddressReferenceLink>
  <AverageApproximateValue>18</AverageApproximateValue>
  <AverageEstimateValue>19</AverageEstimateValue>
  <BankName>sample string 6</BankName>
  <CaseDate>sample string 5</CaseDate>
  <CaseId>sample string 4</CaseId>
  <CaseType>sample string 21</CaseType>
  <City>sample string 7</City>
  <CompanyId>25</CompanyId>
  <CountyName>sample string 3</CountyName>
  <Date>sample string 2</Date>
  <DefendantName>sample string 8</DefendantName>
  <DefendantType>sample string 20</DefendantType>
  <DocumentRefLink>sample string 22</DocumentRefLink>
  <HighValuationString>sample string 13</HighValuationString>
  <HighValuationValue>14</HighValuationValue>
  <Id>1</Id>
  <IsSynchronised>true</IsSynchronised>
  <LowValuationString>sample string 16</LowValuationString>
  <LowValuationValue>17</LowValuationValue>
  <RealValue>12</RealValue>
  <RealValueString>sample string 11</RealValueString>
  <ZipCode>sample string 10</ZipCode>
</PostCountyVm>

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 'PostCountyVm'.

Response Information

Resource Description

Response
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

Description

string

None.

Data

Object

None.

Count

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Message": "sample string 2",
  "Description": "sample string 3",
  "Data": {},
  "Count": 5
}

application/xml, text/xml

Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Models">
  <Count>5</Count>
  <Data />
  <Description>sample string 3</Description>
  <Message>sample string 2</Message>
  <Success>true</Success>
</Response>