Referencia de APITasks / Board Column
Create Board Column
← Back to full API reference
POST
/v1/tasks/board-columnAuth required- Validated by Zod schema: postBoardColumn.
Request details
Body fields
| Field | Required | Description |
|---|---|---|
| index | Yes | Type: number |
| boardId | Yes | Type: number |
| name | Yes | Type: string |
| maxTasks | No | Type: number |
| systemState | No | Type: string |
Default payloads
Path params
json
{}Query
json
{}Body
json
{
"index": 1,
"boardId": 1,
"name": "string"
}Sample response
json
{
"columnId": "<columnId>"
}