DocsAPI ReferencePost Category/bff/post-category/list
getPost CategoryAdmin BFF

/bff/post-category/list

Returns a paginated list of all post categories for the organisation. Supports data grid query parameters for filtering and pagination.

Post CategorygetBffPost-categoryList

Parameters

3 query

3 total
Query · 3
pagestring

Page number (1-based) for pagination.

limitstring

Maximum items per page (1–500, default 50).

mainCategoryCodestring

Filter by main category code.

Request

GET /bff/post-category/list

get
curl -X GET "https://api.bizkithub.com/bff/post-category/list?page=1&limit=50&mainCategoryCode=blog" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

Paginated list of post categories.

{
  "items": [
    {
      "id": "abc123def456ghij",
      "parentId": "abc123def456ghij",
      "title": "Tech News",
      "active": true,
      "postCount": 42
    }
  ],
  "itemCount": 15
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key