POST api/purchase/changepurchasestage

Request Information

URI Parameters

None.

Body Parameters

PurchaseStage
NameDescriptionTypeAdditional information
PurchaseStageId

integer

None.

PurchaseId

integer

None.

StageMasterId

integer

None.

EmployeeId

integer

None.

Date

date

None.

Remark

string

None.

IsClear

boolean

None.

fileupload

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PurchaseStageId": 1,
  "PurchaseId": 1,
  "StageMasterId": 1,
  "EmployeeId": 1,
  "Date": "2025-12-06T09:59:34.0835918+05:30",
  "Remark": "sample string 2",
  "IsClear": true,
  "fileupload": "sample string 3"
}

application/xml, text/xml

Sample:
<PurchaseStage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SolarDichachi">
  <Date>2025-12-06T09:59:34.0835918+05:30</Date>
  <EmployeeId>1</EmployeeId>
  <IsClear>true</IsClear>
  <PurchaseId>1</PurchaseId>
  <PurchaseStageId>1</PurchaseStageId>
  <Remark>sample string 2</Remark>
  <StageMasterId>1</StageMasterId>
  <fileupload>sample string 3</fileupload>
</PurchaseStage>

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>