POST api/v1/ProjectStageEmployeeAddUpdate
Request Information
URI Parameters
None.
Body Parameters
ProjectEmployeeSaveInput| Name | Description | Type | Additional information |
|---|---|---|---|
| Mode | string |
None. |
|
| ProjectEmpStageID | integer |
None. |
|
| ProjStageID | integer |
None. |
|
| ProjectID | integer |
None. |
|
| UserID | integer |
None. |
|
| EmpID | integer |
None. |
|
| IsLead | boolean |
None. |
|
| StartDate | date |
None. |
|
| EndDate | date |
None. |
|
| AllocationPer | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"Mode": "sample string 1",
"ProjectEmpStageID": 2,
"ProjStageID": 3,
"ProjectID": 4,
"UserID": 5,
"EmpID": 6,
"IsLead": true,
"StartDate": "2026-04-14T10:42:56.2743583+05:30",
"EndDate": "2026-04-14T10:42:56.2743583+05:30",
"AllocationPer": 10.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>10</AllocationPer> <EmpID>6</EmpID> <EndDate>2026-04-14T10:42:56.2743583+05:30</EndDate> <IsLead>true</IsLead> <Mode>sample string 1</Mode> <ProjStageID>3</ProjStageID> <ProjectEmpStageID>2</ProjectEmpStageID> <ProjectID>4</ProjectID> <StartDate>2026-04-14T10:42:56.2743583+05:30</StartDate> <UserID>5</UserID> </ProjectEmployeeSaveInput>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |