Payouts and webhooks
Once you are accepting payments, webhooks keep your system in sync and payouts move funds out to merchants and partners.
Webhooks
Subscribe to webhooks so Monbits Pay can notify your server when something changes, instead of polling. Typical events:
payment.confirmed— an order was paid and reconciled.payment.flagged— a payment was held for AML review.payout.completed— a payout settled on-chain.
Each webhook includes the payment_id or payout_id, your reference, the amount and the network. Always verify the signature header before trusting a webhook, and respond with 2xx to acknowledge.
Payouts
Send funds to merchants, partners or your own wallets with API-driven payouts.
POST /v1/payouts
{
"amount": "500.00",
"currency": "USDT",
"network": "tron",
"destination": "T...address",
"reference": "merchant_42_payout"
}
Approval flows
For larger amounts you can require approval before a payout executes. Configure thresholds and approvers in the dashboard so payouts above a limit wait for a second person to confirm.
Merchant accounts
If you operate a marketplace, onboard each merchant as a sub-account. You can set per-merchant fees, track balances across every chain, and pay each merchant out independently.
Audit trails
Every payment, payout and approval is recorded with a full audit trail, so you can always answer who did what and when.