Parameters
JSON body
Request body
application/jsonhashstringRequiredUnique order hash identifier.
Manually marks the order as paid. Inserts a manual_mark receipt row for the unpaid remainder so the leakage audit (SUM(price) WHERE kind=manual_mark) stays accurate. Prefer /bff/order-payment/record from new UI — that supports combined payments and the explicit cash / bank_transfer / credit kinds.
JSON body
hashstringRequiredUnique order hash identifier.
1 status code documented
successbooleanRequiredtrue{
"success": true
}POST /bff/order/mark-as-paid
curl -X POST "https://api.bizkithub.com/bff/order/mark-as-paid" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"hash": "example_hash"
}'All BizKitHub public API endpoints require authentication via API key.