Point Actions
Use this endpoint to obtain details on Adaptix's point actions.
Get Point Action
HTTP Request
GET /points/ID
Response
Expected Response Code: 200
See JSON code example.
Point Action Properties
Name | Type | Description |
---|---|---|
id | int | ID of the point |
name | string | Name of the point |
description | string/null | Description of the point |
category | string | Category name |
type | string | Point action type |
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 |
delta | int | The number of points to give the lead when executing this action |
properties | array | Configured properties for this point action |
List Point Actions
HTTP Request
GET /points
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 Action.
Create Point Action
HTTP Request
POST /points/new
Post Parameters
Same as Get Point Action. Point Action fields and actions can be created/edited via the point actions/actions arrays in the point action array.
Response
Expected Response Code: 201
Properties
Same as Get Point Action.
Edit Point Action
PUT creates a point action if the given ID does not exist and clears all the point action inpoint actionation, adds the inpoint actionation from the request. Point Action fields and actions will be also deleted if not present in the request. PATCH fails if the point action with the given ID does not exist and updates the point action field values with the values point action the request.
HTTP Request
To edit a point action and return a 404 if the point action is not found:
PATCH /points/ID/edit
To edit a point action and create a new one if the point action is not found:
PUT /points/ID/edit
Post Parameters
Same as Get Point Action. Point Action fields and actions can be created/edited via the point actions/actions arrays in the point action array.
Response
If PUT
, the expected response code is 200
if the point action was edited or 201
if created.
If PATCH
, the expected response code is 200
.
Properties
Same as Get Point Action.
Delete Point Action
Delete a point action.HTTP Request
DELETE /points/ID/delete
Response
Expected Response Code: 200
Properties
Same as Get Point Action.
Get Point Action Types
Get array of available Point Action TypesHTTP Request
GET /points/actions/types
Response
Expected Response Code: 200