POST api/v1/ProjectEmployeeAddUpdate

Request Information

URI Parameters

None.

Body Parameters

ProjectEmployeeSaveInput
NameDescriptionTypeAdditional information
Mode

string

None.

ProjectEmpID

integer

None.

ProjectID

integer

None.

UserID

integer

None.

EmpID

integer

None.

IsLead

boolean

None.

AllocationPer

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "Mode": "sample string 1",
  "ProjectEmpID": 2,
  "ProjectID": 3,
  "UserID": 4,
  "EmpID": 5,
  "IsLead": true,
  "AllocationPer": 7.0
}

application/xml, text/xml

Sample:
<ProjectEmployeeSaveInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <AllocationPer>7</AllocationPer>
  <EmpID>5</EmpID>
  <IsLead>true</IsLead>
  <Mode>sample string 1</Mode>
  <ProjectEmpID>2</ProjectEmpID>
  <ProjectID>3</ProjectID>
  <UserID>4</UserID>
</ProjectEmployeeSaveInput>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ProjectEmployeeSaveInput'.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.