BizKitHub
DocsAPI ReferenceProduct/bff/product/product-category-unlink
postProductAdmin BFF

/bff/product/product-category-unlink

Removes the link between a related category and a product.

ProductpostBffProductProduct-category-unlink

Parameters

JSON body

Request body

application/json
productCodestringRequired

Product code to unlink the category from.

Examplemy-product
categoryCodestringRequired

Category code to unlink.

Exampleelectronics

Response schema

1 status code documented

200Success
successbooleanRequired

Whether the link was removed.

Response example

application/json
{
  "success": false
}

Request example

POST /bff/product/product-category-unlink

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

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key