GET api/EmployeeAttendance
Request Information
URI Parameters
None.
Body Parameters
EmployeeAttendance| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | integer |
None. |
|
| Month | integer |
None. |
|
| Year | integer |
None. |
|
| dtfrom | string |
None. |
|
| Holidaydescription | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": 1,
"Month": 2,
"Year": 3,
"dtfrom": "sample string 4",
"Holidaydescription": "sample string 5"
}
application/xml, text/xml
Sample:
<EmployeeAttendance xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiForAndroid.Models"> <Holidaydescription>sample string 5</Holidaydescription> <Month>2</Month> <UserId>1</UserId> <Year>3</Year> <dtfrom>sample string 4</dtfrom> </EmployeeAttendance>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of EmployeeAttendance| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | integer |
None. |
|
| Month | integer |
None. |
|
| Year | integer |
None. |
|
| dtfrom | string |
None. |
|
| Holidaydescription | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"UserId": 1,
"Month": 2,
"Year": 3,
"dtfrom": "sample string 4",
"Holidaydescription": "sample string 5"
},
{
"UserId": 1,
"Month": 2,
"Year": 3,
"dtfrom": "sample string 4",
"Holidaydescription": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfEmployeeAttendance xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiForAndroid.Models">
<EmployeeAttendance>
<Holidaydescription>sample string 5</Holidaydescription>
<Month>2</Month>
<UserId>1</UserId>
<Year>3</Year>
<dtfrom>sample string 4</dtfrom>
</EmployeeAttendance>
<EmployeeAttendance>
<Holidaydescription>sample string 5</Holidaydescription>
<Month>2</Month>
<UserId>1</UserId>
<Year>3</Year>
<dtfrom>sample string 4</dtfrom>
</EmployeeAttendance>
</ArrayOfEmployeeAttendance>