GET 17.0/database/messages/{id}

Description

Retrieve Messages

URI Parameters

Name Description Type Additional information
id

integer

Required

None.

None.

Name Description Type Additional information
ID

integer

None.

Title

string

String length: inclusive between 0 and 50

Message

string

String length: inclusive between 0 and 512

ContactID

integer

None.

PropertyID

integer

None.

UserID

integer

None.

TaskID

integer

None.

AppointmentID

integer

None.

ContactDocumentID

integer

None.

AltID

integer

None.

AddedDate

date

None.

Type

byte

None.

URL

string

String length: inclusive between 0 and 100

application/json, text/json

Sample:
{
  "id": 1,
  "title": "sample string 2",
  "message": "sample string 3",
  "contactID": 4,
  "propertyID": 5,
  "userID": 6,
  "taskID": 7,
  "appointmentID": 8,
  "contactDocumentID": 9,
  "altID": 10,
  "addedDate": "2025-01-09T20:19",
  "type": 64,
  "url": "sample string 13"
}

application/xml, text/xml

Sample:
<Messages xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ID>1</ID>
  <Title>sample string 2</Title>
  <Message>sample string 3</Message>
  <ContactID>4</ContactID>
  <PropertyID>5</PropertyID>
  <UserID>6</UserID>
  <TaskID>7</TaskID>
  <AppointmentID>8</AppointmentID>
  <ContactDocumentID>9</ContactDocumentID>
  <AltID>10</AltID>
  <AddedDate>2025-01-09T20:19:09.9859593+00:00</AddedDate>
  <Type>64</Type>
  <URL>sample string 13</URL>
</Messages>