BizKitHub
DocsAPI ReferenceComplaint/bff/complaint/update
postComplaintAdmin BFF

/bff/complaint/update

Updates complaint fields. Only provided fields are modified; omitted fields remain unchanged.

ComplaintpostBffComplaintUpdate

Parameters

JSON body

Request body

application/json
complaintIdstringRequired

Complaint external ID.

Examplea1b2c3d4
descriptionstringOptional

Updated complaint description and reason.

ExampleProduct arrived with a cracked screen.
customerNamestringOptional

Updated customer full name.

ExampleJan Novák
emailstringOptional

Updated customer e-mail.

Examplejan@example.com
phonestringOptional

Updated customer phone number.

Example+420 777 123 456
refundCountrystringOptional

ISO 3166-1 alpha-2 country code for refund.

ExampleCZ
refundBankAccountstringOptional

Updated bank account number for refund.

Example123456789/0100
refundVariableSymbolstringOptional

Updated variable symbol for refund transfer.

Example25000087
branchIdnumberOptional

Updated branch ID for inspection delivery.

Example1
serviceIdnumberOptional

Updated external service provider ID.

Example1
dueDatestringOptionaldate-time

Updated deadline for complaint resolution.

Example2026-02-15T00:00:00.000Z

Response schema

1 status code documented

200Success
successbooleanRequired

Indicates whether the operation completed successfully.

Default: true

Response example

application/json
{
  "success": true
}

Request example

POST /bff/complaint/update

post
curl -X POST "https://api.bizkithub.com/bff/complaint/update" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "complaintId": "a1b2c3d4",
  "description": "Product arrived with a cracked screen.",
  "customerName": "Jan Novák",
  "email": "jan@example.com",
  "phone": "+420 777 123 456",
  "refundCountry": "CZ",
  "refundBankAccount": "123456789/0100",
  "refundVariableSymbol": "25000087",
  "branchId": 1,
  "serviceId": 1,
  "dueDate": "2026-02-15T00:00:00.000Z"
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key