Nurama Developers
Board Columns

Reorder columns

Updates the sortOrder of multiple columns at once.

PUT
/boards/{boardId}/columns/reorder

Updates the sortOrder of multiple columns at once.

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 PUT "https://example.com/boards/497f6eca-6276-4993-bfeb-53cbbbba6f08/columns/reorder" \  -H "Content-Type: application/json" \  -d '{    "columns": [      {        "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",        "sortOrder": 0      }    ]  }'
[  {    "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"  }]