Marketing Messages
Use this endpoint to obtain details, create, update or delete Adaptix's messages.
Get Marketing Message
HTTP Request
GET /messages/ID
Response
Expected Response Code: 200
See JSON code example.
Marketing Message Properties
Name | Type | Description |
---|---|---|
id | int | ID of the message |
name | string | Internal name of the message |
isPublished | bool | Published state |
publishUp | datetime/null | Date/time when the message should be published |
publishDown | datetime/null | Date/time the message should be un published |
dateAdded | datetime | Date/time message was created |
createdBy | int | ID of the user that created the message |
createdByUser | string | Name of the user that created the message |
dateModified | datetime/null | Date/time message was last modified |
modifiedBy | int | ID of the user that last modified the message |
modifiedByUser | string | Name of the user that last modified the message |
channels | array | Array of channels configured for the marketing message |
List Marketing Messages
HTTP Request
GET /messages
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 Marketing Message.
Create Marketing Message
HTTP Request
POST /messages/new
Post Parameters
Name | Type | Description |
---|---|---|
id | int | ID of the message |
name | string | Internal name of the message |
isPublished | bool | Published state |
publishUp | datetime/null | Date/time when the message should be published |
publishDown | datetime/null | Date/time the message should be un published |
channels | array | Array of channels |
Response
Expected Response Code: 201
Properties
Same as Get Marketing Message.
Edit Marketing Message
PUT creates a message if the given ID does not exist and clears all the message information, adds the information from the request. PATCH fails if the message with the given ID does not exist and updates the message field values with the values form the request.
HTTP Request
To edit a message and return a 404 if the message is not found:
PATCH /messages/ID/edit
To edit a message and create a new one if the message is not found:
PUT /messages/ID/edit
Post Parameters
Name | Type | Description |
---|---|---|
id | int | ID of the message |
name | string | Internal name of the message |
isPublished | bool | Published state |
publishUp | datetime/null | Date/time when the message should be published |
publishDown | datetime/null | Date/time the message should be un published |
channels | array | Array of channels |
Response
If PUT
, the expected response code is 200
if the message was edited or 201
if created.
If PATCH
, the expected response code is 200
.
Properties
Same as Get Marketing Message.
Delete Marketing Message
Delete a message.HTTP Request
DELETE /messages/ID/delete
Response
Expected Response Code: 200
Properties
Same as Get Marketing Message.