Gestiono
Referencia de APITasks / Board

Create Board

← Back to full API reference
POST/v1/tasks/boardAuth required
  • Validated by Zod schema: postBoard.

Request details

Body fields

FieldRequiredDescription
nameYesType: string
divisionIdYesType: number
descriptionNoType: string
typeYesType: enumExample: custom
columnsNoType: arrayExample:
columns[]YesType: object
columns[].nameYesType: string
columns[].maxTasksNoType: number
columns[].systemStateNoType: string

Default payloads

Path params

json
{}

Query

json
{}

Body

json
{
  "name": "string",
  "divisionId": 1,
  "type": "custom"
}

Sample response

json
{
  "boardId": "<boardId>"
}