POST api/v1/systemlogs/page/{pageStart}/{pageSize}
Gets the systemlog overviews.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| pageStart | integer |
Default value is 1 |
|
| pageSize | integer |
Default value is 100 |
Body Parameters
PageableSearchFilterOfSystemLogOverviewSearchFilter| Name | Description | Type | Additional information |
|---|---|---|---|
| Sorting | Dictionary of string [key] and string [value] |
None. |
|
| SearchFilter | SystemLogOverviewSearchFilter |
None. |
Request Formats
application/json, text/json
Sample:
{
"Sorting": {
"sample string 1": "sample string 2",
"sample string 3": "sample string 4"
},
"SearchFilter": {
"EventDateTime": "sample string 1",
"LogLevel": "sample string 2",
"EventType": "sample string 3",
"Logger": "sample string 4",
"Message": "sample string 5",
"UserName": "sample string 6"
}
}
text/html
Sample:
{"Sorting":{"sample string 1":"sample string 2","sample string 3":"sample string 4"},"SearchFilter":{"EventDateTime":"sample string 1","LogLevel":"sample string 2","EventType":"sample string 3","Logger":"sample string 4","Message":"sample string 5","UserName":"sample string 6"}}
application/xml, text/xml
Sample:
<PageableSearchFilterOfSystemLogOverviewSearchFiltervxu6tsRn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi">
<SearchFilter xmlns:d2p1="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi.System">
<d2p1:EventDateTime>sample string 1</d2p1:EventDateTime>
<d2p1:EventType>sample string 3</d2p1:EventType>
<d2p1:LogLevel>sample string 2</d2p1:LogLevel>
<d2p1:Logger>sample string 4</d2p1:Logger>
<d2p1:Message>sample string 5</d2p1:Message>
<d2p1:UserName>sample string 6</d2p1:UserName>
</SearchFilter>
<Sorting xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfstringstring>
<d2p1:Key>sample string 1</d2p1:Key>
<d2p1:Value>sample string 2</d2p1:Value>
</d2p1:KeyValueOfstringstring>
<d2p1:KeyValueOfstringstring>
<d2p1:Key>sample string 3</d2p1:Key>
<d2p1:Value>sample string 4</d2p1:Value>
</d2p1:KeyValueOfstringstring>
</Sorting>
</PageableSearchFilterOfSystemLogOverviewSearchFiltervxu6tsRn>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
PagedListOfSystemLogOverview| Name | Description | Type | Additional information |
|---|---|---|---|
| Items | Collection of SystemLogOverview |
None. |
|
| PageStart | integer |
None. |
|
| PageSize | integer |
None. |
|
| TotalRows | integer |
None. |
Response Formats
application/json, text/json, text/html
Sample:
Sample not available.