GET api/v1/systemlogs/{logId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| logId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
SystemLogDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| LogId | integer |
None. |
|
| EventDateTime | date |
None. |
|
| Application | string |
None. |
|
| LogLevel | string |
None. |
|
| EventType | integer |
None. |
|
| Logger | string |
None. |
|
| Message | string |
None. |
|
| UserName | string |
None. |
|
| ComputerName | string |
None. |
|
| CallSite | string |
None. |
|
| Thread | string |
None. |
|
| Exception | string |
None. |
|
| Stacktrace | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"LogId": 1,
"EventDateTime": "2025-11-03T20:23:12.3798057+01:00",
"Application": "sample string 3",
"LogLevel": "sample string 4",
"EventType": 1,
"Logger": "sample string 5",
"Message": "sample string 6",
"UserName": "sample string 7",
"ComputerName": "sample string 8",
"CallSite": "sample string 9",
"Thread": "sample string 10",
"Exception": "sample string 11",
"Stacktrace": "sample string 12"
}
text/html
Sample:
{"LogId":1,"EventDateTime":"2025-11-03T20:23:12.3798057+01:00","Application":"sample string 3","LogLevel":"sample string 4","EventType":1,"Logger":"sample string 5","Message":"sample string 6","UserName":"sample string 7","ComputerName":"sample string 8","CallSite":"sample string 9","Thread":"sample string 10","Exception":"sample string 11","Stacktrace":"sample string 12"}
application/xml, text/xml
Sample:
<SystemLogDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi.System"> <Application>sample string 3</Application> <CallSite>sample string 9</CallSite> <ComputerName>sample string 8</ComputerName> <EventDateTime>2025-11-03T20:23:12.3798057+01:00</EventDateTime> <EventType>1</EventType> <Exception>sample string 11</Exception> <LogId>1</LogId> <LogLevel>sample string 4</LogLevel> <Logger>sample string 5</Logger> <Message>sample string 6</Message> <Stacktrace>sample string 12</Stacktrace> <Thread>sample string 10</Thread> <UserName>sample string 7</UserName> </SystemLogDetails>