Notifications
Use this endpoint to obtain details on Adaptix's notifications.
Get Notification
HTTP Request
GET /notifications/ID
Response
Expected Response Code: 200
See JSON code example.
Notification Properties
Name | Type | Description |
---|---|---|
id | int | ID of the notification |
name | string | Title of the notification |
heading | string | Heading of the notification |
message | string | Message of the notification |
url | string | URL to go to when the notification is clicked |
isPublished | bool | Published state |
publishUp | datetime/null | Date/time when the notification should be published |
publishDown | datetime/null | Date/time the notification should be un published |
dateAdded | datetime | Date/time notification was created |
createdBy | int | ID of the user that created the notification |
createdByUser | string | Name of the user that created the notification |
dateModified | datetime/null | Date/time notification was last modified |
modifiedBy | int | ID of the user that last modified the notification |
modifiedByUser | string | Name of the user that last modified the notification |
language | string | Language locale of the notification |
readCount | int | Total notification read count |
sentCount | int | Unique notification sent count |
category | null/object | Category |
List Notifications
HTTP Request
GET /notifications
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 Notification.
Create Notification
HTTP Request
POST /notifications/new
Post Parameters
Name | Type | Description |
---|---|---|
id | int | ID of the notification |
name | string | Title of the notification |
heading | string | Heading of the notification |
message | string | Message of the notification |
url | string | URL to go to when the notification is clicked |
isPublished | bool | Published state |
publishUp | datetime/null | Date/time when the notification should be published |
publishDown | datetime/null | Date/time the notification should be un published |
language | string | Language locale of the notification |
Response
Expected Response Code: 201
Properties
Same as Get Notification.
Edit Notification
PUT creates a notification if the given ID does not exist and clears all the notification information, adds the information from the request. PATCH fails if the notification with the given ID does not exist and updates the notification field values with the values form the request.
HTTP Request
To edit a notification and return a 404 if the notification is not found:
PATCH /notifications/ID/edit
To edit a notification and create a new one if the notification is not found:
PUT /notifications/ID/edit
Post Parameters
Name | Type | Description |
---|---|---|
id | int | ID of the notification |
name | string | Title of the notification |
heading | string | Heading of the notification |
message | string | Message of the notification |
url | string | URL to go to when the notification is clicked |
isPublished | bool | Published state |
publishUp | datetime/null | Date/time when the notification should be published |
publishDown | datetime/null | Date/time the notification should be un published |
language | string | Language locale of the notification |
Response
If PUT
, the expected response code is 200
if the notification was edited or 201
if created.
If PATCH
, the expected response code is 200
.
Properties
Same as Get Notification.
Delete Notification
Delete a notification.HTTP Request
DELETE /notifications/ID/delete
Response
Expected Response Code: 200
Properties
Same as Get Notification.