POST CustomERP/GetProjectStage

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ProjectsStageDetails
NameDescriptionTypeAdditional information
Error

string

None.

StatusCode

HttpStatusCode

None.

Status

string

None.

ProjectsStage

Collection of ProjectsStage

None.

Response Formats

application/json, text/json

Sample:
{
  "Error": "sample string 1",
  "StatusCode": 100,
  "Status": "sample string 2",
  "ProjectsStage": [
    {
      "ProjectID": "sample string 1",
      "StageName": "sample string 2",
      "StageId": "sample string 3",
      "DurationFrom": "sample string 4",
      "DurationTo": "sample string 5"
    },
    {
      "ProjectID": "sample string 1",
      "StageName": "sample string 2",
      "StageId": "sample string 3",
      "DurationFrom": "sample string 4",
      "DurationTo": "sample string 5"
    }
  ]
}

application/xml, text/xml

Sample:
<ProjectsStageDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CustomERPAPI.Models">
  <Error>sample string 1</Error>
  <ProjectsStage>
    <ProjectsStage>
      <DurationFrom>sample string 4</DurationFrom>
      <DurationTo>sample string 5</DurationTo>
      <ProjectID>sample string 1</ProjectID>
      <StageId>sample string 3</StageId>
      <StageName>sample string 2</StageName>
    </ProjectsStage>
    <ProjectsStage>
      <DurationFrom>sample string 4</DurationFrom>
      <DurationTo>sample string 5</DurationTo>
      <ProjectID>sample string 1</ProjectID>
      <StageId>sample string 3</StageId>
      <StageName>sample string 2</StageName>
    </ProjectsStage>
  </ProjectsStage>
  <Status>sample string 2</Status>
  <StatusCode>Continue</StatusCode>
</ProjectsStageDetails>