POST 17.0/database/contactcalllog/list

Description

Retrieve a list of Contact Call Log

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 ContactCallLogUpdate
Name Description Type Additional information
ID

integer

None.

Type

integer

None.

StartDate

date

None.

EndDate

date

None.

TelephoneNumber

string

String length: inclusive between 0 and 30

Status

integer

None.

ContactID

integer

None.

TaskID

integer

None.

UserID

integer

None.

SiteID

integer

None.

ExternalCallID

string

String length: inclusive between 0 and 50

CallLogID

integer

None.

application/json, text/json

Sample:
[
  {
    "id": 1,
    "type": 1,
    "startDate": "2025-01-09T20:44",
    "endDate": "2025-01-09T20:44",
    "telephoneNumber": "sample string 1",
    "status": 1,
    "contactID": 1,
    "taskID": 1,
    "userID": 1,
    "siteID": 1,
    "externalCallID": "sample string 2",
    "callLogID": 1
  },
  {
    "id": 1,
    "type": 1,
    "startDate": "2025-01-09T20:44",
    "endDate": "2025-01-09T20:44",
    "telephoneNumber": "sample string 1",
    "status": 1,
    "contactID": 1,
    "taskID": 1,
    "userID": 1,
    "siteID": 1,
    "externalCallID": "sample string 2",
    "callLogID": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfContactCallLogUpdate xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ContactCallLogUpdate>
    <ID>1</ID>
    <Type>1</Type>
    <StartDate>2025-01-09T20:44:54.3575215+00:00</StartDate>
    <EndDate>2025-01-09T20:44:54.3575215+00:00</EndDate>
    <TelephoneNumber>sample string 1</TelephoneNumber>
    <Status>1</Status>
    <ContactID>1</ContactID>
    <TaskID>1</TaskID>
    <UserID>1</UserID>
    <SiteID>1</SiteID>
    <ExternalCallID>sample string 2</ExternalCallID>
    <CallLogID>1</CallLogID>
  </ContactCallLogUpdate>
  <ContactCallLogUpdate>
    <ID>1</ID>
    <Type>1</Type>
    <StartDate>2025-01-09T20:44:54.3575215+00:00</StartDate>
    <EndDate>2025-01-09T20:44:54.3575215+00:00</EndDate>
    <TelephoneNumber>sample string 1</TelephoneNumber>
    <Status>1</Status>
    <ContactID>1</ContactID>
    <TaskID>1</TaskID>
    <UserID>1</UserID>
    <SiteID>1</SiteID>
    <ExternalCallID>sample string 2</ExternalCallID>
    <CallLogID>1</CallLogID>
  </ContactCallLogUpdate>
</ArrayOfContactCallLogUpdate>