Point Triggers
Use this endpoint to obtain details on Adaptix's point triggers.
Get Point Trigger
HTTP Request
GET /points/triggers/ID
Response
Expected Response Code: 200
See JSON code example.
Point Trigger Properties
Name | Type | Description | scoreId |
---|---|---|---|
id | int | ID of the point | |
name | string | Name of the point | |
description | string/null | Description of the point | |
scoreId | int/null | Score ID for this trigger | |
category | string | Category name | |
isPublished | bool | Published state | |
publishUp | datetime/null | Date/time when the point should be published | |
publishDown | datetime/null | Date/time the point should be un published | |
dateAdded | datetime | Date/time point was created | |
createdBy | int | ID of the user that created the point | |
createdByUser | string | Name of the user that created the point | |
dateModified | datetime/null | Date/time point was last modified | |
modifiedBy | int | ID of the user that last modified the point | |
modifiedByUser | string | Name of the user that last modified the point | |
points | int | The minimum number of points before the trigger events are executed | |
color | string | Color hex to highlight the lead with. This value does NOT include the pound sign (#) | |
events | array | Array of TriggerEvent entities for this trigger. See below. |
Trigger Event Properties
Name | Type | Description |
---|---|---|
id | int | ID of the event |
type | string | Event type |
name | string | Name of the event |
description | string | Description of the event |
order | int | Event order |
properties | array | Configured properties for the event |
List Point Triggers
HTTP Request
GET /points/triggers
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. |
minimal | Return only array of entities without additional lists in it. |
Response
Expected Response Code: 200
See JSON code example.
Properties
Same as Get Point Trigger.
Create Point Trigger
HTTP Request
POST /points/triggers/new
Post Parameters
Same as Get Point Trigger. Point Trigger events can be created/edited via the point trigger event arrays placed in the point trigger array.
Response
Expected Response Code: 201
Properties
Same as Get Point Trigger.
Edit Point Trigger
PUT creates a point trigger if the given ID does not exist and clears all the point trigger information, adds the information from the request. Point Trigger events will be also deleted if not present in the request. PATCH fails if the point trigger with the given ID does not exist and updates the point trigger field values with the values point trigger the request.
HTTP Request
To edit a point trigger and return a 404 if the point trigger is not found:
PATCH /points/triggers/ID/edit
To edit a point trigger and create a new one if the point trigger is not found:
PUT /points/triggers/ID/edit
Post Parameters
Same as Get Point Trigger. Point Trigger events can be created/edited via the point triggers event arrays placed in the point trigger array.
Response
If PUT
, the expected response code is 200
if the point trigger was edited or 201
if created.
If PATCH
, the expected response code is 200
.
Properties
Same as Get Point Trigger.
Delete Point Trigger
Delete a point trigger.HTTP Request
DELETE /points/triggers/ID/delete
Response
Expected Response Code: 200
Properties
Same as Get Point Trigger.
Delete Point Trigger Events
The following examples will show how to delete events with ID 56 and 59.
Delete a point trigger events.HTTP Request
DELETE /points/triggers/ID/events/delete?events[]=56&events[]=59
Response
Expected Response Code: 200
Properties
Same as Get Point Trigger.
Get Point Trigger Event Types
Get array of available Point Trigger Event TypesHTTP Request
GET /points/triggers/events/types
Response
Expected Response Code: 200