Nurama Developers

get_unacknowledged_task_count

Return the count of tasks assigned to the calling identity that have not yet been acknowledged, scoped to a project.

Read-only tool.

Return the count of tasks assigned to the calling identity that have not yet been acknowledged, scoped to a project. Use as a cheap "anything new for me here?" probe before paging through list_my_tasks.

Input

PropertyTypeRequiredDescription
projectIdstringyesUUID of the project.

JSON Schema

{
  "type": "object",
  "properties": {
    "projectId": {
      "type": "string",
      "description": "UUID of the project."
    }
  },
  "required": [
    "projectId"
  ],
  "additionalProperties": false
}

On this page