Gestiono
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

FieldRequiredDescription
indexYesType: number
boardIdYesType: number
nameYesType: string
maxTasksNoType: number
systemStateNoType: string

Default payloads

Path params

json
{}

Query

json
{}

Body

json
{
  "index": 1,
  "boardId": 1,
  "name": "string"
}

Sample response

json
{
  "columnId": "<columnId>"
}