POST api/update/project

Request Information

URI Parameters

None.

Body Parameters

UpdateProject
NameDescriptionTypeAdditional information
ProjectId

integer

None.

ProjectName

string

None.

ProjectArea

string

None.

CustomerId

integer

None.

ProjStartDate

date

None.

ProjEndDate

date

None.

ModifiedBy

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ProjectId": 1,
  "ProjectName": "sample string 2",
  "ProjectArea": "sample string 3",
  "CustomerId": 4,
  "ProjStartDate": "2025-12-05T21:06:34.0106572-08:00",
  "ProjEndDate": "2025-12-05T21:06:34.0106572-08:00",
  "ModifiedBy": "sample string 7"
}

application/xml, text/xml

Sample:
<UpdateProject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/working_sample_mvc_api.Models">
  <CustomerId>4</CustomerId>
  <ModifiedBy>sample string 7</ModifiedBy>
  <ProjEndDate>2025-12-05T21:06:34.0106572-08:00</ProjEndDate>
  <ProjStartDate>2025-12-05T21:06:34.0106572-08:00</ProjStartDate>
  <ProjectArea>sample string 3</ProjectArea>
  <ProjectId>1</ProjectId>
  <ProjectName>sample string 2</ProjectName>
</UpdateProject>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.