manage_launch_task
Create, update, or delete launch tasks in ProductPlan to track progress, assign responsibilities, and manage completion status.
Instructions
Create, update, or delete a launch task.
USE WHEN: "Add task", "Mark complete", "Assign task", "Delete task" Actions: create (name+section_id), update (task_id), delete (task_id) FAILS WHEN: create without name or section_id, update/delete without task_id (get IDs from get_launch_tasks). Use list_users to get valid assigned_user_id values.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | create, update, or delete | |
| assigned_user_id | No | User ID to assign (get from list_users) | |
| description | No | Task description | |
| due_date | No | YYYY-MM-DD | |
| launch_id | Yes | Launch ID | |
| name | No | Task name | |
| section_id | No | Section ID (for create) | |
| status | No | Task status | |
| task_id | No | Task ID (for update/delete) |