/bff/complaint/add-item
Adds a new item to an existing complaint. Optionally links to an original order item.
ComplaintpostBffComplaintAdd-item
Parameters
6 body
Body · 6
complaintIdstringRequiredComplaint external ID.
orderItemIdnumberLink to original order item being complained about.
labelstringRequiredItem description as displayed in the complaint.
quantitynumberNumber of items. Defaults to 1.
pricenumberClaimed unit price of the item.
currencyIdnumberCurrency ID for the item price.
Request
POST /bff/complaint/add-item
curl -X POST "https://api.bizkithub.com/bff/complaint/add-item" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"complaintId": "a1b2c3d4",
"orderItemId": 501,
"label": "Wireless headphones",
"quantity": 1,
"price": 2490,
"currencyId": 1
}'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.