Parameters
JSON body
Request body
application/jsonorderHashstringRequiredUnique order hash identifier.
providerstringRequiredPayment provider code (e.g. "stripe", "gopay").
Initiates an online payment session for the order and returns a redirect URL.
JSON body
orderHashstringRequiredUnique order hash identifier.
providerstringRequiredPayment provider code (e.g. "stripe", "gopay").
1 status code documented
successbooleanRequiredtrueredirectUrlstringOptional{
"success": true,
"redirectUrl": "example_redirectUrl"
}POST /bff/order/create-payment
curl -X POST "https://api.bizkithub.com/bff/order/create-payment" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"orderHash": "example_orderHash",
"provider": "example_provider"
}'All BizKitHub public API endpoints require authentication via API key.