Updates the details of a VertoFx beneficiary by ID.
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"
}
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
The ID of the beneficiary to update.
Beneficiary updated successfully
The response is of type object
.
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"
}