cURL
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 }
Updates or inserts a column value for a task. If the column key already exists, its value will be updated. If it doesn’t exist, a new column will be added.
The unique identifier of the task to update the column of.
The column key to update or insert.
The value to set for the column.
The semantic type of the column. Defaults to string when omitted.
string
number
boolean
date
datetime
Default Response