GET 17.0/database/eventlog/{id}

Description

Retrieve Event Log

URI Parameters

Name Description Type Additional information
id

integer

Required

None.

None.

Name Description Type Additional information
ID

integer

None.

EventType

byte

None.

AddedDate

date

None.

UserID

integer

None.

SiteID

integer

None.

TableName

string

String length: inclusive between 0 and 50

Details

string

None.

LinkID

integer

None.

application/json, text/json

Sample:
{
  "id": 1,
  "eventType": 64,
  "addedDate": "2025-01-09T20:49",
  "userID": 4,
  "siteID": 5,
  "tableName": "sample string 6",
  "details": "sample string 7",
  "linkID": 8
}

application/xml, text/xml

Sample:
<EventLog xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ID>1</ID>
  <EventType>64</EventType>
  <AddedDate>2025-01-09T20:49:46.0548254+00:00</AddedDate>
  <UserID>4</UserID>
  <SiteID>5</SiteID>
  <TableName>sample string 6</TableName>
  <Details>sample string 7</Details>
  <LinkID>8</LinkID>
</EventLog>