POST api/CompanyInventoryStage/Create

Request Information

URI Parameters

None.

Body Parameters

SaveCompanyInventoryStageVm
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

Order

integer

None.

IsFinalStage

boolean

None.

IsFirstStage

boolean

None.

IsInactiveStage

boolean

None.

CreatedDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Name": "sample string 1",
  "Order": 2,
  "IsFinalStage": true,
  "IsFirstStage": true,
  "IsInactiveStage": true,
  "CreatedDate": "2025-12-07T14:37:40.6826128Z"
}

application/xml, text/xml

Sample:
<SaveCompanyInventoryStageVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Models.InventoryModels">
  <CreatedDate>2025-12-07T20:07:40.6826128+05:30</CreatedDate>
  <Id>1</Id>
  <IsFinalStage>true</IsFinalStage>
  <IsFirstStage>true</IsFirstStage>
  <IsInactiveStage>true</IsInactiveStage>
  <Name>sample string 1</Name>
  <Order>2</Order>
</SaveCompanyInventoryStageVm>

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

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.