Feedback postsOverview

Feedback posts

Individual pieces of feedback created by end-users or by your team. The core resource of the API.

A feedback post represents a single user request, bug report, or improvement suggestion. Posts are the primary unit of data in ProductBridge — most of the dashboard, the public portal, and the integrations are built around them.

The API lets you retrieve, list, update, merge, and soft-delete feedback posts. Creating posts via the public API is not yet supported in v1 — posts are created via the dashboard, the public portal, integrations (Zendesk / Freshdesk sidebars), or the AI ingestion pipeline.

List filters in v1. The list endpoint supports board_id, status_id, and search filters. Tag/author filters and Canny-style sort options (newest / score / trending) are not yet available — sorting defaults to newest-first.

The feedback post object

idstring
Required

A unique identifier for the post (UUID).

titlestring
Required

The post's title (1–512 chars).

descriptionstring

The post's body / description. May be null.

slugstring
Required

URL-safe slug derived from the title.

board_idstring
Required

UUID of the feedback board this post lives on.

author_idstring
Required

UUID of the user who created the post.

owner_idstring

UUID of the team member who owns / is assigned to this post. May be null.

status_idstring

UUID of the status this post is in. May be null for newly-created posts before a status is assigned.

category_idstring

UUID of the category this post is assigned to. May be null.

etastring

ISO 8601 date (YYYY-MM-DD) when the post is expected to ship. May be null.

moderation_status_codestring
Required

Moderation state. Common values: "accepted", "pending", "rejected".

created_atstring
Required

ISO 8601 timestamp at which the post was created.

updated_atstring
Required

ISO 8601 timestamp of the most recent update.

Example feedback post object

{
  "id": "aa3c3ef8-b8cd-cd15-01ba-postpost0001",
  "title": "Add dark mode to the dashboard",
  "description": "It would be great to have a dark theme for late-night sessions.",
  "slug": "add-dark-mode-to-the-dashboard",
  "board_id": "553c3ef8-b8cd-cd15-01ba-12341234abcd",
  "author_id": "bb3c3ef8-b8cd-cd15-01ba-useruser0001",
  "owner_id": null,
  "status_id": "883c3ef8-b8cd-cd15-01ba-status000001",
  "category_id": "553c3ef8-b8cd-cd15-01ba-12bb12bb12bb",
  "eta": null,
  "moderation_status_code": "accepted",
  "created_at": "2026-04-15T10:30:00.000Z",
  "updated_at": "2026-04-20T12:05:11.000Z"
}

What you can do

Was this page helpful?

Last updated 1 week ago

Built with Documentation.AI