GET api/EventLogs
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of eventlogName | Description | Type | Additional information |
---|---|---|---|
Id | integer |
None. |
|
UserId | integer |
None. |
|
Date | date |
None. |
|
Context | string |
String length: inclusive between 0 and 255 |
|
Created | date |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Id": 1, "UserId": 2, "Date": "2025-06-16T08:42:31.8819727-05:00", "Context": "sample string 4", "Created": "2025-06-16T08:42:31.8819727-05:00" }, { "Id": 1, "UserId": 2, "Date": "2025-06-16T08:42:31.8819727-05:00", "Context": "sample string 4", "Created": "2025-06-16T08:42:31.8819727-05:00" } ]
application/xml, text/xml
Sample:
<ArrayOfeventlog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MainEventsService.Models"> <eventlog> <Context>sample string 4</Context> <Created>2025-06-16T08:42:31.8819727-05:00</Created> <Date>2025-06-16T08:42:31.8819727-05:00</Date> <Id>1</Id> <UserId>2</UserId> </eventlog> <eventlog> <Context>sample string 4</Context> <Created>2025-06-16T08:42:31.8819727-05:00</Created> <Date>2025-06-16T08:42:31.8819727-05:00</Date> <Id>1</Id> <UserId>2</UserId> </eventlog> </ArrayOfeventlog>