0

Quire how to add a task to a board and a board column with your API, i can manage to create tasks but can't assign them to a board with your API.

critic
  • 3
  • 1

1 Answers1

0

to add a task to an existing board set the board property of the PUT /task/{oid} action

to add a column use the addColumn property of the PUT /board/{oid} action

UPDATE:

to place a task into a specific board column you have to set the task status corresponding to the column value (e.g {"status": 10}) PUT /task/{oid}

The task will then 'jump' into the matching column of your board

cor3000
  • 936
  • 1
  • 6
  • 16
  • i need to assign a task to a column, not to create a new column, thanks – critic Mar 09 '20 at 10:38
  • ah seems I misread your question as 2 separate questions ;) "how to add a task to a board" and "add a column to a board" The task status and the board column are linked by status. Did you try updating the the task and setting the task-status matching the column-value? – cor3000 Mar 10 '20 at 14:52