POST CustomERP/GetProject

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ProjectsDetails
NameDescriptionTypeAdditional information
Error

string

None.

StatusCode

HttpStatusCode

None.

Status

string

None.

Projects

Collection of Projects

None.

Response Formats

application/json, text/json

Sample:
{
  "Error": "sample string 1",
  "StatusCode": 100,
  "Status": "sample string 2",
  "Projects": [
    {
      "ProjectID": "sample string 1",
      "ProjectNumber": "sample string 2",
      "ProjectName": "sample string 3"
    },
    {
      "ProjectID": "sample string 1",
      "ProjectNumber": "sample string 2",
      "ProjectName": "sample string 3"
    }
  ]
}

application/xml, text/xml

Sample:
<ProjectsDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CustomERPAPI.Models">
  <Error>sample string 1</Error>
  <Projects>
    <Projects>
      <ProjectID>sample string 1</ProjectID>
      <ProjectName>sample string 3</ProjectName>
      <ProjectNumber>sample string 2</ProjectNumber>
    </Projects>
    <Projects>
      <ProjectID>sample string 1</ProjectID>
      <ProjectName>sample string 3</ProjectName>
      <ProjectNumber>sample string 2</ProjectNumber>
    </Projects>
  </Projects>
  <Status>sample string 2</Status>
  <StatusCode>Continue</StatusCode>
</ProjectsDetails>