BizKitHub
DocsAPI ReferenceComplaint/bff/complaint/resolution-method-create
postComplaintAdmin BFF

/bff/complaint/resolution-method-create

Creates a new complaint resolution method for the organisation.

ComplaintpostBffComplaintResolution-method-create

Parameters

JSON body

Request body

application/json
codestringRequired

Unique resolution method code within the organisation.

Examplesrepairexchangerefundcredit
labelstringRequired

Human-readable resolution method label displayed in UI.

ExamplesOpravaVýměnaVrácení penězDobropis
positionnumberOptional

Display order position. Lower values appear first.

Example0

Response schema

1 status code documented

200Success
successbooleanRequired

Indicates whether the operation completed successfully.

Default: true
idnumberRequired

Newly created resolution method ID.

Example1

Response example

application/json
{
  "success": true,
  "id": 1
}

Request example

POST /bff/complaint/resolution-method-create

post
curl -X POST "https://api.bizkithub.com/bff/complaint/resolution-method-create" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "code": "repair",
  "label": "Oprava",
  "position": 0
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key