Unlock the full potential of VTUmax with our comprehensive API, hooks, and filters. Build seamless integrations and extend functionality effortlessly.
Retrieve a list of transactions:
GET /api/v1/transactions
Initiate a payment:
POST /api/v1/payments
Check payment status:
GET /api/v1/payments/{id}/status
Use the following hooks to customize VTUmax:
vtumax_before_payment
- Triggered before a payment is processed.vtumax_after_payment
- Triggered after a payment is completed.vtumax_on_error
- Triggered when an error occurs during a transaction.Modify VTUmax behavior with these filters:
vtumax_payment_gateway
- Customize the payment gateway options.vtumax_transaction_fee
- Adjust the transaction fee dynamically.vtumax_currency_format
- Modify the currency display format.Here are some examples to get you started:
// Example: Fetch transactions
fetch('/api/v1/transactions')
.then(response => response.json())
.then(data => console.log(data));
// Example: Initiate a payment
fetch('/api/v1/payments', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ amount: 1000, currency: 'NGN' })
}).then(response => response.json())
.then(data => console.log(data));
Find answers to common questions: