POST api/view/project

Request Information

URI Parameters

None.

Body Parameters

ViewProject
NameDescriptionTypeAdditional information
ProjectId

integer

None.

ProjectName

string

None.

ProjectArea

string

None.

CustomerId

integer

None.

CreatedBy

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ProjectId": 1,
  "ProjectName": "sample string 1",
  "ProjectArea": "sample string 2",
  "CustomerId": 1,
  "CreatedBy": 1
}

application/xml, text/xml

Sample:
<ViewProject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/working_sample_mvc_api.Models">
  <CreatedBy>1</CreatedBy>
  <CustomerId>1</CustomerId>
  <ProjectArea>sample string 2</ProjectArea>
  <ProjectId>1</ProjectId>
  <ProjectName>sample string 1</ProjectName>
</ViewProject>

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.