BizKitHub
DocsAPI ReferenceProduct Parameter/bff/product-parameter/category-remove
postProduct ParameterAdmin BFF

/bff/product-parameter/category-remove

Removes the mapping between a parameter and a product category. Does not delete existing product assignments — only removes the category-level mapping.

Product ParameterpostBffProduct-parameterCategory-remove

Parameters

JSON body

Request body

application/json
categoryCodestringRequired

Product category code to remove the mapping from.

Exampleelectronics
parameterCodestringRequired

Parameter code to remove from the category.

Exampleweight

Response schema

1 status code documented

200Success
successbooleanRequired

Whether the mapping was removed.

Response example

application/json
{
  "success": false
}

Request example

POST /bff/product-parameter/category-remove

post
curl -X POST "https://api.bizkithub.com/bff/product-parameter/category-remove" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "categoryCode": "electronics",
  "parameterCode": "weight"
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key