Feedback boardsOverview

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

idstring
Required

A unique identifier for the board (UUID).

namestring
Required

The display name of the board (e.g. "Feature Requests").

slugstring
Required

URL-safe slug derived from the name (e.g. "feature-requests").

descriptionstring

Optional human-readable description shown in the dashboard. May be null.

icon_urlstring

Optional URL of an icon image displayed alongside the board name. May be null.

is_voting_enabledboolean
Required

Whether end-users can vote on posts in this board.

is_commenting_enabledboolean
Required

Whether end-users can leave comments on posts in this board.

show_post_datesboolean
Required

Whether the public-facing portal displays the creation date next to each post.

created_atstring
Required

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