Sign in

Import list-items into checklist

documented

Import a block of items into the specified checklist.

POST /checklists/{checklist_id}/import.(json|xml)Checklistsno 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://checkvist.com/checklists/{{$checklist_id}}/import.json" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"checklist_id":"{{$checklist_id}}", "import_content":"{{$import_content}}", "import_content_note":"{{$import_content_note}}", "parent_id":{{$parent_id}}, "parse_tasks":{{$parse_tasks}}, "position":{{$position}}, "replace_existing":{{$replace_existing}}, "separate_with_empty_line":"{{$separate_with_empty_line}}", "status":{{$status}}, "add_files": {"1":"{{$add_files_1}}", "2":"{{$add_files_2}}"} }'