Skip to main content

Create a Beneficiary

Overview

Registers a new individual or corporate payout beneficiary account, validating bank routing numbers, SWIFT/BIC codes, and entity details prior to initiating payouts.

HTTP Request

POST /banking/ibans/v2/profile/v2.1/beneficiaries

Authentication

This endpoint requires an active Bearer JWT token in the Authorization header obtained via POST /banking/ibans/v2/users/login:

Authorization: Bearer <your_access_token>

Request Body Fields

FieldTypeDescription
beneficiaryEntityTypestrSample value: company
beneficiaryFirstNamestrSample value: ``
beneficiaryLastNamestrSample value: ``
beneficiaryCompanyNamestrSample value: OLSEN INDUSTRIA E COMERCIO SA
currencystrSample value: NGN
beneficiaryCountryCodestrSample value: NG
accountNumberstrSample value: 2000293918130
nationalIdstrSample value: PUNB0644100
countrystrSample value: India
clientReferencestrSample value: Test-Bene100

Code Examples

curl -X POST "https://api.ahrvo.network/banking/ibans/v2/profile/v2.1/beneficiaries" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <your_access_token>" \
-d '{
"beneficiaryEntityType": "company",
"beneficiaryFirstName": "",
"beneficiaryLastName": "",
"beneficiaryCompanyName": "OLSEN INDUSTRIA E COMERCIO SA",
"currency": "NGN",
"beneficiaryCountryCode": "NG",
"accountNumber": "2000293918130",
"nationalId": "PUNB0644100",
"country": "India",
"clientReference": "Test-Bene100"
}'

Response (201)

{
"success": true,
"account": {
"id": 284,
"accountNumber": "2000293918130",
"bankName": "PUNJAB NATIONAL BANK",
"beneficiaryAddress": "INSTITUTIONAL AREA, PLOT, NO.05 PNB SWIFT CENTRE - FLOOR 1 GURUGRAM - SECTOR 32",
"beneficiaryCity": "HARYANA",
"beneficiaryCompanyName": "OLSEN INDUSTRIA E COMERCIO SA",
"beneficiaryCountryCode": "IN",
"beneficiaryEntityType": "company",
"country": "India",
"reference": "RP-09062022-003",
"beneficiaryFirstName": "",
"beneficiaryLastName": "",
"nationalId": "PUNB0644100",
"currency": "INR",
"clientReference": "Test-Bene100",
"status": "approved"
}
}

Interactive API Explorer

Test this endpoint live against the Ahrvo gateway and Verto sandbox environments: