Create task
documentedCreate a new task. Note: All requests to tasks require a project_id parameter except the list of tasks.
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://www.triggerapp.com/api/v1/tasks" \
-X POST \
-H "Accept: application/json" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d 'token={{TRIGGERAPP_TOKEN}}&api_key={{TRIGGERAPP_API_KEY}}&task[title]={{$title}}&task[description]={{$description}}&project_id={{$project_id}}'