Sign in

Update task

documented

Update a Task.

PUT /Tasks/{TASK_ID}Tasksno 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.{{$pod}}.insightly.com/v3.1/Tasks/{{$TASK_ID}}" \
  -X PUT \
  -H "Authorization: Basic {{INSIGHTLY_API_KEY}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -H "If-Match: {{$etag}}" \
  -d '{"title": "{{$title}}", "details": "{{$details}}", "due_date_utc": "{{$due_date_utc}}", "remainder_date_utc": "{{$remainder_date_utc}}", "completed": {{$completed}}, "percent_complete": {{$percent_complete}}, "owner_user_id": {{$owner_user_id}}, "responsible_user_id": {{$responsible_user_id}}, "category_id": {{$category_id}}, "start_date_utc": "{{$start_date_utc}}", "customfields": {{$customfields}} }'
Update task · insightly · OpenIntegrations