v1

latestOpenAPI 3.1.02026-07-14159142161.9 KB
tasksService

Update kanban stage by id

Update kanban stage by id

patch/tasks/v1/stages/{stageId}

Path parameters

stageIdstring required

Stage id

Request body

titlestring
colorstring
sortinteger

Example request

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

Response

OK

idstring
titlestring
colorstring
sortinteger
afterIdstring

The ID of the stage to add after.

Example response

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