Referencia de APITasks / Board Task
Create Board Task
← Back to full API reference
POST
/v1/tasks/board-taskAuth requiredBoard task endpoints are used to create, update, and organize tasks across boards and columns.
- Validated by Zod schema: postBoardTask.
Request details
Body fields
| Field | Required | Description |
|---|---|---|
| columnId | Yes | Type: number |
| clientId | No | Type: number |
| parentId | No | Type: number |
| endDate | No | Type: string |
| startDate | No | Type: string |
| index | No | Type: number |
| title | Yes | Type: string |
| content | No | Type: string |
| dueDate | No | Type: string |
| assignedTo | No | Type: number |
| metadata | No | Type: unknown |
| clientdata | No | Type: unknown |
Default payloads
Path params
json
{}Query
json
{}Body
json
{
"columnId": 1,
"title": "string"
}Sample response
json
{
"taskId": "<taskId>"
}