Get user notifications
Returns a paginated list of notifications for the current user.
What are Notifications? Notifications inform users about important events in the system:
- Project updates
- Task assignments
- Vacation request approvals/rejections
- Comments and mentions
- System announcements
- And more…
What is returned:
- Notification type and entity information
- Human-readable message
- Read/unread status
- Creation date
- Creator information
Query parameters:
unreadOnly: Set totrueto return only unread notifications
Note: Supports server-side pagination, sorting, and filtering via grid query parameters.
/account/notificationsAuthorizationOAuth2 access token · headerrequiredapi:readAuthorizationBearer token (JWT) · headerrequiredpagenumberPage number (1-based)
pageSizenumberNumber of items per page
viewIdstringView identifier for saved grid configurations
filtersstringJSON string containing filter configuration.
Available Fields:
- id (string): Notification ID
- type (set): Notification type
- entity (string): Related entity type
- entityId (string): Related entity ID
- creatorId (string): Creator user ID
- isRead (boolean): Read status
- createdAt (date): Creation timestamp
Filter Structure:
[
{
"type": "string|number|date|set|boolean|array|task_status|task_type",
"fieldName": "field_name",
"value": {
"comparison": "comparison_type",
"value": "filter_value"
}
}
]
Group Filters (AND/OR Combinations):
[
{
"type": "group",
"fieldName": "group0.18807479823070028",
"value": {
"type": "or",
"filters": [
{
"type": "string",
"fieldName": "fileName",
"value": {
"comparison": "contain",
"value": "aa"
}
},
{
"type": "number",
"fieldName": "rowCount",
"value": {
"comparison": ">=",
"value": 33
}
}
]
}
}
]
Available Comparison Operators:
- id (string): Notification ID (string filter). Available comparisons: contain, not_contain, equal, starts_with, ends_with, is_empty, is_not_empty
- type (set): Notification type (set filter). Available comparisons: in, not_in, is_empty, is_not_empty
- entity (string): Related entity type (string filter). Available comparisons: contain, not_contain, equal, starts_with, ends_with, is_empty, is_not_empty
- entityId (string): Related entity ID (string filter). Available comparisons: contain, not_contain, equal, starts_with, ends_with, is_empty, is_not_empty
- creatorId (string): Creator user ID (string filter). Available comparisons: contain, not_contain, equal, starts_with, ends_with, is_empty, is_not_empty
- isRead (boolean): Read status (boolean filter). Available comparisons: equal, not_equal
- createdAt (date): Creation timestamp (date filter). Available comparisons: equal, not_equal, >, <, >=, <=, between, lastMonth, thisMonth, is_empty, is_not_empty
Note: Use quickSearch parameter for simple text search instead of adding it to filters.
sortstringJSON array of sort objects.
Sortable Fields:
- id: Notification ID
- type: Notification type
- entity: Related entity type
- entityId: Related entity ID
- creatorId: Creator user ID
- isRead: Read status
- createdAt: Creation timestamp
Sort Structure:
[
{
"field": "field_name",
"direction": "asc|desc"
}
]
Default Sort: createdAt (desc)
fieldsToReturnstring[]Comma-separated list of field names to include in response items. If not provided, all fields are returned.
Available Fields: id, type, entity, entityId, creatorId, isRead, createdAt, message
Paginated notifications with human-readable messages
itemsobject[]Show propertiesHide properties
objectcreatedAtstring<date-time>creatorIdstringentitystringentityIdstringidstringisReadbooleanmessagestringHuman-readable message
typestringpagenumberpageSizenumbertotalnumberValidation errors
errorsobjectShow propertiesHide properties
unreadOnlystring[]messagestringstatusCodenumberUnauthorized - Invalid or missing authentication token
Forbidden - Insufficient API scopes or permissions