GET api/GetDailyAnalytics?wurknowAdminId={wurknowAdminId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| wurknowAdminId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DailyAnalyticsDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Title | string |
None. |
|
| Count | integer |
None. |
|
| Count2 | integer |
None. |
|
| Count3 | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Title": "sample string 1",
"Count": 2,
"Count2": 3,
"Count3": 4
},
{
"Title": "sample string 1",
"Count": 2,
"Count2": 3,
"Count3": 4
}
]
application/xml, text/xml
Sample:
<ArrayOfDailyAnalyticsDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WurkNowDTO.ClientApi.UnifyApps">
<DailyAnalyticsDTO>
<Count>2</Count>
<Count2>3</Count2>
<Count3>4</Count3>
<Title>sample string 1</Title>
</DailyAnalyticsDTO>
<DailyAnalyticsDTO>
<Count>2</Count>
<Count2>3</Count2>
<Count3>4</Count3>
<Title>sample string 1</Title>
</DailyAnalyticsDTO>
</ArrayOfDailyAnalyticsDTO>