DocsAPI ReferenceProduct Parameter/bff/product-parameter/list
getProduct ParameterAdmin BFF

/bff/product-parameter/list

Returns all parameter definitions for the organisation. Each parameter includes its type, flags, associated group, and count of predefined values (for enum/color types). Optionally filtered by group code.

Product ParametergetBffProduct-parameterList

Parameters

1 query

1 total
Query · 1
groupCodestring

Filter parameters by group code. If not provided, returns all parameters.

Request

GET /bff/product-parameter/list

get
curl -X GET "https://api.bizkithub.com/bff/product-parameter/list?groupCode=technical-specs" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

List of parameter definitions.

{
  "items": [
    {
      "id": 0,
      "code": "example_code",
      "name": "example_name",
      "group": {
        "code": "example_code",
        "name": "example_name"
      },
      "type": "example_type",
      "unit": "example_unit",
      "filterable": false,
      "comparable": false,
      "variantForming": false,
      "multiValue": false,
      "position": 0,
      "active": false,
      "valueCount": 0
    }
  ],
  "itemCount": 0
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key