Ticktick

TICKTICK_UPDATE_PROJECT

Tool to update an existing project. Use when you need to modify project details like name, color, sort order, view mode, or kind after selecting a project ID.

Remote ticktick

Other tools also called TICKTICK_UPDATE_PROJECT? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "kind": {
      "enum": [
        "TASK",
        "NOTE"
      ],
      "type": "string",
      "title": "Kind",
      "default": null,
      "examples": [
        "TASK"
      ],
      "nullable": true,
      "description": "Kind of the project, 'TASK' or 'NOTE'"
    },
    "name": {
      "type": "string",
      "title": "Name",
      "default": null,
      "examples": [
        "New Project Name"
      ],
      "nullable": true,
      "description": "New name of the project"
    },
    "color": {
      "type": "string",
      "title": "Color",
      "default": null,
      "examples": [
        "#F18181"
      ],
      "nullable": true,
      "description": "Hex color code for the project, e.g. '#F18181'"
    },
    "viewMode": {
      "enum": [
        "list",
        "kanban",
        "timeline"
      ],
      "type": "string",
      "title": "View Mode",
      "default": null,
      "examples": [
        "list"
      ],
      "nullable": true,
      "description": "View mode for the project"
    },
    "projectId": {
      "type": "string",
      "title": "Project Id",
      "examples": [
        "6226ff9877acee87727f6bca"
      ],
      "description": "Project identifier to update"
    },
    "sortOrder": {
      "type": "integer",
      "title": "Sort Order",
      "default": null,
      "examples": [
        0
      ],
      "nullable": true,
      "description": "Sort order value of the project"
    }
  }
}