Create task list
documentedCreate a new task list in a project. ([developers.activecollab.com](https://developers.activecollab.com/api-documentation/v1/projects/whats-new.html?utm_source=openai))
POST /api/v1/projects/{project_id}/task-listsProjectsno 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://activecollab.com/api/v1/projects/{{$project_id}}/task-lists" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "X-Angie-AuthApiToken: {{ACTIVECOLLAB_TOKEN}}" \
-d '{"name": "{{$name}}", "start_on": "{{$start_on}}", "due_on": "{{$due_on}}"}'