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 | |
audiencerequired | object | Who can view this board (legacy shape — derived from the internal access matrix). public = everyone; authenticated = signed-in portal users; team = admins & members only; segments = members of the listed segments. |
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"