Parameters
No parameters required
This endpoint takes no path, query, header or body parameters.
Returns all parameter groups for the authenticated organisation. Groups are used to visually organize parameters into sections (e.g. "Dimensions", "Technical specs").
No parameters required
This endpoint takes no path, query, header or body parameters.
1 status code documented
itemsobject[]RequiredAll parameter groups ordered by position then name.
Parameter group item.
idnumberRequiredInternal group ID.
codestringRequiredUnique group code (URL-friendly slug).
namestringRequiredDisplay name of the group.
positionnumberRequiredSort order position.
activebooleanRequiredWhether the group is active.
itemCountnumberRequiredTotal number of groups.
{
"items": [
{
"id": 0,
"code": "example_code",
"name": "example_name",
"position": 0,
"active": false
}
],
"itemCount": 0
}GET /bff/product-parameter/group-list
curl -X GET "https://api.bizkithub.com/bff/product-parameter/group-list" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.