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

/bff/product/product-category-link

Links a related category to a product. Idempotent — re-linking the same category is a no-op.

ProductpostBffProductProduct-category-link

Parameters

JSON body

Request body

application/json
productCodestringRequired

Product code to link the category to.

Examplemy-product
categoryCodestringRequired

Category code to link.

Exampleelectronics

Response schema

1 status code documented

200Success
successbooleanRequired

Whether the link was created.

Response example

application/json
{
  "success": false
}

Request example

POST /bff/product/product-category-link

post
curl -X POST "https://api.bizkithub.com/bff/product/product-category-link" \
  -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