POST api/AnalyticsTracking
Request Information
URI Parameters
None.
Body Parameters
RequestAnalyticsTrackFilter| Name | Description | Type | Additional information |
|---|---|---|---|
| KeysEventToExclude | string |
None. |
|
| KeysFilter | string |
None. |
|
| dataStart | date |
None. |
|
| dataEnd | date |
None. |
|
| PageNumber | integer |
None. |
|
| PageSize | integer |
None. |
|
| TokenKey | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"KeysEventToExclude": "sample string 1",
"KeysFilter": "sample string 2",
"dataStart": "2025-12-28T18:28:17.8164335+01:00",
"dataEnd": "2025-12-28T18:28:17.8164335+01:00",
"PageNumber": 3,
"PageSize": 4,
"TokenKey": "sample string 5"
}
application/xml, text/xml
Sample:
<RequestAnalyticsTrackFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ServiceCenter.API.DTO.Analytics"> <TokenKey>sample string 5</TokenKey> <PageNumber>3</PageNumber> <PageSize>4</PageSize> <dataEnd>2025-12-28T18:28:17.8164335+01:00</dataEnd> <dataStart>2025-12-28T18:28:17.8164335+01:00</dataStart> <KeysEventToExclude>sample string 1</KeysEventToExclude> <KeysFilter>sample string 2</KeysFilter> </RequestAnalyticsTrackFilter>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ResponseInfoFlat| Name | Description | Type | Additional information |
|---|---|---|---|
| ErrorNumber | integer |
None. |
|
| ErrorMessage | string |
None. |
|
| ActionResult | boolean |
None. |
|
| ResultMessage | string |
None. |
|
| Result | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"ErrorNumber": 1,
"ErrorMessage": "sample string 2",
"ActionResult": true,
"ResultMessage": "sample string 4",
"Result": {}
}
application/xml, text/xml
Sample:
<ResponseInfoFlat xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ServiceCenter.API.DTO.Flat"> <ActionResult>true</ActionResult> <ErrorMessage>sample string 2</ErrorMessage> <ErrorNumber>1</ErrorNumber> <Result /> <ResultMessage>sample string 4</ResultMessage> </ResponseInfoFlat>