POST api/project/changeProjectstage

Request Information

URI Parameters

None.

Body Parameters

ProjectStage
NameDescriptionTypeAdditional information
ProjectStageId

integer

None.

ProjectId

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:
{
  "ProjectStageId": 1,
  "ProjectId": 1,
  "StageMasterId": 1,
  "EmployeeId": 1,
  "Date": "2025-12-06T09:56:46.6666582+05:30",
  "Remark": "sample string 2",
  "IsClear": true,
  "fileupload": "sample string 3"
}

application/xml, text/xml

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

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>