# Create Task Creates a new task on a deal. Endpoint: POST /v1/crm/create_task Version: 1.4.2 Security: ApiKeyAuth ## Request fields (application/json): - `deal_id` (string, required) The ID of the deal to add the task to. Example: "ETUNQ6ZTW1" - `tasktype` (string, required) The type of task. Use "todo_task" for a standard task or "wait_task" for a waiting/follow-up task. Enum: "todo_task", "wait_task" - `task_title` (string, required) The title of the task. Example: "Follow up on product shipment" - `task_description` (string, required) A detailed description of the task. Example: "Confirm that the product was received and schedule the content creation call." - `deadline` (string, required) The deadline for the task in DD-MM-YYYY format. Example: "25-12-2025" - `assigned_to` (string,null, required) The user ID to assign the task to. Can be null for unassigned tasks. Example: "user_123" ## Response 200 fields ## Response 404 fields