Skip to main content
POST
/
api
/
v2
/
tasks
/
{taskId}
/
columns
Update task column
curl --request POST \
  --url https://api.example.com/api/v2/tasks/{taskId}/columns \
  --header 'Content-Type: application/json' \
  --data '
{
  "key": "<string>",
  "value": "<string>",
  "type": "string"
}
'
{
  "success": true
}

Path Parameters

taskId
string
required

The unique identifier of the task to update the column of.

Body

application/json
key
string
required

The column key to update or insert.

value
required

The value to set for the column.

type
enum<string>

The semantic type of the column. Defaults to string when omitted.

Available options:
string,
number,
boolean,
date,
datetime

Response

Default Response

success
boolean
required