Automations
Use this endpoint to obtain details on Adaptix's automations.
Get Automation
HTTP Request
GET /automations/ID
Response
Expected Response Code: 200
See JSON code example.
Automation Properties
Name | Type | Description |
---|---|---|
id | int | ID of the automation |
name | string | Name of the automation |
description | string/null | Description of the automation |
alias | string | Used to generate the URL for the automation |
isPublished | bool | Published state |
publishUp | datetime/null | Date/time when the automation should be published |
publishDown | datetime/null | Date/time the automation should be un published |
dateAdded | datetime | Date/time automation was created |
createdBy | int | ID of the user that created the automation |
createdByUser | string | Name of the user that created the automation |
dateModified | datetime/null | Date/time automation was last modified |
modifiedBy | int | ID of the user that last modified the automation |
modifiedByUser | string | Name of the user that last modified the automation |
events | array | Array of Event entities for the automation. See below. |
Event Properties
Name | Type | Description |
---|---|---|
id | int | ID of the event |
name | string | Name of the event |
description | string | Optional description for the event |
type | string | Type of event |
eventType | string | "action" or "decision" |
order | int | Order in relation to the other events (used for levels) |
properties | object | Configured properties for the event |
triggerMode | string | "immediate", "interval" or "date" |
triggerDate | datetime/null | Date/time of when the event should trigger if triggerMode is "date" |
triggerInterval | int/null | Interval for when the event should trigger |
triggerIntervalUnit | string | Interval unit for when the event should trigger. Options are i = minutes, h = hours, d = days, m = months, y = years |
children | array | Array of this event's children , |
parent | object/null | This event's parent |
decisionPath | string/null | If the event is connected into an action, this will be "no" for the non-decision path or "yes" for the actively followed path. |
List Automations
HTTP Request
GET /automations
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. |
published | Only return currently published entities. |
minimal | Return only array of entities without additional lists in it. |
Response
Expected Response Code: 200
See JSON code example.
Properties
Same as Get Automation.
List Automation Contacts
This endpoint is basically an alias for the stats endpoint with 'campaign_leads' table and campaign_id specified. Other parameters are the same as in the stats endpoint.
HTTP Request
GET /automations/ID/contacts
Query Parameters
Response
Expected Response Code: 200
See JSON code example.
Create Automation
HTTP Request
POST /automations/new
Post Parameters
Name | Description |
---|---|
name | Automation name is the only required field |
alias | string |
description | A description of the automation. |
isPublished | A value of false or true |
Response
Expected Response Code: 201
Properties
Same as Get Automation.
Clone an Automation
Clone an existing automation. To see more advanced example with automation events and so on, see the unit tests.HTTP Request
POST /automations/clone/AUTOMATION_ID
Response
Expected Response Code: 201
Properties
Same as Get Automation.
Edit Automation
PUT creates a automation if the given ID does not exist and clears all the automation information, adds the information from the request. PATCH fails if the automation with the given ID does not exist and updates the automation field values with the values form the request.
HTTP Request
To edit a automation and return a 404 if the automation is not found:
PATCH /automations/ID/edit
To edit a automation and create a new one if the automation is not found:
PUT /automations/ID/edit
Post Parameters
Name | Description |
---|---|
name | Automation name is the only required field |
alias | Name alias generated automatically if not set |
description | A description of the automation. |
isPublished | A value of false or true |
Response
If PUT
, the expected response code is 200
if the automation was edited or 201
if created.
If PATCH
, the expected response code is 200
.
Properties
Same as Get Automation.
Delete Automation
Delete a automation.HTTP Request
DELETE /automations/ID/delete
Response
Expected Response Code: 200
Properties
Same as Get Automation.
Add Contact to a Automation
Manually add a contact to a specific automation.
HTTP Request
POST /automations/AUTOMATION_ID/contact/CONTACT_ID/add
Response
Expected Response Code: 200
See JSON code example.
Remove Contact from a Automation
Manually remove a contact from a specific automation.
HTTP Request
POST /automations/AUTOMATION_ID/contact/CONTACT_ID/remove
Response
Expected Response Code: 200
See JSON code example.