POST api/UpdateCompanyPropertySubType

Request Information

URI Parameters

None.

Body Parameters

CompanyPropertySubTypeSaveVm
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

Names

Collection of string

None.

Code

string

None.

Order

integer

None.

MasterPropertySubType_Id

integer

None.

CompanyPropertyType_Id

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Name": "sample string 2",
  "Names": [
    "sample string 1",
    "sample string 2"
  ],
  "Code": "sample string 3",
  "Order": 4,
  "MasterPropertySubType_Id": 1,
  "CompanyPropertyType_Id": 1
}

application/xml, text/xml

Sample:
<CompanyPropertySubTypeSaveVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Models.SuperAdminModels">
  <Code>sample string 3</Code>
  <CompanyPropertyType_Id>1</CompanyPropertyType_Id>
  <Id>1</Id>
  <MasterPropertySubType_Id>1</MasterPropertySubType_Id>
  <Name>sample string 2</Name>
  <Names xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </Names>
  <Order>4</Order>
</CompanyPropertySubTypeSaveVm>

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

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.