PUT 17.0/database/journal/{id}

Description

Update existing Journal

URI Parameters

Name Description Type Additional information
id

integer

Required

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:48",
  "oldValue": 1.0,
  "newValue": 1.0,
  "linkID": 1,
  "userID": 1
}

application/xml, text/xml

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

application/x-www-form-urlencoded

Sample:

Sample not available.

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:48",
  "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:48:14.314375+00:00</AddedDate>
  <OldValue>6</OldValue>
  <NewValue>7</NewValue>
  <LinkID>8</LinkID>
  <UserID>9</UserID>
</Journal>