/bff/order/add-product
Adds an existing product as a new line item to the order and recalculates the total price.
OrderpostBffOrderAdd-product
Parameters
7 body
Body · 7
orderHashstringRequiredUnique order hash identifier.
productCodestringRequiredProduct code to link the item to.
productVariantCodestringProduct variant code.
labelstringRequiredItem label displayed on invoice.
pricenumberRequiredUnit price including VAT.
vatnumberRequiredVAT rate in percent (e.g. 21).
countnumberRequiredQuantity to add.
Request
POST /bff/order/add-product
curl -X POST "https://api.bizkithub.com/bff/order/add-product" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"orderHash": "example_orderHash",
"productCode": "example_productCode",
"productVariantCode": "example_productVariantCode",
"label": "example_label",
"price": 0,
"vat": 0,
"count": 0
}'Response
JSON payload
{
"success": true
}All response codes
1 status code documented
Need an API key?
All BizKitHub API endpoints require authentication via API key.