Nurama Developers
Board Columns

Update a column

Update column name, description, color, isDefault, taskStatus, sortOrder, or reviewersCanContribute.

PUT
/boards/{boardId}/columns/{columnId}

Update column name, description, color, isDefault, taskStatus, sortOrder, or reviewersCanContribute.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

boardId*string
Formatuuid
columnId*string
Formatuuid

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Properties1 <= properties

Response Body

application/json

application/json

application/json

application/json

curl -X PUT "https://example.com/boards/497f6eca-6276-4993-bfeb-53cbbbba6f08/columns/497f6eca-6276-4993-bfeb-53cbbbba6f08" \  -H "Content-Type: application/json" \  -d '{}'
{  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",  "boardId": "a654038e-9287-48a2-acfd-90b8cfa8b1f4",  "name": "string",  "description": "string",  "color": "string",  "isDefault": true,  "taskStatus": "pending",  "reviewersCanContribute": true,  "sortOrder": 0,  "createdAt": "2019-08-24T14:15:22Z",  "updatedAt": "2019-08-24T14:15:22Z"}