Gestiono
Referencia de APITasks / Board Task

Create Board Task

← Back to full API reference
POST/v1/tasks/board-taskAuth required

Board task endpoints are used to create, update, and organize tasks across boards and columns.

  • Validated by Zod schema: postBoardTask.

Request details

Body fields

FieldRequiredDescription
columnIdYesType: number
clientIdNoType: number
parentIdNoType: number
endDateNoType: string
startDateNoType: string
indexNoType: number
titleYesType: string
contentNoType: string
dueDateNoType: string
assignedToNoType: number
metadataNoType: unknown
clientdataNoType: unknown

Default payloads

Path params

json
{}

Query

json
{}

Body

json
{
  "columnId": 1,
  "title": "string"
}

Sample response

json
{
  "taskId": "<taskId>"
}