Update Task

Update a task

Parameters

ParameterTypeRequiredDescription
task_idnumberRequiredTask ID
textstringOptionalTask title
descriptionstringOptionalTask description
due_datestringOptionalDue date (YYYY-MM-DD)
due_timestringOptionalDue time (HH:MM:SS)
due_onstringOptionalDue date-time (ISO UTC)
responsiblenumberOptionalUser ID
privatebooleanOptionalPrivate task
completedbooleanOptionalMark completed
labelsarrayOptionalLabel IDs or text
file_idsarrayOptionalFile IDs
reminderobjectOptionalReminder config
hookbooleanOptionalExecute hooks
silentbooleanOptionalNo notifications

Examples

MCP Tool Call

{
  "name": "podio_updateTask",
  "arguments": {
    "task_id": 12345,
    "text": "example",
    "description": "example",
    "due_date": "example",
    "due_time": "example",
    "due_on": "example",
    "responsible": 12345,
    "private": true,
    "completed": true,
    "labels": "example",
    "file_ids": "example",
    "reminder": "example",
    "hook": true,
    "silent": true
  }
}

REST API

curl -X POST https://api.syncello.io/v1/tools/podio/updateTask \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "task_id": 12345,
  "text": "example",
  "description": "example",
  "due_date": "example",
  "due_time": "example",
  "due_on": "example",
  "responsible": 12345,
  "private": true,
  "completed": true,
  "labels": "example",
  "file_ids": "example",
  "reminder": "example",
  "hook": true,
  "silent": true
}'