Interswitch cardless
18 AI agent skills for Interswitch API integration — automate payment workflows with TypeScript, Node.js, and Next.js
npx -y skills add rexedge/interswitch --skill interswitch-cardlessAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Interswitch Cardless Payments API — generate single and bulk paycodes for ATM cash withdrawal without a card. Use this skill whenever implementing cardless withdrawal, generating paycodes for customers, managing bulk paycode operations, or building cash disbursement platforms. Also use when you see references to paycode, cardless withdrawal, /api/v1/paycode, ATM withdrawal without card, or paycode generation endpoints.
SKILL.md
5.4 KB, ~1.2k tokens by cl100k_base, as published. Nobody here has run it
Interswitch Cardless Payments API
Generate paycodes that allow customers to withdraw cash from ATMs without a physical card.
Cardless Payment Flow
- Customer requests withdrawal (specify amount)
- System generates a paycode
- Customer receives paycode via SMS/app
- Customer enters paycode at any Interswitch-enabled ATM
- Cash is dispensed
Endpoints
| Endpoint | Method | Description |
|---|---|---|
/api/v1/paycode | POST | Generate single paycode |
/api/v1/paycode/bulk | POST | Generate bulk paycodes |
/api/v1/paycode/{code} | GET | Check paycode status |
/api/v1/paycode/{code} | DELETE | Cancel a paycode |
Generate Single Paycode
interface PaycodeRequest {
amount: number; // Amount in kobo
senderName: string;
senderPhone: string; // +234XXXXXXXXXX
beneficiaryPhone: string; // +234XXXXXXXXXX
beneficiaryName: string;
transactionRef: string;
currency?: string; // Default: 'NGN'
expiryMinutes?: number; // Paycode validity period
}
interface PaycodeResponse {
responseCode: string;
responseDescription: string;
paycode: string; // The generated paycode
transactionRef: string;
amount: number;
expiryDate: string;
}
async function generatePaycode(
data: PaycodeRequest
): Promise<PaycodeResponse> {
const headers = await getAuthHeaders();
const response = await fetch(
`${process.env.INTERSWITCH_BASE_URL}/api/v1/paycode`,
{
method: 'POST',
headers: { ...headers, 'Content-Type': 'application/json' },
body: JSON.stringify(data),
}
);
if (!response.ok) {
throw new Error(`Paycode generation failed: ${response.status}`);
}
return response.json();
}
Generate Bulk Paycodes
interface BulkPaycodeRequest {
entries: PaycodeRequest[];
batchRef: string; // Unique batch reference
}
interface BulkPaycodeResponse {
responseCode: string;
batchRef: string;
paycodes: PaycodeResponse[];
successCount: number;
failureCount: number;
}
async function generateBulkPaycodes(
data: BulkPaycodeRequest
): Promise<BulkPaycodeResponse> {
const headers = await getAuthHeaders();
const response = await fetch(
`${process.env.INTERSWITCH_BASE_URL}/api/v1/paycode/bulk`,
{
method: 'POST',
headers: { ...headers, 'Content-Type': 'application/json' },
body: JSON.stringify(data),
}
);
if (!response.ok) {
throw new Error(`Bulk paycode generation failed: ${response.status}`);
}
return response.json();
}
Check Paycode Status
async function getPaycodeStatus(
paycode: string
): Promise<PaycodeResponse> {
const headers = await getAuthHeaders();
const response = await fetch(
`${process.env.INTERSWITCH_BASE_URL}/api/v1/paycode/${encodeURIComponent(paycode)}`,
{ method: 'GET', headers }
);
return response.json();
}
Cancel Paycode
async function cancelPaycode(
paycode: string
): Promise<{ responseCode: string; responseDescription: string }> {
const headers = await getAuthHeaders();
const response = await fetch(
`${process.env.INTERSWITCH_BASE_URL}/api/v1/paycode/${encodeURIComponent(paycode)}`,
{ method: 'DELETE', headers }
);
return response.json();
}
Complete Flow Example
// 1. Generate paycode for customer
const paycode = await generatePaycode({
amount: 500000, // ₦5,000
senderName: 'John Doe',
senderPhone: '+2348012345678',
beneficiaryPhone: '+2349087654321',
beneficiaryName: 'Jane Doe',
transactionRef: `PC_${Date.now()}_${crypto.randomUUID().slice(0, 8)}`,
expiryMinutes: 60, // Valid for 1 hour
});
console.log('Paycode:', paycode.paycode);
console.log('Expires:', paycode.expiryDate);
// 2. Send paycode to beneficiary (via your SMS/notification system)
await sendSMS(
'+2349087654321',
`Your withdrawal code is ${paycode.paycode}. Amount: ₦5,000. Expires: ${paycode.expiryDate}`
);
// 3. Check status periodically
const status = await getPaycodeStatus(paycode.paycode);
if (status.responseCode === '00') {
console.log('Paycode already used');
}
// 4. Cancel if needed
const cancellation = await cancelPaycode(paycode.paycode);
console.log('Cancelled:', cancellation.responseCode);
Use Cases
- Corporate disbursements — Salary payments to unbanked workers
- Emergency cash — Send money to family members without bank accounts
- Agent banking — Cash distribution through ATM networks
- Cash vouchers — Promotional cash rewards
Best Practices
- Set reasonable expiry times — Don't leave paycodes valid indefinitely
- Notify beneficiaries — Send paycode via SMS immediately
- Monitor usage — Track redemption rates and expired paycodes
- Implement cancellation — Allow senders to revoke unused paycodes
- Secure delivery — Ensure paycodes are sent through secure channels