POST 17.0/database/contactsync/list

Description

Retrieve a list of Contact Sync

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 ContactSyncUpdate
Name Description Type Additional information
ContactID

integer

None.

AltID

integer

None.

SyncTypeID

integer

None.

SyncKey

string

String length: inclusive between 0 and 255

Status

byte

None.

StatusDate

date

None.

AddedDate

date

None.

UpdatedDate

date

None.

AltID2

integer

None.

AltID3

integer

None.

UserID

integer

None.

application/json, text/json

Sample:
[
  {
    "contactID": 1,
    "altID": 1,
    "syncTypeID": 1,
    "syncKey": "sample string 1",
    "status": 64,
    "statusDate": "2025-01-09T20:16",
    "addedDate": "2025-01-09T20:16",
    "updatedDate": "2025-01-09T20:16",
    "altID2": 1,
    "altID3": 1,
    "userID": 1
  },
  {
    "contactID": 1,
    "altID": 1,
    "syncTypeID": 1,
    "syncKey": "sample string 1",
    "status": 64,
    "statusDate": "2025-01-09T20:16",
    "addedDate": "2025-01-09T20:16",
    "updatedDate": "2025-01-09T20:16",
    "altID2": 1,
    "altID3": 1,
    "userID": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfContactSyncUpdate xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ContactSyncUpdate>
    <ContactID>1</ContactID>
    <AltID>1</AltID>
    <SyncTypeID>1</SyncTypeID>
    <SyncKey>sample string 1</SyncKey>
    <Status>64</Status>
    <StatusDate>2025-01-09T20:16:34.2672172+00:00</StatusDate>
    <AddedDate>2025-01-09T20:16:34.2672172+00:00</AddedDate>
    <UpdatedDate>2025-01-09T20:16:34.2672172+00:00</UpdatedDate>
    <AltID2>1</AltID2>
    <AltID3>1</AltID3>
    <UserID>1</UserID>
  </ContactSyncUpdate>
  <ContactSyncUpdate>
    <ContactID>1</ContactID>
    <AltID>1</AltID>
    <SyncTypeID>1</SyncTypeID>
    <SyncKey>sample string 1</SyncKey>
    <Status>64</Status>
    <StatusDate>2025-01-09T20:16:34.2672172+00:00</StatusDate>
    <AddedDate>2025-01-09T20:16:34.2672172+00:00</AddedDate>
    <UpdatedDate>2025-01-09T20:16:34.2672172+00:00</UpdatedDate>
    <AltID2>1</AltID2>
    <AltID3>1</AltID3>
    <UserID>1</UserID>
  </ContactSyncUpdate>
</ArrayOfContactSyncUpdate>