Google Super

GOOGLESUPER_MOVE_TASK

Moves the specified task to another position in the destination task list.

Remote googlesuper

Other tools also called GOOGLESUPER_MOVE_TASK? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "task": {
      "type": "string",
      "title": "Task",
      "examples": [
        "taskId1"
      ],
      "description": "Task identifier."
    },
    "parent": {
      "type": "string",
      "title": "Parent",
      "default": null,
      "examples": [
        "newParentTaskId1"
      ],
      "nullable": true,
      "description": "New parent task identifier. If not provided, the task is moved to the top level."
    },
    "previous": {
      "type": "string",
      "title": "Previous",
      "default": null,
      "examples": [
        "previousTaskId1"
      ],
      "nullable": true,
      "description": "New previous sibling task identifier. If not provided, the task is moved to the first position among its siblings."
    },
    "tasklist": {
      "type": "string",
      "title": "Tasklist",
      "examples": [
        "taskListId1"
      ],
      "description": "Task list identifier."
    },
    "destinationTasklist": {
      "type": "string",
      "title": "Destination Tasklist",
      "default": null,
      "examples": [
        "destinationTaskListId1"
      ],
      "nullable": true,
      "description": "Destination task list identifier. If set, the task is moved to this list; otherwise, it remains in its current list."
    }
  }
}