POST api/EmployeeLeave/GetEmployeeHeader
Request Information
URI Parameters
None.
Body Parameters
EmployeeHeaderInput| Name | Description | Type | Additional information |
|---|---|---|---|
| EMP_ID | integer |
None. |
|
| EMP_FIRST_NAME | string |
None. |
|
| EMP_LAST_NAME | string |
None. |
|
| EMP_NAME | string |
None. |
|
| EMP_DPMT | integer |
None. |
|
| EMP_ORG | integer |
None. |
|
| EMP_DSG | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"EMP_ID": 1,
"EMP_FIRST_NAME": "sample string 1",
"EMP_LAST_NAME": "sample string 2",
"EMP_NAME": "sample string 3",
"EMP_DPMT": 1,
"EMP_ORG": 1,
"EMP_DSG": 1
}
application/xml, text/xml
Sample:
<EmployeeHeaderInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZealitAPI.Models"> <EMP_DPMT>1</EMP_DPMT> <EMP_DSG>1</EMP_DSG> <EMP_FIRST_NAME>sample string 1</EMP_FIRST_NAME> <EMP_ID>1</EMP_ID> <EMP_LAST_NAME>sample string 2</EMP_LAST_NAME> <EMP_NAME>sample string 3</EMP_NAME> <EMP_ORG>1</EMP_ORG> </EmployeeHeaderInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
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. |