POST api/Report/GetDailyChartAttendance
Request Information
URI Parameters
None.
Body Parameters
DailyAttandanceRequestInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| AttendanceDate | string |
None. |
|
| Year | integer |
None. |
|
| Month | integer |
None. |
|
| Date | integer |
None. |
|
| UserId | integer |
None. |
|
| UserType | string |
None. |
|
| CustomerId | integer |
None. |
|
| ContactId | integer |
None. |
|
| TokenId | string |
None. |
|
| dbOperation | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"AttendanceDate": "sample string 1",
"Year": 2,
"Month": 3,
"Date": 4,
"UserId": 5,
"UserType": "sample string 6",
"CustomerId": 7,
"ContactId": 8,
"TokenId": "sample string 9",
"dbOperation": "sample string 10"
}
application/xml, text/xml
Sample:
<DailyAttandanceRequestInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AttendanceInfo"> <ContactId>8</ContactId> <CustomerId>7</CustomerId> <TokenId>sample string 9</TokenId> <UserId>5</UserId> <UserType>sample string 6</UserType> <dbOperation>sample string 10</dbOperation> <AttendanceDate>sample string 1</AttendanceDate> <Date>4</Date> <Month>3</Month> <Year>2</Year> </DailyAttandanceRequestInfo>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ChartDataInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| ChartData | Collection of Object |
None. |
|
| ChartLabel | string |
None. |
|
| ChartStepSize | integer |
None. |
|
| ChartTitle | string |
None. |
|
| ChartType | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ChartData": [
{},
{}
],
"ChartLabel": "sample string 1",
"ChartStepSize": 2,
"ChartTitle": "sample string 3",
"ChartType": "sample string 4"
}
application/xml, text/xml
Sample:
<ChartDataInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AttendanceInfo">
<ChartData xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:anyType />
<d2p1:anyType />
</ChartData>
<ChartLabel>sample string 1</ChartLabel>
<ChartStepSize>2</ChartStepSize>
<ChartTitle>sample string 3</ChartTitle>
<ChartType>sample string 4</ChartType>
</ChartDataInfo>