BizKitHub
DocsAPI ReferenceOrder/bff/order/set-assignee
postOrderAdmin BFF

/bff/order/set-assignee

Nominates a contact to handle this order manually. Resolves the target by cuRefNo (customer reference number) or email — invalid input is silently ignored. Send cuRefNo: null AND email: null to clear the assignee.

OrderpostBffOrderSet-assignee

Parameters

JSON body

Request body

application/json
hashstringRequired

Unique order hash identifier.

cuRefNostring | nullOptional
One of 2:
Variant 1
string

16-char customer reference number.

Variant 2
null
emailstring | nullOptional
One of 2:
Variant 1
string

Contact e-mail (existing or new — new e-mails auto-create a contact).

Variant 2
null

Response schema

1 status code documented

200Success
successbooleanRequired
Default: true
contactIdnumberOptional

Response example

application/json
{
  "success": true,
  "contactId": 0
}

Request example

POST /bff/order/set-assignee

post
curl -X POST "https://api.bizkithub.com/bff/order/set-assignee" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "hash": "example_hash"
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key