This endpoint requires authentication. Include your Bearer token in the Authorization header.
 
Code Examples
const response = await fetch('https://server26-dot-royalti-project.uc.r.appspot.com/integrations/vertofx/beneficiaries', {
  method: 'POST',
  headers: {
    'Authorization': `Bearer ${token}`,
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    "firstName": "sample-firstName",
    "lastName": "sample-lastName",
    "email": "sample-email",
    "bankName": "sample-bankName",
    "accountNumber": "sample-accountNumber",
    "currency": "sample-currency",
    "beneficiaryCountryCode": "sample-beneficiaryCountryCode",
    "beneficiaryAddress": "sample-beneficiaryAddress",
    "beneficiaryCity": "sample-beneficiaryCity",
    "beneficiaryPostcode": "sample-beneficiaryPostcode",
    "beneficiaryEntityType": "sample-beneficiaryEntityType",
    "beneficiaryCompanyName": "sample-beneficiaryCompanyName"
  })
});
const data = await response.json();
console.log(data);
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
First name of the beneficiary
Last name of the beneficiary
Email address of the beneficiary
Name of the beneficiary's bank
Currency code (e.g., USD, EUR, NGN)
Country code of the beneficiary
Address of the beneficiary
Available options: 
individual, 
company 
Postal code of the beneficiary
Company name (if entity type is company)