interswitch-transactions
Installation
SKILL.md
Interswitch Transactions API
Manage wallet debits, transaction status checks, reversals, and requery operations.
Transaction Endpoints
| Endpoint | Method | Description |
|---|---|---|
/api/v1/transaction/transact |
POST | Debit a wallet |
/api/v1/transaction/reverse |
POST | Reverse a transaction |
/api/v1/transaction/{reference} |
GET | Get transaction by reference |
/collections/api/v1/gettransaction.json |
GET | Requery a web checkout payment |
Debit Wallet
interface DebitWalletDto {
customerId: string; // Wallet PAN or ID
amount: number; // In minor currency (kobo)
Related skills