POST api/Report/DownloadContactMonthlyAttendanceReport
Request Information
URI Parameters
None.
Body Parameters
ContactAttendanceRequestInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| Year | integer |
None. |
|
| Month | integer |
None. |
|
| Day | 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:
{
"Year": 1,
"Month": 2,
"Day": 3,
"UserId": 4,
"UserType": "sample string 5",
"CustomerId": 6,
"ContactId": 7,
"TokenId": "sample string 8",
"dbOperation": "sample string 9"
}
application/xml, text/xml
Sample:
<ContactAttendanceRequestInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AttendanceInfo"> <ContactId>7</ContactId> <CustomerId>6</CustomerId> <TokenId>sample string 8</TokenId> <UserId>4</UserId> <UserType>sample string 5</UserType> <dbOperation>sample string 9</dbOperation> <Day>3</Day> <Month>2</Month> <Year>1</Year> </ContactAttendanceRequestInfo>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ReportResponseInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| ReportPath | string |
None. |
|
| Status | integer |
None. |
|
| Message | string |
None. |
|
| Exception | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ReportPath": "sample string 1",
"Status": 2,
"Message": "sample string 3",
"Exception": "sample string 4"
}
application/xml, text/xml
Sample:
<ReportResponseInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AttendanceInfo"> <Exception>sample string 4</Exception> <Message>sample string 3</Message> <Status>2</Status> <ReportPath>sample string 1</ReportPath> </ReportResponseInfo>