skills/paystack-transfer-recipients/SKILL.md
Paystack Transfer Recipients API — create, list, fetch, update, and delete transfer recipients (beneficiaries) for payouts. Supports NUBAN (Nigeria), GHIPSS (Ghana), Mobile Money, BASA (South Africa), and authorization-based recipients. Use this skill whenever adding bank accounts or mobile wallets as payout destinations, creating transfer recipients before initiating transfers, managing beneficiary lists, or doing bulk recipient creation. Also use when you see references to recipient_code, RCP_ prefixed codes, or the /transferrecipient endpoint.
npx skillsauth add rexedge/paystack paystack-transfer-recipientsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
The Transfer Recipients API lets you create and manage beneficiaries that receive money via transfers. You must create a recipient before initiating a transfer.
Depends on: paystack-setup for the
paystackRequesthelper.
Related: paystack-transfers for sending money to recipients.
| Method | Endpoint | Description |
| --- | --- | --- |
| POST | /transferrecipient | Create a recipient |
| POST | /transferrecipient/bulk | Bulk create recipients |
| GET | /transferrecipient | List recipients |
| GET | /transferrecipient/:id_or_code | Fetch a recipient |
| PUT | /transferrecipient/:id_or_code | Update a recipient |
| DELETE | /transferrecipient/:id_or_code | Delete (deactivate) a recipient |
| Type | Description | Countries |
| --- | --- | --- |
| nuban | Nigerian bank accounts (NUBAN) | Nigeria |
| ghipss | Ghana Interbank Payment & Settlement | Ghana |
| mobile_money | Mobile money wallets | Ghana, Kenya |
| basa | South African bank accounts | South Africa |
| authorization | Use a previous charge authorization | All |
POST /transferrecipient
A duplicate account number returns the existing record instead of creating a new one.
| Param | Type | Required | Description |
| --- | --- | --- | --- |
| type | string | Yes | nuban, ghipss, mobile_money, or basa |
| name | string | Yes | Recipient name (as registered on their account) |
| account_number | string | Yes* | Bank account / mobile number (* Not required for authorization type) |
| bank_code | string | Yes* | Bank code from List Banks endpoint (* Not required for authorization type) |
| description | string | No | Description for this recipient |
| currency | string | No | Currency code (e.g. NGN, GHS, ZAR) |
| authorization_code | string | No | Auth code from a previous transaction |
| metadata | object | No | Additional structured data |
const recipient = await paystackRequest<{
recipient_code: string;
name: string;
type: string;
}>("/transferrecipient", {
method: "POST",
body: JSON.stringify({
type: "nuban",
name: "Tolu Robert",
account_number: "0123456789",
bank_code: "058", // GTBank — get codes from List Banks endpoint
currency: "NGN",
}),
});
// recipient.data.recipient_code → "RCP_m7ljkv8leesep7p"
await paystackRequest("/transferrecipient", {
method: "POST",
body: JSON.stringify({
type: "ghipss",
name: "Kwame Asante",
account_number: "0551234987",
bank_code: "GH010100",
currency: "GHS",
}),
});
await paystackRequest("/transferrecipient", {
method: "POST",
body: JSON.stringify({
type: "mobile_money",
name: "Ama Serwah",
account_number: "0551234987",
bank_code: "MTN", // Mobile money provider code
currency: "GHS",
}),
});
await paystackRequest("/transferrecipient", {
method: "POST",
body: JSON.stringify({
type: "authorization",
name: "Customer Refund",
authorization_code: "AUTH_ekk8t49ogj",
}),
});
POST /transferrecipient/bulk
| Param | Type | Required | Description |
| --- | --- | --- | --- |
| batch | array | Yes | Array of recipient objects (same params as Create) |
const result = await paystackRequest("/transferrecipient/bulk", {
method: "POST",
body: JSON.stringify({
batch: [
{
type: "nuban",
name: "Habenero Mundane",
account_number: "0123456789",
bank_code: "033",
currency: "NGN",
},
{
type: "nuban",
name: "Soft Merry",
account_number: "9876543210",
bank_code: "50211",
currency: "NGN",
},
],
}),
});
// result.data.success[] — successfully created recipients
// result.data.errors[] — failed recipients
GET /transferrecipient
| Param | Type | Required | Description |
| --- | --- | --- | --- |
| perPage | integer | No | Records per page (default: 50) |
| page | integer | No | Page number (default: 1) |
| from | datetime | No | Start date |
| to | datetime | No | End date |
const recipients = await paystackRequest("/transferrecipient?perPage=20&page=1");
GET /transferrecipient/:id_or_code
const recipient = await paystackRequest(
`/transferrecipient/${encodeURIComponent("RCP_m7ljkv8leesep7p")}`
);
PUT /transferrecipient/:id_or_code
| Param | Type | Required | Description |
| --- | --- | --- | --- |
| name | string | Yes | Updated recipient name |
| email | string | No | Updated recipient email |
await paystackRequest(
`/transferrecipient/${encodeURIComponent("RCP_m7ljkv8leesep7p")}`,
{
method: "PUT",
body: JSON.stringify({ name: "Rick Sanchez" }),
}
);
DELETE /transferrecipient/:id_or_code
Sets the recipient to inactive (soft delete).
await paystackRequest(
`/transferrecipient/${encodeURIComponent("RCP_m7ljkv8leesep7p")}`,
{ method: "DELETE" }
);
development
Paystack webhook integration — signature validation with HMAC SHA512, event parsing, IP whitelisting, retry policy, and all supported event types. Use this skill whenever setting up a webhook endpoint for Paystack, validating x-paystack-signature headers, handling charge.success or transfer.success events, debugging webhook delivery failures, implementing idempotent event processing, or building any server-side Paystack event listener. Also use when encountering webhook timeout issues or needing the list of Paystack webhook IP addresses.
tools
Paystack Verification API — KYC verification tools for resolving bank accounts, validating account ownership, and looking up card BIN information. Use this skill whenever verifying bank account details before transfers, confirming account holder names, validating customer identity for compliance, looking up card brand/type/bank from BIN, or implementing KYC flows. Also use when you see references to /bank/resolve, /bank/validate, /decision/bin endpoints, or need to match account numbers to names.
development
Paystack Transfers API — send money to bank accounts and mobile wallets. Initiate single and bulk transfers, finalize OTP-verified transfers, list, fetch, and verify transfer status. Use this skill whenever implementing payouts, disbursements, vendor payments, withdrawal flows, or any feature that sends money from your Paystack balance to recipients. Also use when you see references to transfer_code, TRF_ prefixed codes, the /transfer endpoint, or need to handle transfer OTP verification.
development
Paystack Transactions API — initialize payments, verify transactions, list/fetch transaction history, charge saved authorizations, view timelines, get totals, export data, and perform partial debits. Use this skill whenever building a checkout flow, verifying payment status, recharging a returning customer's saved card, pulling transaction reports or analytics, exporting transaction CSVs, or handling any transaction-related Paystack endpoint. Also use when you see references to /transaction/initialize, /transaction/verify, authorization_url, access_code, or charge_authorization in Paystack integrations.