get_watching_list_items
Retrieve a user's list of watching items from Backlog project management tools by providing the user ID, enabling efficient tracking of monitored tasks and issues.
Instructions
Returns list of watching items for a user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
userId | Yes | User ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"userId": {
"description": "User ID",
"type": "number"
}
},
"required": [
"userId"
],
"type": "object"
}