Create task
documentedCreate a new Task.
POST /TasksTasksno implementation yet0 runsNo 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" \
-X POST \
-H "Authorization: Basic {{INSIGHTLY_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"TITLE": "{{$title}}", "DETAILS": "{{$details}}", "DUE_DATE": "{{$due_date}}", "START_DATE": "{{$start_date}}", "STATUS": "{{$status}}", "PRIORITY": {{$priority}}, "PUBLICLY_VISIBLE": {{$publicly_visible}}, "RESPONSIBLE_USER_ID": {{$responsible_user_id}}, "OWNER_USER_ID": {{$owner_user_id}}, "CATEGORY_ID": {{$category_id}}, "PROJECT_ID": {{$project_id}}, "MILESTONE_ID": {{$milestone_id}}, "OPPORTUNITY_ID": {{$opportunity_id}}, "REMINDER_DATE_UTC": "{{$reminder_date_utc}}" }'"