Parameters
3 query
Query parameters
· 3pagestringOptionalPage number (1-based) for pagination.
1limitstringOptionalMaximum items per page (1–500, default 50).
50mainCategoryCodestringOptionalFilter by main category code.
blogReturns a paginated list of all post categories for the organisation. Supports data grid query parameters for filtering and pagination.
3 query
pagestringOptionalPage number (1-based) for pagination.
1limitstringOptionalMaximum items per page (1–500, default 50).
50mainCategoryCodestringOptionalFilter by main category code.
blog1 status code documented
itemsobject[]RequiredArray of category items matching the query criteria.
Single category item in the list.
idstringRequiredCategory external ID (16-char unique identifier).
abc123def456ghijparentIdstringOptionalExternal ID of the parent category. Omitted for top-level categories.
abc123def456ghijtitlestringRequiredLocalized category name, truncated to 140 characters for list view.
Tech NewsinsertedDateDate | string | string | numberRequiredDate when the category was created.
Date when the category was created.
activebooleanRequiredWhether the category is currently active.
truepostCountnumberRequiredTotal number of posts in this category and all its descendant categories (recursive count).
42itemCountnumberRequiredTotal number of categories matching the query (before pagination).
15{
"items": [
{
"id": "abc123def456ghij",
"parentId": "abc123def456ghij",
"title": "Tech News",
"active": true,
"postCount": 42
}
],
"itemCount": 15
}GET /bff/post-category/list
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"All BizKitHub public API endpoints require authentication via API key.