v1

latestOpenAPI 3.1.02026-07-1414757122.7 KB
pipeline

Create kanban stage

Creates a new kanban stage in the pipeline. Example: POST /crm/v1/entities/deals/kanban/stage

post/crm/v1/entities/{entity}/kanban/stage

Request body

titlestring
colorstring
sortinteger

Example request

{
  "title": "New Deal",
  "color": "#6AD01F",
  "sort": 10
}

Response

Created

titlestring
colorstring
stage_codestring
system_stageboolean
sortinteger
reasonsstring

Example response

{
  "title": "New Deal",
  "color": "#6AD01F",
  "stage_code": "new_deal",
  "sort": 10
}