Create workstream task
documentedCreate a new task within a workstream.
POST /workstreams/{workstream_id}/tasksWorkstreamsno 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://api.workboard.com/api/v1/workstreams/{{$workstream_id}}/tasks" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"title": "{{$title}}", "description": "{{$description}}", "assignee_id": "{{$assignee_id}}", "due_date": "{{$due_date}}", "priority": "{{$priority}}", "status": "{{$status}}"}'