Due date of the task. Accepts simple date (YYYY-MM-DD) or full ISO 8601 format (YYYY-MM-DDTHH:mm:ss.sssZ)
status
string
No
—
Status of the task
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID" }, "taskListId": { "type": "string", "description": "Task list ID to create the task in" }, "title": { "type": "string", "description": "Title of the task" }, "notes": { "type": "string", "description": "Notes of the task" }, "due": { "type": "string", "description": "Due date of the task. Accepts simple date (YYYY-MM-DD) or full ISO 8601 format (YYYY-MM-DDTHH:mm:ss.sssZ)" }, "status": { "type": "string", "enum": [ "needsAction", "completed" ], "description": "Status of the task" } }, "required": [ "PCID", "title" ]}
Update an existing task in Google TasksParameters:
Parameter
Type
Required
Default
Description
taskId
string
Yes
—
Task ID to update
taskListId
string
No
—
Task list ID to update the task in
title
string
No
—
Title of the task
notes
string
No
—
Notes of the task
due
string
No
—
Due date of the task. Accepts simple date (YYYY-MM-DD) or full ISO 8601 format (YYYY-MM-DDTHH:mm:ss.sssZ)
status
string
No
—
Status of the task
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID" }, "taskId": { "type": "string", "description": "Task ID to update" }, "taskListId": { "type": "string", "description": "Task list ID to update the task in" }, "title": { "type": "string", "description": "Title of the task" }, "notes": { "type": "string", "description": "Notes of the task" }, "due": { "type": "string", "description": "Due date of the task. Accepts simple date (YYYY-MM-DD) or full ISO 8601 format (YYYY-MM-DDTHH:mm:ss.sssZ)" }, "status": { "type": "string", "enum": [ "needsAction", "completed" ], "description": "Status of the task" } }, "required": [ "PCID", "taskId" ]}