Create Task API
Create a task with an API key.
Create a task in a project of the organization that owns the API key.
Endpoint
POST /api/v1/tasksBody
| Field | Type | Required | Description |
|---|---|---|---|
projectId | string | Yes | Target project id. |
title | string | Yes | Task title (max 200 chars). |
description | string | No | Description. |
status | string | No | Default todo. |
priority | string | No | now | next | later (default next). |
effort | string | No | xs | s | m | l | xl. |
assigneeId | string | No | Assignee user id. |
dueDate | number | No | Due date (epoch ms). |
isClaudeJob / isUrgent / isImportant | boolean | No | Flags. |
Response
Returns { "task": { ... } }.