Parameters
1 query
Query parameters
· 1categoryCodestringRequiredProduct category code to list mapped parameters for.
Example
electronicsReturns all parameters mapped to a product category. Category-parameter mapping defines which parameters are relevant (and optionally required) for products in this category. Used by the admin UI to show the appropriate parameter form.
1 query
categoryCodestringRequiredProduct category code to list mapped parameters for.
electronics1 status code documented
itemsobject[]RequiredParameters mapped to this category, ordered by position then name.
Category-parameter mapping item.
parameterCodestringRequiredParameter code.
parameterNamestringRequiredParameter display name.
parameterTypestringRequiredParameter data type.
requiredbooleanRequiredWhether the parameter is required for products in this category.
positionnumberRequiredSort order position within this category.
itemCountnumberRequiredTotal number of mapped parameters.
{
"items": [
{
"parameterCode": "example_parameterCode",
"parameterName": "example_parameterName",
"parameterType": "example_parameterType",
"required": false,
"position": 0
}
],
"itemCount": 0
}GET /bff/product-parameter/category-parameters
curl -X GET "https://api.bizkithub.com/bff/product-parameter/category-parameters?categoryCode=electronics" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.