Create task and assign to a user
documentedCreate a new task and assign it to a user.
POST /v1/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://api.crmworkspace.com/v1/tasks" \
-X POST \
-H "ACCESS_TOKEN: {{WEALTHBOX_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"name": "{{$title}}", "due_date": "{{$due_date}}", "complete": {{$complete}}, "category": {{$category}}, "linked_to": [{"id": {{$linked_id}}, "type": "user"}]}'