Nurama Developers

update_task_details

Update a task's subject, description, or assignee.

Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.

Update a task's subject, description, or assignee. WRITE OPERATION — every other project member sees the change immediately. Pass only the fields you want to change. To CLEAR a field (description or assignee), pass it as null explicitly — omitting it leaves the current value alone.

Input

PropertyTypeRequiredDescription
taskIdstringyesUUID of the task to update.
subjectstringnoNew task title (≤ 280 chars). Omit to leave unchanged. min length 1. max length 280
descriptionstring | nullnoNew description, plain text or markdown. Pass null to clear. Omit to leave unchanged.
assignedToIdstring | nullnoUUID of the new assignee. Pass null to unassign. Omit to leave unchanged.

JSON Schema

{
  "type": "object",
  "properties": {
    "taskId": {
      "type": "string",
      "description": "UUID of the task to update."
    },
    "subject": {
      "type": "string",
      "minLength": 1,
      "maxLength": 280,
      "description": "New task title (≤ 280 chars). Omit to leave unchanged."
    },
    "description": {
      "type": [
        "string",
        "null"
      ],
      "description": "New description, plain text or markdown. Pass null to clear. Omit to leave unchanged."
    },
    "assignedToId": {
      "type": [
        "string",
        "null"
      ],
      "description": "UUID of the new assignee. Pass null to unassign. Omit to leave unchanged."
    }
  },
  "required": [
    "taskId"
  ],
  "additionalProperties": false
}

On this page