Notifications
Lists all notifications of the user logged.
Table Specific Information
Select
The driver will use the Trello API to process WHERE clause conditions built with the following columns and operators. The rest of the filter is executed client-side within the driver. For example, the following query is processed server-side:
Notifications differ from each other from Type. A notification could be of type: addedToBoard, commentCard etc.
SELECT * FROM Notifications SELECT Text FROM Notifications WHERE Type='commentCard'You can turn off client-side execution by setting SupportEnhancedSQL to false in which case any search criteria that refers to other columns will cause an error.
Columns
Name | Type | Description |
NotificationId [KEY] | String | The Id of the notification |
Type | String | The type of the notification |
Text | String | The text value returned if the notification is of type commentCard |
Date | Datetime | The date when the notification has been sent |
DateRead | Datetime | The date when the notification has been read |
Unread | Boolean | Determines if the notification has not been read |
MemberID | String | The Id of the member who received the notification |