Skip to main content
PUT
/
integrations
/
vertofx
/
beneficiaries
/
{id}
Update VertoFx Beneficiary
curl --request PUT \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/integrations/vertofx/beneficiaries/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "firstName": "John",
  "lastName": "Doe",
  "bankCode": "123",
  "accountNumber": "000111222"
}'
{
  "id": "beneficiary_123",
  "firstName": "John",
  "lastName": "Doe"
}
Updates the details of a VertoFx beneficiary by ID.

Authentication

This endpoint requires authentication. Include your bearer token in the Authorization header.

Path Parameters

ParameterTypeInRequiredDescription
idstringpathāœ…The ID of the beneficiary to update.

Request Body

Request Schema

FieldTypeRequiredDescription
firstNamestringāŒ
lastNamestringāŒ
bankCodestringāŒ
accountNumberstringāŒ

Responses

āœ… 200 - Beneficiary updated successfully

āš ļø 400 - Bad Request

āš ļø 401 - Unauthorized

āš ļø 404 - Not Found

Tags

VertoFx

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"

Path Parameters

id
string
required

The ID of the beneficiary to update.

Body

application/json
firstName
string
Example:

"John"

lastName
string
Example:

"Doe"

bankCode
string
Example:

"123"

accountNumber
string
Example:

"000111222"

Response

Beneficiary updated successfully

id
string
Example:

"beneficiary_123"

firstName
string
Example:

"John"

lastName
string
Example:

"Doe"

⌘I