v1

latestOpenAPI 3.1.02026-07-14159142161.9 KB
tasksService

Create kanban stage

Create kanban stage

post/tasks/v1/stages

Request body

titlestring required
colorstring required
afterIdstring

The ID of the stage to add after.

sortinteger
group_idinteger

Example request

{
  "title": "In progress",
  "color": "#ff0000",
  "sort": 6,
  "group_id": 3
}

Response

OK

idstring
titlestring
colorstring
sortinteger
afterIdstring

The ID of the stage to add after.

Example response

{
  "title": "To do",
  "color": "#ff0000",
  "sort": 10
}