Notifications
Lists all notifications of the user logged.
Table Specific Information
Select
The add-in 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 Text FROM Notifications WHERE Type = 'commentCard'
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. |