Skip to main content
PATCH
/
columns
/
{column_id}
{
  "success": true,
  "column": {
    "id": "a1b2c3d4",
    "title": "In Progress",
    "position": 2,
    "stage": "in_queue",
    "finished": false,
    "start_timer": true
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

title
string

The title of the column

position
integer

The column's position (0-indexed) within the project

stage
enum<string>

The internal stage type of the column. Can be 'in_queue', 'in_progress', or 'done'

Available options:
in_queue,
in_progress,
done
finished
boolean

Whether tasks in this column are marked as finished

start_timer
boolean

Whether tasks in this column should start the timer automatically

Response

200 - application/json

Successful response

success
boolean
Example:

true

column
object