Feedback boardsList

List feedback boards

Return every active feedback board for the authenticated organization as a JSON array.

Returns every active feedback board for the authenticated organization. The response is a flat JSON array — most organizations have a small bounded number of boards, so this endpoint is intentionally not paginated.

Endpoint

POST https://api.productbridge.io/api/external/v1/feedback-boards/list

Arguments

body
api_keystring
Required

Your organization's public API key. See Authentication.

Returns

A JSON array of feedback board objects. Empty when the organization has no active boards.

Unlike paginated endpoints, this endpoint returns the array directly — no { items, has_next_page, cursor } envelope.

Example request

curl -X POST https://api.productbridge.io/api/external/v1/feedback-boards/list \
  -H 'Content-Type: application/json' \
  -d '{ "api_key": "pb_YOUR_PUBLIC_API_KEY" }'

Example response

[
  {
    "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"
  },
  {
    "id": "663c3ef8-b8cd-cd15-01ba-22342234bcde",
    "name": "Bug Reports",
    "slug": "bug-reports",
    "description": null,
    "icon_url": null,
    "is_voting_enabled": false,
    "is_commenting_enabled": true,
    "show_post_dates": true,
    "created_at": "2026-04-15T12:30:00.000Z"
  }
]

Errors

StatusBodyCause
401{"detail":{"error":"invalid api_key"}}Missing / unknown / inactive api_key.

See Errors for the full envelope shape.