get_notifications
Retrieve a list of notifications from Backlog by specifying ID range, count, sorting, and read status to manage project updates efficiently.
Instructions
Returns list of notifications
Input Schema
Name | Required | Description | Default |
---|---|---|---|
alreadyRead | No | Whether to include already read notifications | |
count | No | Number of notifications to retrieve | |
maxId | No | Maximum notification ID | |
minId | No | Minimum notification ID | |
order | No | Sort order | |
resourceAlreadyRead | No | Whether to include notifications for already read resources |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"alreadyRead": {
"description": "Whether to include already read notifications",
"type": "boolean"
},
"count": {
"description": "Number of notifications to retrieve",
"type": "number"
},
"maxId": {
"description": "Maximum notification ID",
"type": "number"
},
"minId": {
"description": "Minimum notification ID",
"type": "number"
},
"order": {
"description": "Sort order",
"enum": [
"asc",
"desc"
],
"type": "string"
},
"resourceAlreadyRead": {
"description": "Whether to include notifications for already read resources",
"type": "boolean"
}
},
"type": "object"
}