BizKitHub
DocsAPI ReferenceProduct Parameter/bff/product-parameter/category-parameters
getProduct ParameterAdmin BFF

/bff/product-parameter/category-parameters

Returns 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.

Product ParametergetBffProduct-parameterCategory-parameters

Parameters

1 query

Query parameters

· 1
categoryCodestringRequired

Product category code to list mapped parameters for.

Exampleelectronics

Response schema

1 status code documented

200SuccessParameters assigned to the category.
itemsobject[]Required

Parameters mapped to this category, ordered by position then name.

Each array item:

Category-parameter mapping item.

parameterCodestringRequired

Parameter code.

parameterNamestringRequired

Parameter display name.

parameterTypestringRequired

Parameter data type.

requiredbooleanRequired

Whether the parameter is required for products in this category.

positionnumberRequired

Sort order position within this category.

itemCountnumberRequired

Total number of mapped parameters.

Response example

application/json
{
  "items": [
    {
      "parameterCode": "example_parameterCode",
      "parameterName": "example_parameterName",
      "parameterType": "example_parameterType",
      "required": false,
      "position": 0
    }
  ],
  "itemCount": 0
}

Request example

GET /bff/product-parameter/category-parameters

get
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"

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key