Nurama Developers

acknowledge_task

Toggle the calling user's acknowledgement of a task (mark as seen, or un-mark).

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

Toggle the calling user's acknowledgement of a task (mark as seen, or un-mark). WRITE OPERATION but personal — only affects the calling user's view, not visible to others. Use when the user says "mark this as read" or "I've seen this".

Input

PropertyTypeRequiredDescription
taskIdstringyesUUID of the task to acknowledge.

JSON Schema

{
  "type": "object",
  "properties": {
    "taskId": {
      "type": "string",
      "description": "UUID of the task to acknowledge."
    }
  },
  "required": [
    "taskId"
  ],
  "additionalProperties": false
}

On this page