unfollow_task
Have the calling user stop following a task — no further notifications about its activity.
Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.
Have the calling user stop following a task — no further notifications about its activity. WRITE OPERATION but personal — only affects the calling user's notification subscriptions.
Input
| Property | Type | Required | Description |
|---|---|---|---|
taskId | string | yes | UUID of the task to unfollow. |
JSON Schema
{
"type": "object",
"properties": {
"taskId": {
"type": "string",
"description": "UUID of the task to unfollow."
}
},
"required": [
"taskId"
],
"additionalProperties": false
}