GET
/boards/{boardId}Get a board
Get a single board by ID
Parameters
| Name | In | Type | Description |
|---|---|---|---|
boardIdrequired | path | string | Board ID |
Response
Board details
| Field | Type | Description |
|---|---|---|
idrequired | string | TypeID - a type-prefixed UUID |
namerequired | string | |
slugrequired | string | URL-friendly identifier |
descriptionrequired | string | null | |
isPublicrequired | boolean | |
settingsrequired | object | Board-specific settings |
createdAtrequired | string | ISO 8601 timestamp |
updatedAtrequired | string | ISO 8601 timestamp |
Errors
401Unauthorized404Board not foundExample request
curl \
"https://feedback.quackback.io/api/v1/boards/:boardId" \
-H "Authorization: Bearer qb_your_api_key_here"