Sign in

Bulk update Tasks

documented

Update or create multiple Task records.

PUT /activity/tasks.apiActivitiesno 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://secure.workbooks.com/activity/tasks.api" \
  -X PUT \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Accept: application/json" \
  -d "_authenticity_token={{AUTHENTICITY_TOKEN}}" \
  -d "_ff[]=id" \
  -d "_ft[]=eq" \
  -d "_fc[]={{$task_id}}" \
  -d "__method[]=PUT" \
  -d "id[]={{$task_id}}" \
  -d "lock_version[]={{$lock_version}}" \
  -d "name[]={{$title}}" \
  -d "description[]={{$description}}" \
  -d "due_date[]={{$due_date}}"