POST api/order/getorderstagevalue

Request Information

URI Parameters

None.

Body Parameters

OrderStage
NameDescriptionTypeAdditional information
OrderStageId

integer

None.

OrderId

integer

None.

StageMasterId

integer

None.

EmployeeId

integer

None.

Date

date

None.

Remark

string

None.

IsClear

boolean

None.

fileupload

string

None.

Description

string

None.

InvoiceId

string

None.

Request Formats

application/json, text/json

Sample:
{
  "OrderStageId": 1,
  "OrderId": 1,
  "StageMasterId": 1,
  "EmployeeId": 1,
  "Date": "2025-12-06T09:57:38.7907021+05:30",
  "Remark": "sample string 2",
  "IsClear": true,
  "fileupload": "sample string 3",
  "Description": "sample string 4",
  "InvoiceId": "sample string 5"
}

application/xml, text/xml

Sample:
<OrderStage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SolarDichachi">
  <Date>2025-12-06T09:57:38.7907021+05:30</Date>
  <Description>sample string 4</Description>
  <EmployeeId>1</EmployeeId>
  <InvoiceId>sample string 5</InvoiceId>
  <IsClear>true</IsClear>
  <OrderId>1</OrderId>
  <OrderStageId>1</OrderStageId>
  <Remark>sample string 2</Remark>
  <StageMasterId>1</StageMasterId>
  <fileupload>sample string 3</fileupload>
</OrderStage>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Dictionary of string [key] and Object [value]

Response Formats

application/json, text/json

Sample:
{
  "sample string 1": {},
  "sample string 3": {}
}

application/xml, text/xml

Sample:
<ArrayOfKeyValueOfstringanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <KeyValueOfstringanyType>
    <Key>sample string 1</Key>
    <Value />
  </KeyValueOfstringanyType>
  <KeyValueOfstringanyType>
    <Key>sample string 3</Key>
    <Value />
  </KeyValueOfstringanyType>
</ArrayOfKeyValueOfstringanyType>