POST api/UpdateCompanyUnitType

Request Information

URI Parameters

None.

Body Parameters

CompanyUnitTypeSaveVm
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

Names

Collection of string

None.

Code

string

None.

Order

integer

None.

MasterPropertyUnitType_Id

integer

None.

CompanyPropertyType_Id

integer

None.

CreatedDate

date

None.

UpdatedDate

date

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,
  "MasterPropertyUnitType_Id": 1,
  "CompanyPropertyType_Id": 1,
  "CreatedDate": "2025-12-07T15:23:15.5180584Z",
  "UpdatedDate": "2025-12-07T15:23:15.5180584Z"
}

application/xml, text/xml

Sample:
<CompanyUnitTypeSaveVm 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>
  <CreatedDate>2025-12-07T20:53:15.5180584+05:30</CreatedDate>
  <Id>1</Id>
  <MasterPropertyUnitType_Id>1</MasterPropertyUnitType_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>
  <UpdatedDate>2025-12-07T20:53:15.5180584+05:30</UpdatedDate>
</CompanyUnitTypeSaveVm>

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

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.