Segments
Use this endpoint to obtain details on Adaptix's contact segments or to manipulate contact memberships.
Get Segment
HTTP Request
GET /segments/ID
Response
Expected Response Code: 200
See JSON code example.
Segment Properties
Name | Type | Description |
---|---|---|
id | int | ID of the segment |
isPublished | boolean | Whether the segment is published |
dateAdded | datetime | Date/time segment was created |
createdBy | int | ID of the user that created the segment |
createdByUser | string | Name of the user that created the segment |
dateModified | datetime/null | Date/time segment was last modified |
modifiedBy | int | ID of the user that last modified the segment |
modifiedByUser | string | Name of the user that last modified the segment |
category | object/null | Object with the category details |
name | string | Segment name |
alias | string | Segment alias |
description | string | Segment description |
filters | array | Smart filters for the segment. See filter properties bellow |
isGlobal | boolean | Whether the segment is global. 0 means only the author will see it. |
Segment Filter Properties
Name | Type | Description |
---|---|---|
glue | string | How to glue the filters to others. Possible values: and , or |
field | string | Alias of the contact or company field to based the filter on |
object | string | Object which have the field. Possible values: 'lead' (for contacts), company |
type | string | Type of the field. Possible values: 'boolean', date (format Y-m-d ), datetime (format Y-m-d H:i:s ), email , country , locale , lookup , number , tel , region , select , multiselect , text , textarea , time , timezone , url |
operator | string | Operator used for matching the values. Possible values: '=', != , empty , !empty , like , !like , regexp , !regexp , startsWith , endsWith , contains |
List Contact Segments
HTTP Request
GET /segments
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. |
publishedOnly | Only return currently published entities. |
Response
Expected Response Code: 200
See JSON code example.
Segment Properties
Name | Type | Description |
---|---|---|
total | int | Count of all segments |
id | int | ID of the segment |
isPublished | boolean | Whether the segment is published |
dateAdded | datetime | Date/time segment was created |
createdBy | int | ID of the user that created the segment |
createdByUser | string | Name of the user that created the segment |
dateModified | datetime/null | Date/time segment was last modified |
modifiedBy | int | ID of the user that last modified the segment |
modifiedByUser | string | Name of the user that last modified the segment |
category | object/null | Object with the category details |
name | string | Segment name |
alias | string | Segment alias |
description | string | Segment description |
filters | array | Smart filters for the segment. See filter properties bellow |
isGlobal | boolean | Whether the segment is global. 0 means only the author will see it. |
Segment Filter Properties
Name | Type | Description |
---|---|---|
glue | string | How to glue the filters to others. Possible values: and , or |
field | string | Alias of the contact or company field to based the filter on |
object | string | Object which have the field. Possible values: 'lead' (for contacts), company |
type | string | Type of the field. Possible values: 'boolean', date (format Y-m-d ), datetime (format Y-m-d H:i:s ), email , country , locale , lookup , number , tel , region , select , multiselect , text , textarea , time , timezone , url |
operator | string | Operator used for matching the values. Possible values: '=', != , empty , !empty , like , !like , regexp , !regexp , startsWith , endsWith , contains |
Create Segment
HTTP Request
POST /segments/new
Post Parameters
Name | Description |
---|---|
name | Segment name is the only required field |
alias | Name alias generated automatically if not set |
description | A description of the segment. |
isPublished | A value of false or true |
isGlobal | boolean |
filters | array |
Segment Filter Properties
Name | Type | Description |
---|---|---|
glue | string | How to glue the filters to others. Possible values: and , or |
field | string | Alias of the contact or company field to based the filter on |
object | string | Object which have the field. Possible values: 'lead' (for contacts), company |
type | string | Type of the field. Possible values: 'boolean', date (format Y-m-d ), datetime (format Y-m-d H:i:s ), email , country , locale , lookup , number , tel , region , select , multiselect , text , textarea , time , timezone , url |
operator | string | Operator used for matching the values. Possible values: '=', != , empty , !empty , like , !like , regexp , !regexp , startsWith , endsWith , contains |
Response
Expected Response Code: 201
Properties
Same as Get Segment.
Edit Segment
PUT creates a segment if the given ID does not exist and clears all the segment information, adds the information from the request. PATCH fails if the segment with the given ID does not exist and updates the segment field values with the values form the request.
HTTP Request
To edit a segment and return a 404 if the segment is not found:
PATCH /segments/ID/edit
To edit a segment and create a new one if the segment is not found:
PUT /segments/ID/edit
Post Parameters
Name | Description |
---|---|
name | Segment name is the only required field |
alias | Name alias generated automatically if not set |
description | A description of the segment. |
isPublished | A value of false or true |
isGlobal | boolean |
filters | array |
Segment Filter Properties
Name | Type | Description |
---|---|---|
glue | string | How to glue the filters to others. Possible values: and , or |
field | string | Alias of the contact or company field to based the filter on |
object | string | Object which have the field. Possible values: 'lead' (for contacts), company |
type | string | Type of the field. Possible values: 'boolean', date (format Y-m-d ), datetime (format Y-m-d H:i:s ), email , country , locale , lookup , number , tel , region , select , multiselect , text , textarea , time , timezone , url |
operator | string | Operator used for matching the values. Possible values: '=', != , empty , !empty , like , !like , regexp , !regexp , startsWith , endsWith , contains |
Response
If PUT
, the expected response code is 200
if the segment was edited or 201
if created.
If PATCH
, the expected response code is 200
.
Properties
Same as Get Segment.
Delete Segment
Delete a segment.HTTP Request
DELETE /segments/ID/delete
Response
Expected Response Code: 200
Properties
Same as Get Segment.
Add Contact to a Segment
Manually add a contact to a specific segment.
HTTP Request
POST /segments/SEGMENT_ID/contact/CONTACT_ID/add
Response
Expected Response Code: 200
See JSON code example.
Add Contacts to a Segment
Manually add contacts to a specific segment.
HTTP Request
POST /segments/SEGMENT_ID/contacts/add
Response
Expected Response Code: 200
See JSON code example.
Remove Contact from a Segment
Manually remove a contact to a specific segment.
HTTP Request
POST /segments/SEGMENT_ID/contact/CONTACT_ID/remove
Response
Expected Response Code: 200
See JSON code example.