unlink_task
Remove an existing relationship between two tasks.
Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.
Remove an existing relationship between two tasks. WRITE OPERATION. The relationship is symmetric — the link is removed regardless of which direction it was originally created in.
Input
| Property | Type | Required | Description |
|---|---|---|---|
taskId | string | yes | UUID of one task in the relationship. |
linkedTaskId | string | yes | UUID of the other task in the relationship. |
JSON Schema
{
"type": "object",
"properties": {
"taskId": {
"type": "string",
"description": "UUID of one task in the relationship."
},
"linkedTaskId": {
"type": "string",
"description": "UUID of the other task in the relationship."
}
},
"required": [
"taskId",
"linkedTaskId"
],
"additionalProperties": false
}