create_tasks
Creates confirmed tasks in Rocketlane after user confirmation. Requires project ID, task name, description, assignee details, due date, and phase.
Instructions
Create confirmed tasks in Rocketlane. Call this ONLY after user confirmation.
Each task dict must have:
project_id (str): Rocketlane project ID
task_name (str): Short task subject
description (str): Task details
assignee_user_id (int): userId from fetch_project_members() — never guess
assignee_email (str): emailId of the assignee
assignee_first_name (str): Assignee first name
assignee_last_name (str): Assignee last name
due_date (str | null): YYYY-MM-DD or null
phase_id (int): phaseId from fetch_phases() for this project — never guess
phase_name (str): phaseName matching the phase_id
Returns: List of created task results. Each result includes phase and assignees fields from the API response confirming they were correctly set.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tasks | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |