Help collectionsList

List help collections

Paginated list of every help collection in your organization, in the order they appear on your help center.

Returns a paginated list of help collections for the authenticated organization, in the same order users see them on your help center: curated position first, then name.

Endpoint

POST https://api.productbridge.io/api/external/v1/help-collections/list

Arguments

body
api_keystring
Required

Your organization's public API key. See Authentication.

body
limitinteger

Number of items per page. Min 1, max 100. Defaults to 25.

body
cursorstring

Opaque pagination cursor returned by the previous page. Omit for the first page.

Most organizations have fewer than 25 collections, so the default page size usually returns all of them in one call. Still check has_next_page rather than assuming.

Returns

The standard cursor-paginated envelope, whose items are help collection objects.

{
  "items": [ /* help collection objects */ ],
  "has_next_page": false,
  "cursor": null
}

Example request

curl -X POST https://api.productbridge.io/api/external/v1/help-collections/list \
  -H 'Content-Type: application/json' \
  -d '{
    "api_key": "pb_YOUR_PUBLIC_API_KEY",
    "limit": 50
  }'

Example response

{
  "items": [
    {
      "id": "553c3ef8-b8cd-cd15-01ba-12bb12bb12bb",
      "name": "Getting Started",
      "slug": "getting-started",
      "description": "Set up your account and learn the basics.",
      "icon": "rocket",
      "color": "#4E938A",
      "seq_number": "1000.0000",
      "category_count": 4,
      "created_at": "2026-08-01T10:12:00",
      "updated_at": "2026-08-04T09:30:00"
    },
    {
      "id": "773c3ef8-b8cd-cd15-01ba-99bb99bb99bb",
      "name": "Billing & Plans",
      "slug": "billing-plans",
      "description": "Invoices, upgrades, and receipts.",
      "icon": "credit-card",
      "color": "#F59E0B",
      "seq_number": "2000.0000",
      "category_count": 2,
      "created_at": "2026-08-02T14:05:00",
      "updated_at": "2026-08-02T14:05:00"
    }
  ],
  "has_next_page": false,
  "cursor": null
}

Keep limit constant while walking pages. Cursors are minted against the limit that produced them, so changing it mid-walk can return overlapping items.

Errors

StatusBodyCause
401{"detail":{"error":"invalid api_key"}}Missing / unknown / inactive api_key.
403{"detail":{"error":"The Help Center is not enabled on your current plan..."}}Your plan does not include the knowledgebase feature.
422Validation error envelopelimit outside 1–100, or a field has the wrong type.

See Errors for the full envelope shape and a recommended client-side handler.