Feedback boards
Containers that group feedback posts. Each organization can have multiple feedback boards (e.g. Feature Requests, Bug Reports).
A feedback board is a container that groups related feedback posts. Most organizations have a small number of boards — typically one per type of feedback (Feature Requests, Bug Reports, Improvements). Each post belongs to exactly one feedback board.
The API lets you list and retrieve feedback boards. Creating, updating, and deleting boards is dashboard-only in v1.
ProductBridge has two distinct board types — feedback boards (this page) and roadmap boards. They have different schemas and live under different endpoint paths.
The feedback board object
A unique identifier for the board (UUID).
The display name of the board (e.g. "Feature Requests").
URL-safe slug derived from the name (e.g. "feature-requests").
Optional human-readable description shown in the dashboard. May be null.
Optional URL of an icon image displayed alongside the board name. May be null.
Whether end-users can vote on posts in this board.
Whether end-users can leave comments on posts in this board.
Whether the public-facing portal displays the creation date next to each post.
ISO 8601 timestamp at which the board was created.
Example feedback board object
{
"id": "553c3ef8-b8cd-cd15-01ba-12341234abcd",
"name": "Feature Requests",
"slug": "feature-requests",
"description": "Tell us what you want us to build next.",
"icon_url": null,
"is_voting_enabled": true,
"is_commenting_enabled": true,
"show_post_dates": true,
"created_at": "2026-04-01T08:00:00.000Z"
}
What you can do
Last updated 1 week ago
Built with Documentation.AI