Nurama Developers

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

PropertyTypeRequiredDescription
taskIdstringyesUUID of one task in the relationship.
linkedTaskIdstringyesUUID 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
}

On this page