BizKitHub
DocsAPI ReferenceProduct Parameter/bff/product-parameter/group-add
postProduct ParameterAdmin BFF

/bff/product-parameter/group-add

Creates a new parameter group for organizing parameters into logical sections. The code is auto-generated from the name if not provided.

Product ParameterpostBffProduct-parameterGroup-add

Parameters

JSON body

Request body

application/json
namestringRequired

Display name for the group (e.g. "Technical specs").

Length: 1
ExampleTechnical specs
codestringOptional

URL-friendly code. If not provided, generated from name via slugification.

Exampletechnical-specs
positionnumberOptional

Sort order position. Defaults to 0.

Example0

Response schema

1 status code documented

200Success
idnumberRequired

ID of the created group.

codestringRequired

Final code of the created group (after slugification).

Response example

application/json
{
  "id": 0,
  "code": "example_code"
}

Request example

POST /bff/product-parameter/group-add

post
curl -X POST "https://api.bizkithub.com/bff/product-parameter/group-add" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "name": "Technical specs",
  "code": "technical-specs",
  "position": 0
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key