Nurama Developers
Board Columns

Add a column to a board

Adds a new column to the board. If sortOrder is not provided, it is placed after the last column.

POST
/boards/{boardId}/columns

Adds a new column to the board. If sortOrder is not provided, it is placed after the last column.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

boardId*string
Formatuuid

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/boards/497f6eca-6276-4993-bfeb-53cbbbba6f08/columns" \  -H "Content-Type: application/json" \  -d '{    "name": "string"  }'
{  "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"}