Sign in

Edit tasks

documented

Edit one or more tasks.

POST /3/tasks/edit.phpTasksno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.toodledo.com/3/tasks/edit.php" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Accept: application/json" \
  -d 'access_token={{OAUTH2_ACCESS_TOKEN}}&tasks=[{"id":{{$task_id}},"title":"{{$title}}","folder":{{$folder}},"context":{{$context}},"goal":{{$goal}},"location":{{$location}},"tag":"{{$tag}}","duedate":{{$duedate}},"startdate":{{$startdate}},"duetime":{{$duetime}},"starttime":{{$starttime}},"remind":{{$remind}},"repeat":"{{$repeat}}","note":"{{$note}}","meta":"{{$meta}}","parent":{{$parent}},"duration":{{$duration}},"priority":{{$priority}},"status":{{$status}},"star":{{$star}},"reschedule":{{$reschedule}}}]&fields={{$fields}}'
Edit tasks · Toodledo · OpenIntegrations