Hosted payment flow
Players complete the payment flow on a provider-hosted surface when available.
INTEGRATE THE PAYMENT FLOW
Connect a gaming platform, merchant server, payment layer, and payment status events through a controlled integration pattern. Actual availability depends on provider capabilities and onboarding approval.
create_payment()
receive_status_event()
verify_payment_status()
update_order()Players complete the payment flow on a provider-hosted surface when available.
A connector may reduce implementation work when supported by the provider and platform.
Direct API integration gives the merchant system more control over events, order state, and verification.
Redirects help return the player to the platform, but merchant systems should verify payment status server-side using provider documentation. Player balance should be credited only after verified successful status, with idempotent handling for duplicate callbacks.
Developer concepts// Conceptual merchant-side flow
payment = create_payment(order)
redirect_player(payment.flow_url)
event = receive_status_event()
status = verify_payment_status(event)
if status == "confirmed":
update_order_once(order, status)
credit_player_balance_only_after_verified_success(order)