Parameters
JSON body
Request body
application/jsonorderHashstringRequiredUnique order hash identifier.
internalNoticestringRequiredInternal note visible only to staff.
publicNoticestringRequiredPublic note visible to the customer.
Updates the internal and public notice texts on the order.
JSON body
orderHashstringRequiredUnique order hash identifier.
internalNoticestringRequiredInternal note visible only to staff.
publicNoticestringRequiredPublic note visible to the customer.
1 status code documented
successbooleanRequiredtrue{
"success": true
}POST /bff/order/update-notice
curl -X POST "https://api.bizkithub.com/bff/order/update-notice" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"orderHash": "example_orderHash",
"internalNotice": "example_internalNotice",
"publicNotice": "example_publicNotice"
}'All BizKitHub public API endpoints require authentication via API key.