Nurama Developers
Boards

Create a new board

Creates a new kanban board for a project with default or custom columns. Default columns are Backlog, To Do, In Progress, In Review, and Done.

POST
/boards

Creates a new kanban board for a project with default or custom columns. Default columns are Backlog, To Do, In Progress, In Review, and Done.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

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" \  -H "Content-Type: application/json" \  -d '{    "projectId": "5a8591dd-4039-49df-9202-96385ba3eff8",    "name": "string"  }'
{  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",  "projectId": "5a8591dd-4039-49df-9202-96385ba3eff8",  "creatorId": "688ebf54-d343-4104-8711-82c2feac534a",  "name": "string",  "description": "string",  "visibility": [    "creator"  ],  "status": "active",  "pendingDeleteAt": "2019-08-24T14:15:22Z",  "followers": [    "6021b93c-6a2e-4145-985c-40bb9e171532"  ],  "tags": [    "a424dc99-d215-4281-ad2d-a3a9bc179925"  ],  "sortOrder": 0,  "inheritanceId": "09c886ac-e6e5-4263-a494-a6e14f7e4f46",  "columns": [    {      "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"    }  ],  "createdAt": "2019-08-24T14:15:22Z",  "updatedAt": "2019-08-24T14:15:22Z"}