POST api/EMPPunch/getTotalPresentAbsent
Request Information
URI Parameters
None.
Body Parameters
EMPPunchPresentAbsent| Name | Description | Type | Additional information |
|---|---|---|---|
| EmployeeId | string |
None. |
|
| FullName | string |
None. |
|
| EmpMobile | string |
None. |
|
| SiteName | string |
None. |
|
| TotalPresent | string |
None. |
|
| TotalAbsent | string |
None. |
|
| Month | string |
None. |
|
| Year | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"EmployeeId": "sample string 1",
"FullName": "sample string 2",
"EmpMobile": "sample string 3",
"SiteName": "sample string 4",
"TotalPresent": "sample string 5",
"TotalAbsent": "sample string 6",
"Month": "sample string 7",
"Year": "sample string 8"
}
application/xml, text/xml
Sample:
<EMPPunchPresentAbsent xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Harshita.Model.EmployeeModal"> <EmpMobile>sample string 3</EmpMobile> <EmployeeId>sample string 1</EmployeeId> <FullName>sample string 2</FullName> <Month>sample string 7</Month> <SiteName>sample string 4</SiteName> <TotalAbsent>sample string 6</TotalAbsent> <TotalPresent>sample string 5</TotalPresent> <Year>sample string 8</Year> </EMPPunchPresentAbsent>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
EMPPunchResponsePresentAbsent| Name | Description | Type | Additional information |
|---|---|---|---|
| StatusCode | integer |
None. |
|
| status | string |
None. |
|
| statusText | string |
None. |
|
| EPA | EMPPunchPresentAbsent |
None. |
Response Formats
application/json, text/json
Sample:
{
"StatusCode": 1,
"status": "sample string 2",
"statusText": "sample string 3",
"EPA": {
"EmployeeId": "sample string 1",
"FullName": "sample string 2",
"EmpMobile": "sample string 3",
"SiteName": "sample string 4",
"TotalPresent": "sample string 5",
"TotalAbsent": "sample string 6",
"Month": "sample string 7",
"Year": "sample string 8"
}
}
application/xml, text/xml
Sample:
<EMPPunchResponsePresentAbsent xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Harshita.Model.EmployeeModal">
<EPA>
<EmpMobile>sample string 3</EmpMobile>
<EmployeeId>sample string 1</EmployeeId>
<FullName>sample string 2</FullName>
<Month>sample string 7</Month>
<SiteName>sample string 4</SiteName>
<TotalAbsent>sample string 6</TotalAbsent>
<TotalPresent>sample string 5</TotalPresent>
<Year>sample string 8</Year>
</EPA>
<StatusCode>1</StatusCode>
<status>sample string 2</status>
<statusText>sample string 3</statusText>
</EMPPunchResponsePresentAbsent>