Create Beneficiary
Create a payout beneficiary. If a matching beneficiary already exists for the business, account number, bank, integration, and mode, Kyshi returns the existing record.
-H "x-api-key: your_secret_key"POST {{host}}/v1/transfer/beneficiariesRequest Body
| Field | Data Type | Required | Description |
|---|---|---|---|
| accountName | string | Yes | Beneficiary account name. |
| accountNumber | string | Yes | Beneficiary bank account number. |
| bankName | string | Yes | Beneficiary bank name. |
| bankCode | string | Yes | Beneficiary bank code. |
| currency | string | Yes | Payout currency. Supported payout currencies include NGN, GHS, and KES. |
| description | string | No | Description for the beneficiary. |
| bvn | string | No | Beneficiary BVN, when required. |
| nameEnqRef | string | No | Name enquiry/session reference returned by name enquiry, when available. |
{
"accountName": "FEMI ZACK",
"accountNumber": "0123456789",
"bankName": "Access Bank",
"bankCode": "000014",
"currency": "NGN",
"description": "Supplier payout",
"nameEnqRef": "SESSION_123456789"
}{
"status": true,
"message": "Success",
"code": 201,
"data": {
"id": "8495ec4e-ce21-405f-b0cf-982702881f4d",
"accountName": "FEMI ZACK",
"accountNumber": "0123456789",
"bankName": "Access Bank",
"bankCode": "000014",
"bvn": "",
"providerId": "SESSION_123456789",
"description": "Supplier payout",
"isActive": true,
"mode": "live",
"createdAt": "2026-05-20T10:15:00.000Z",
"updatedAt": "2026-05-20T10:15:00.000Z"
}
}Updated about 7 hours ago
