POST 17.0/database/journal/list

Description

Retrieve a list of Journal

URI Parameters

None.

Name Description Type Additional information
Fields

Collection of string

None.

Filters

Collection of DatabaseFilter

None.

Order

string

None.

application/json, text/json

Sample:
{
  "fields": [
    "sample string 1",
    "sample string 2"
  ],
  "filters": [
    {
      "fieldName": "sample string 1",
      "value": "sample string 2",
      "operator": "sample string 3",
      "valueType": "sample string 4"
    },
    {
      "fieldName": "sample string 1",
      "value": "sample string 2",
      "operator": "sample string 3",
      "valueType": "sample string 4"
    }
  ],
  "order": "sample string 1"
}

application/xml, text/xml

Sample:
<ListOptions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Fields>
    <string>sample string 1</string>
    <string>sample string 2</string>
  </Fields>
  <Filters>
    <DatabaseFilter>
      <FieldName>sample string 1</FieldName>
      <Value>sample string 2</Value>
      <Operator>sample string 3</Operator>
      <ValueType>sample string 4</ValueType>
    </DatabaseFilter>
    <DatabaseFilter>
      <FieldName>sample string 1</FieldName>
      <Value>sample string 2</Value>
      <Operator>sample string 3</Operator>
      <ValueType>sample string 4</ValueType>
    </DatabaseFilter>
  </Filters>
  <Order>sample string 1</Order>
</ListOptions>

application/x-www-form-urlencoded

Sample:

Sample not available.

Collection of JournalUpdate
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": 1,
    "propertyID": 1,
    "contactID": 1,
    "addedDate": "2025-01-09T20:12",
    "oldValue": 1.0,
    "newValue": 1.0,
    "linkID": 1,
    "userID": 1
  },
  {
    "id": 1,
    "typeID": 1,
    "propertyID": 1,
    "contactID": 1,
    "addedDate": "2025-01-09T20:12",
    "oldValue": 1.0,
    "newValue": 1.0,
    "linkID": 1,
    "userID": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfJournalUpdate xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <JournalUpdate>
    <ID>1</ID>
    <TypeID>1</TypeID>
    <PropertyID>1</PropertyID>
    <ContactID>1</ContactID>
    <AddedDate>2025-01-09T20:12:51.6731628+00:00</AddedDate>
    <OldValue>1</OldValue>
    <NewValue>1</NewValue>
    <LinkID>1</LinkID>
    <UserID>1</UserID>
  </JournalUpdate>
  <JournalUpdate>
    <ID>1</ID>
    <TypeID>1</TypeID>
    <PropertyID>1</PropertyID>
    <ContactID>1</ContactID>
    <AddedDate>2025-01-09T20:12:51.6731628+00:00</AddedDate>
    <OldValue>1</OldValue>
    <NewValue>1</NewValue>
    <LinkID>1</LinkID>
    <UserID>1</UserID>
  </JournalUpdate>
</ArrayOfJournalUpdate>