DocsAPI ReferenceComplaint/bff/complaint/add-item
postComplaintAdmin BFF

/bff/complaint/add-item

Adds a new item to an existing complaint. Optionally links to an original order item.

ComplaintpostBffComplaintAdd-item

Parameters

6 body

6 total
Body · 6
complaintIdstringRequired

Complaint external ID.

orderItemIdnumber

Link to original order item being complained about.

labelstringRequired

Item description as displayed in the complaint.

quantitynumber

Number of items. Defaults to 1.

pricenumber

Claimed unit price of the item.

currencyIdnumber

Currency ID for the item price.

Request

POST /bff/complaint/add-item

post
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.

Get API Key