Create task activity
documentedCreate a new task activity (time entry or note) for a task.
POST /tasks/{task_id}/task_activitiesTasksno 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/{{$task_id}}/task_activities" \
-X POST \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"token": "{{TRIGGERAPP_API_KEY}}", "api_key": "{{TRIGGERAPP_API_KEY}}", "task_activity": {"notes": "{{$notes}}", "end_at": "{{$end_at}}", "duration": {{$duration}}, "private": {{$private}} }}'