POST
/
integrations
/
vertofx
/
beneficiaries
Create Beneficiary
curl --request POST \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/integrations/vertofx/beneficiaries \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "firstName": "<string>",
  "lastName": "<string>",
  "email": "jsmith@example.com",
  "bankName": "<string>",
  "accountNumber": "<string>",
  "currency": "<string>",
  "beneficiaryCountryCode": "<string>",
  "beneficiaryAddress": "<string>",
  "beneficiaryCity": "<string>",
  "beneficiaryPostcode": "<string>",
  "beneficiaryEntityType": "individual",
  "beneficiaryCompanyName": "<string>"
}'
{
  "success": true,
  "message": "Beneficiary created successfully",
  "data": {
    "id": 4755,
    "reference": "RP-12122024-007"
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

201
application/json

Success

The response is of type object.