# Create a task Create a manual outreach task. Common types: linkedin_send_message, linkedin_send_connection_request, linkedin_send_inmail, linkedin_like_latest_post, linkedin_endorse_skills. Endpoint: POST /flows/api/tasks Version: 2.0.0 Security: bearerAuth ## Request fields (application/json): - `lead_uuid` (string, required) - `sender_profile_uuid` (string, required) - `type` (string) Example: "linkedin_send_message" - `text` (string, required) Example: "Hi John, I'd love to connect!" - `note` (string) - `schedule_at` (string, required) Example: "2026-03-01T10:00:00.000000Z" - `timezone` (string) ## Response 201 fields (application/json): - `uuid` (string) - `team_id` (integer) - `user_id` (integer) - `lead_uuid` (string) - `sender_profile_uuid` (string) - `flow_uuid` (string,null) - `type` (string) Example: "linkedin_send_message" - `text` (string) - `note` (string,null) - `status` (string) Enum: "in_progress", "closed", "canceled", "failed" - `automation` (string) Enum: "manual", "auto" - `schedule_at` (string) - `created_at` (string) - `updated_at` (string)