GET api/SWPON_Employee/GetMonthlyAttendance_period?CompanyId={CompanyId}&fromDate={fromDate}&toDate={toDate}&EmployeeId={EmployeeId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
CompanyId

integer

Required

fromDate

string

Required

toDate

string

Required

EmployeeId

integer

Required

Body Parameters

None.

Response Information

Resource Description

SWPON_EmployeeDashboard
NameDescriptionTypeAdditional information
TotalPresent

string

None.

TotalAbsent

string

None.

LateMarks

string

None.

TotalLeave

string

None.

TotalHalfday

string

None.

Response Formats

application/json, text/json

Sample:
{
  "TotalPresent": "sample string 1",
  "TotalAbsent": "sample string 2",
  "LateMarks": "sample string 3",
  "TotalLeave": "sample string 4",
  "TotalHalfday": "sample string 5"
}

application/xml, text/xml

Sample:
<SWPON_EmployeeDashboard xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataLibrary">
  <LateMarks>sample string 3</LateMarks>
  <TotalAbsent>sample string 2</TotalAbsent>
  <TotalHalfday>sample string 5</TotalHalfday>
  <TotalLeave>sample string 4</TotalLeave>
  <TotalPresent>sample string 1</TotalPresent>
</SWPON_EmployeeDashboard>