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"
}

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

Response

200
application/json

Beneficiary updated successfully

The response is of type object.