Parameters
1 query
Query parameters
· 1productCodestringRequiredProduct code to list parameter values for.
my-productReturns all parameter values assigned to a product, including variant-level assignments. Each assignment contains the parameter definition, the concrete value (enum, string, number, or boolean), and optionally the variant code if the assignment is variant-specific.
1 query
productCodestringRequiredProduct code to list parameter values for.
my-product1 status code documented
itemsobject[]RequiredAll parameter assignments for the product.
Single parameter assignment on a product.
assignmentIdnumberRequiredUnique assignment ID (used to remove the assignment).
parameterCodestringRequiredParameter code.
parameterNamestringRequiredParameter display name.
parameterTypestringRequiredParameter data type.
parameterUnitstringOptionalParameter unit (e.g. "mm").
groupCodestringOptionalGroup code, if the parameter is grouped.
groupNamestringOptionalGroup display name.
valueCodestringOptionalPredefined value code (for enum/color types).
valueLabelstringOptionalPredefined value display label (for enum/color types).
colorHexstringOptionalHex color code (for color-type values).
valueStringstringOptionalFree-text value (for string type).
valueNumbernumberOptionalNumeric value (for number type).
valueBooleanbooleanOptionalBoolean value (for boolean type).
variantCodestringOptionalVariant code if this assignment is variant-specific. Undefined for product-level.
itemCountnumberRequiredTotal number of assignments.
{
"items": [
{
"assignmentId": 0,
"parameterCode": "example_parameterCode",
"parameterName": "example_parameterName",
"parameterType": "example_parameterType",
"parameterUnit": "example_parameterUnit",
"groupCode": "example_groupCode",
"groupName": "example_groupName",
"valueCode": "example_valueCode",
"valueLabel": "example_valueLabel",
"colorHex": "example_colorHex",
"valueString": "example_valueString",
"valueNumber": 0,
"valueBoolean": false,
"variantCode": "example_variantCode"
}
],
"itemCount": 0
}GET /bff/product-parameter/product-values
curl -X GET "https://api.bizkithub.com/bff/product-parameter/product-values?productCode=my-product" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.