GET 17.0/database/journal/{id}

Description

Retrieve Journal

URI Parameters

Name Description Type Additional information
id

integer

Required

None.

None.

Name Description Type Additional information
ID

integer

None.

TypeID

integer

None.

PropertyID

integer

None.

ContactID

integer

None.

AddedDate

date

None.

OldValue

decimal number

None.

NewValue

decimal number

None.

LinkID

integer

None.

UserID

integer

None.

application/json, text/json

Sample:
{
  "id": 1,
  "typeID": 2,
  "propertyID": 3,
  "contactID": 4,
  "addedDate": "2025-01-09T20:14",
  "oldValue": 6.0,
  "newValue": 7.0,
  "linkID": 8,
  "userID": 9
}

application/xml, text/xml

Sample:
<Journal xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ID>1</ID>
  <TypeID>2</TypeID>
  <PropertyID>3</PropertyID>
  <ContactID>4</ContactID>
  <AddedDate>2025-01-09T20:14:52.8594538+00:00</AddedDate>
  <OldValue>6</OldValue>
  <NewValue>7</NewValue>
  <LinkID>8</LinkID>
  <UserID>9</UserID>
</Journal>