Nurama Developers
Boards

Get boards for a project

Returns all active boards for a project, filtered by the user's visibility role. Each board includes its columns. Optional search and tags filters.

GET
/boards/project/{projectId}

Returns all active boards for a project, filtered by the user's visibility role. Each board includes its columns. Optional search and tags filters.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

projectId*string

The project to get boards for

Formatuuid

Query Parameters

search?string

Case-insensitive substring match on board name

Lengthlength <= 500
visibility?string

Narrow results to a specific visibility (must be a subset of what the caller can already access)

Value in

  • "creator"
  • "reviewer"
tags?array<>

Filter by one or more tag IDs (matches boards containing any of the supplied tags)

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/boards/project/497f6eca-6276-4993-bfeb-53cbbbba6f08"
[  {    "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"  }]