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