Create attachment for task
documentedAttach a new file to a task.
POST /tasks/{task_id}/attachmentsTasksno 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.meistertask.com/api/tasks/{{$task_id}}/attachments" \
-X POST \
-H "Accept: application/json" \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-F "attachment[data]=@{{$path_to_file}};filename={{$filename}}"