Skip to main content

Update a Beneficiary

Overview

Updates an existing beneficiary's metadata, address, or banking parameters. Requires review and triggers a status webhook upon approval.

HTTP Request

PUT /banking/ibans/v2/profile/v2.1/beneficiaries/{id}

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>

Path Parameters

ParameterTypeRequiredDescription
idstringYesUnique numerical identifier of the beneficiary to update (e.g. 283)

Request Body Fields

FieldTypeDescription
beneficiaryEntityTypestrSample value: company
beneficiaryFirstNamestrSample value: ``
beneficiaryLastNamestrSample value: ``
beneficiaryCompanyNamestrSample value: Verto
currencystrSample value: INR
beneficiaryCountryCodestrSample value: IN
accountNumberstrSample value: 2000293918130
nationalIdstrSample value: PUNB0644100
countrystrSample value: India

Code Examples

curl -X PUT "https://api.ahrvo.network/banking/ibans/v2/profile/v2.1/beneficiaries/{id}" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <your_access_token>" \
-d '{
"beneficiaryEntityType": "company",
"beneficiaryFirstName": "",
"beneficiaryLastName": "",
"beneficiaryCompanyName": "Verto",
"currency": "INR",
"beneficiaryCountryCode": "IN",
"accountNumber": "2000293918130",
"nationalId": "PUNB0644100",
"country": "India"
}'

Response (200)

{
"success": true,
"account": {
"id": 283,
"accountNumber": "2000293918130",
"bankName": "PUNJAB NATIONAL BANK",
"beneficiaryAddress": "INSTITUTIONAL AREA, PLOT, NO.05 PNB SWIFT CENTRE - FLOOR 1 GURUGRAM - SECTOR 32",
"beneficiaryCity": "HARYANA",
"beneficiaryCompanyName": "Verto",
"beneficiaryCountryCode": "IN",
"beneficiaryEntityType": "company",
"beneficiaryPostcode": "122001",
"country": "India",
"reference": "RP-16062022-001",
"beneficiaryFirstName": "",
"beneficiaryLastName": "",
"nationalId": "PUNB0644100",
"currency": "INR",
"clientReference": null,
"status": "approved"
}
}

Interactive API Explorer

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