Contacts
Use this endpoint to manipulate and obtain details on Adaptix's contacts.
Get Contact
HTTP Request
GET /contacts/ID
Response
Expected Response Code: 200
See JSON code example.
** Contact Properties **
Name | Type | Description |
---|---|---|
id | int | ID of the contact |
isPublished | Boolean | True if the contact is published |
dateAdded | datetime | Date/time contact was created |
createdBy | int | ID of the user that created the contact |
createdByUser | string | Name of the user that created the contact |
dateModified | datetime/null | Date/time contact was last modified |
modifiedBy | int | ID of the user that last modified the contact |
modifiedByUser | string | Name of the user that last modified the contact |
owner | object | User object that owns the contact. |
points | int | Contact's current number of points |
lastActive | datetime/null | Date/time for when the contact was last recorded as active |
dateIdentified | datetime/null | Date/time when the contact identified themselves |
color | string | Hex value given to contact from Point Trigger definitions based on the number of points the contact has been awarded |
ipAddresses | array | Array of IPs currently associated with this contact |
fields | array | Array of all contact fields with data grouped by field group. See JSON code example for format. This array includes an "all" key that includes an single level array of fieldAlias => contactValue pairs. |
tags | array | Array of tags associated with this contact. See JSON code example for format. |
utmtags | array | Array of UTM Tags associated with this contact. See JSON code example for format. |
doNotContact | array | Array of Do Not Contact objects. See JSON code example for format. |
List Contacts
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
|
HTTP Request
GET /contacts
** Query Parameters **
Name | Description |
---|---|
search | String or search command to filter entities by. |
start | Starting row for the entities returned. Defaults to 0. |
limit | Limit number of entities to return. Defaults to the system configuration for pagination (30). |
orderBy | Column to sort by. Can use any column listed in the response. However, all properties in the response that are written in camelCase need to be changed a bit. Before every capital add an underscore _ and then change the capital letters to non-capital letters. So dateIdentified becomes date_identified , modifiedByUser becomes modified_by_user etc. |
orderByDir | Sort direction: asc or desc. |
publishedOnly | Only return currently published entities. |
minimal | Return only array of entities without additional lists in it. |
where | An array of advanced where conditions |
order | An array of advanced order statements |
Advanced filtering
In some cases you may want to filter by specific value(s). Use URL params like this:
In PHP:
This design allows to add multiple conditions in the same request.If you are not using PHP, here is URL-encoded example of the above where array:
GET https://your-adaptix.ai/api/contacts?where%5B0%5D%5Bcol%5D=phone&where%5B0%5D%5Bexpr%5D=in&where%5B0%5D%5Bval%5D=444444444,888888888
Response
Expected Response Code: 200
See JSON code example.
** Properties **
Same as Get Contact.
Create Contact
HTTP Request
POST /contacts/new
** Post Parameters **
Name | Description |
---|---|
* | Any contact field alias can be posted as a parameter. For example, firstname, lastname, email, etc. |
ipAddress | IP address to associate with the contact |
lastActive | Date/time in UTC; preferablly in the format of Y-m-d H:m:i but if that format fails, the string will be sent through PHP's strtotime then formatted |
owner | ID of a Adaptix user to assign this contact to |
overwriteWithBlank | If true, then empty values are set to fields. Otherwise empty values are skipped |
Response
Expected Response Code: 201
** Properties **
Same as Get Contact.
Create Batch Contact
HTTP Request
POST /contacts/batch/new
** Post Parameters **
Name | Description |
---|---|
* | Any contact field alias can be posted as a parameter. For example, firstname, lastname, email, etc. |
ipAddress | IP address to associate with the contact |
lastActive | Date/time in UTC; preferablly in the format of Y-m-d H:m:i but if that format fails, the string will be sent through PHP's strtotime then formatted |
owner | ID of a Adaptix user to assign this contact to |
Response
Expected Response Code: 201
** Properties **
Array of contacts. Record is the same as Get Contact.
Edit Contact
** PUT ** creates a contact if the given ID does not exist and clears all the contact information, adds the information from the request. PATCH fails if the contact with the given ID does not exist and updates the contact field values with the values form the request.
HTTP Request
To edit a contact and return a 404 if the contact is not found:
PATCH /contacts/ID/edit
To edit a contact and create a new one if the contact is not found:
PUT /contacts/ID/edit
** Post Parameters **
Name | Description |
---|---|
* | Any contact field alias can be posted as a parameter. For example, firstname, lastname, email, etc. |
ipAddress | IP address to associate with the contact |
lastActive | Date/time in UTC; preferably in the format of Y-m-d H:m:i but if that format fails, the string will be sent through PHP's strtotime then formatted |
owner | ID of a Adaptix user to assign this contact to |
overwriteWithBlank | If true, then empty values are set to fields. Otherwise empty values are skipped |
Response
If PUT
, the expected response code is 200
if the contact was edited or 201
if created.
If PATCH
, the expected response code is 200
.
** Properties **
Same as Get Contact.
Note: In order to remove tag from contact add minus
-
before it. For example:tags: ['one', '-two']
- sending this in request body will add tagone
and remove tagtwo
from contact.
Edit Batch Contact
PUT creates a contact if the given ID does not exist and clears all the contact information, adds the information from the request. PATCH fails if the contact with the given ID does not exist and updates the contact field values with the values form the request.
HTTP Request
To edit a contact and return a 404 if the contact is not found:
PATCH /contacts/batch/edit
To edit a contact and create a new one if the contact is not found:
PUT /contacts/batch/edit
Post Parameters
Name | Description |
---|---|
* | Any contact field alias can be posted as a parameter. For example, firstname, lastname, email, etc. |
ipAddress | IP address to associate with the contact |
lastActive | Date/time in UTC; preferably in the format of Y-m-d H:m:i but if that format fails, the string will be sent through PHP's strtotime then formatted |
owner | ID of a Adaptix user to assign this contact to |
overwriteWithBlank | If true, then empty values are set to fields. Otherwise empty values are skipped |
Response
If PUT
, the expected response code is 200
if the contact was edited or 201
if created.
If PATCH
, the expected response code is 200
.
Properties
Contacts array. Record same as Get Contact.
Note: In order to remove tag from contact add minus
-
before it. For example:tags: ['one', '-two']
- sending this in request body will add tagone
and remove tagtwo
from contact.
Delete Contact
Delete a contact.HTTP Request
DELETE /contacts/ID/delete
Response
Expected Response Code: 200
** Properties **
Same as Get Contact.
Delete Batch Contact
Delete contacts.HTTP Request
DELETE /contacts/batch/delete
If you are not using PHP, here is a URL example:
DELETE https://your-adaptix.ai/api/contacts/batch/delete?ids=1,2
Response
Expected Response Code: 200
Properties
Contacts array. Record same as Get Contact.
Add Do Not Contact
Add a contact to DNC list
HTTP Request
To add Do Not Contact entry to a contact:
POST /contacts/ID/dnc/CHANNEL/add
Data Parameters (optional)
Name | Description |
---|---|
channel | Channel of DNC. For example 'email', 'sms'... Default is email. |
reason | Int value of the reason. Use Contacts constants: Contacts::UNSUBSCRIBED (1), Contacts::BOUNCED (2), Contacts::MANUAL (3). Default is Manual |
channelId | ID of the entity which was the reason for unsubscription |
comments | A text describing details of DNC entry |
Response
Same as Get Contact.
Remove from Do Not Contact
Remove a contact from DNC list
HTTP Request
To remove Do Not Contact entry from a contact:
POST /contacts/ID/dnc/CHANNEL/remove
Data Parameters (optional)
Name | Description |
---|---|
channel | Channel of DNC. For example 'email', 'sms'... Default is email. |
Response
Same as Get Contact.
Add UTM Tags
Add UTM tags to a contact
HTTP Request
To add UTM tag entry to a contact:
POST /contacts/ID/utm/add
UTM Parameters (required)
While the parameter array is required, each utm tag entry is optional.
Name | Description |
---|---|
utm_campaign | The UTM Automation parameter |
utm_source | The UTM Source parameter |
utm_medium | The UTM Medium parameter |
utm_content | The UTM Content parameter |
utm_term | The UTM Term parameter |
useragent | The browsers UserAgent. If provided a new Device entry will be created if necessary. |
url | The page url |
referer | The URL of the referer, |
query | Any extra query parameters you wish to include. Array or http query string |
remotehost | The Host name |
lastActive | The date that the action occured. Contacts lastActive date will be updated if included. Date format required 2017-01-17T00:30:08+00:00 . |
Response
Same as Get Contact with the added UTM Tags.
Remove UTM Tags from a contact
Remove a set of UTM Tags from a contact
HTTP Request
To remove UTM Tags from a contact:
POST /contacts/ID/utm/UTMID/remove
Data Parameters
None required.
Response
Same as Get Contact without the removed UTM Tags.
Add Points
Add contact points
HTTP Request
To add points to a contact and return a 404 if the lead is not found:
POST /contacts/ID/points/plus/POINTS
Data Parameters (optional)
Name | Description |
---|---|
eventName | Name of the event |
actionName | Name of the action |
Response
Expected Response Code: 200
Subtract Points
HTTP Request
To subtract points from a contact and return a 404 if the contact is not found:
POST /contacts/ID/points/minus/POINTS
Data Parameters (optional)
Name | Description |
---|---|
eventname | Name of the event |
actionname | Name of the action |
Response
Expected Response Code: 200
List Available Owners
HTTP Request
GET /contacts/list/owners
Response
Expected Response Code: 200
** Owner Properties **
Name | Type | Description |
---|---|---|
id | int | ID of the Adaptix user |
firstName | string | First name of the Adaptix user |
lastName | string | Last name of the Adaptix user |
List Available Fields
HTTP Request
GET /contacts/list/fields
Response
Expected Response Code: 200
** Field Properties **
Name | Type | Description |
---|---|---|
id | int | ID of the field |
label | string | Field label |
alias | string | Field alias used as the column name in the database |
type | string | Type of field. I.e. text, lookup, etc |
group | string | Group the field belongs to |
order | int | Field order |
List Contact Notes
HTTP Request
GET /contacts/ID/notes
** Query Parameters **
Name | Description |
---|---|
search | String or search command to filter entities by. |
start | Starting row for the entities returned. Defaults to 0. |
limit | Limit number of entities to return. Defaults to the system configuration for pagination (30). |
orderBy | Column to sort by. Can use any column listed in the response. |
orderByDir | Sort direction: asc or desc. |
Response
Expected response code: 200
** Note Properties **
Name | Type | Description |
---|---|---|
id | int | ID of the note |
text | string | Body of the note |
type | string | Type of note. Options are "general", "email", "call", "meeting" |
dateTime | datetime | Date/time string of when the note was created. |
Get Segment Memberships
HTTP Request
GET /contacts/ID/segments
Response
Expected response code: 200
** List Properties **
Name | Type | Description |
---|---|---|
id | int | ID of the list |
name | string | Name of the list |
alias | string | Alias of the list used with search commands. |
dateAdded | datetime | Date/time string for when the contact was added to the list |
manuallyAdded | bool | True if the contact was manually added to the list versus being added by a filter |
manuallyRemoved | bool | True if the contact was manually removed from the list even though the list's filter is a match |
Change List Memberships
See Segements.
Get Automation Memberships
HTTP Request
GET /contacts/ID/automations
Response
Expected response code: 200
** List Properties **
Name | Type | Description |
---|---|---|
id | int | ID of the automation |
name | string | Name of the automation |
dateAdded | datetime | Date/time string for when the contact was added to the automation |
manuallyAdded | bool | True if the contact was manually added to the automation versus being added by a contact list |
manuallyRemoved | bool | True if the contact was manually removed from the automation when the contact's list is assigned to the automation |
listMembership | array | Array of contact list IDs this contact belongs to that is also associated with this automation |
Change Automation Memberships
See Automations.
Get Contact's Events
getActivityForContact
instead.
** Query Parameters **
Name | Description |
---|---|
id | Contact ID |
filters[search] | String or search command to filter events by. |
filters[includeEvents][] | Array of event types to include. |
filters[excludeEvents][] | Array of event types to exclude. |
order | Array of Column and Direction [COLUMN, DIRECTION]. |
page | What page number to load |
HTTP Request
GET /contacts/ID/events
Warning: Deprecated. Use GET /contacts/ID/activity
instead.
Response
Expected response code: 200
** List Properties **
Name | Type | Description |
---|---|---|
events | array | List of events |
event | string | ID of the event type |
icon | string | Icon class from FontAwesome |
eventType | string | Human name of the event |
eventPriority | string | Priority of the event |
timestamp | timestamp | Date and time when the event was created |
featured | bool | Flag whether the event is featured |
filters | array | Filters used in the query |
order | array | Ordering used in the query |
types | array | Array of available event types |
total | int | Total number of events in the request |
page | int | Current page number |
limit | int | Limit of events per page |
maxPages | int | How many pages of events are there |
Get activity events for specific contact
Name | Description |
---|---|
id | Contact ID |
filters[search] | String or search command to filter events by. |
filters[includeEvents][] | Array of event types to include. |
filters[excludeEvents][] | Array of event types to exclude. |
filters[dateFrom] | Date from filter. Must be type of \DateTime for the PHP API libary and in format Y-m-d H:i:s for HTTP param |
filters[dateTo] | Date to filter. Must be type of \DateTime for the PHP API libary and in format Y-m-d H:i:s for HTTP param |
order | Array of Column and Direction [COLUMN, DIRECTION]. |
page | What page number to load |
limit | Limit of events per page |
HTTP Request
GET /contacts/ID/activity
Response
Expected response code: 200
** List Properties **
Name | Type | Description |
---|---|---|
events | array | List of events |
event | string | ID of the event type |
icon | string | Icon class from FontAwesome |
eventType | string | Human name of the event |
eventPriority | string | Priority of the event |
timestamp | timestamp | Date and time when the event was created |
featured | bool | Flag whether the event is featured |
filters | array | Filters used in the query |
order | array | Ordering used in the query |
types | array | Array of available event types |
total | int | Total number of events in the request |
page | int | Current page number |
limit | int | Limit of events per page |
maxPages | int | How many pages of events are there |
Get Activity events for all contacts
Name | Description |
---|---|
filters[search] | String or search command to filter events by. |
filters[includeEvents][] | Array of event types to include. |
filters[excludeEvents][] | Array of event types to exclude. |
filters[dateFrom] | Date from filter. Must be type of \DateTime for the PHP API libary and in format Y-m-d H:i:s for HTTP param |
filters[dateTo] | Date to filter. Must be type of \DateTime for the PHP API libary and in format Y-m-d H:i:s for HTTP param |
orderBy | Column to sort by. Can use any column listed in the response. |
orderByDir | Sort direction: asc or desc. |
page | What page number to load |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 |
|
HTTP Request
GET /contacts/activity
Response
Expected response code: 200
** List Properties **
Name | Type | Description |
---|---|---|
events | array | List of events |
event | string | ID of the event type |
icon | string | Icon class from FontAwesome |
eventType | string | Human name of the event |
eventPriority | string | Priority of the event |
contactId | ID of the contact who created the event | |
timestamp | timestamp | Date and time when the event was created |
featured | bool | Flag whether the event is featured |
filters | array | Filters used in the query |
order | array | Ordering used in the query |
types | array | Array of available event types |
total | int | Total number of events in the request |
page | int | Current page number |
limit | int | Limit of events per page |
maxPages | int | How many pages of events are there |
Get Contact's Companies
HTTP Request
GET /contacts/ID/companies
Response
Expected response code: 200
List Properties
Name | Type | Description |
---|---|---|
company_id | int | Company ID |
date_associated | datetime | Date and time when the contact was associated to the company |
date_added | datetime | Date and time when the company was created |
is_primary | bool | Flag whether the company association is primary (current) |
companyname | string | Name of the company |
companyemail | string | Email of the company |
companycity | string | City of the company |
score | int | Score of the company |
Get Contact's Devices
HTTP Request
GET /contacts/ID/devices
Response
Expected response code: 200
List Properties
Name | Type | Description |
---|---|---|
id | int | Device ID |
clientInfo | array | Array with various information about the client (browser) |
device | string | Device type; desktop, mobile.. |
deviceOsName | string | Full device OS name |
deviceOsShortName | string | Short device OS name |
deviceOsPlatform | string | OS platform |