Add Beneficiary
Authorizations
Path parameters
businessIdstringRequired
Body
objectOptional
Responses
200
The beneficiary
application/json
post
/v1/beneficiariesPOST /v1/beneficiaries HTTP/1.1
Host: stage-capi.wewireafrica.com
Content-Type: application/json
Accept: */*
Content-Length: 2
{}200
The beneficiary
{
"message": "text",
"id": "text"
}Create Beneficiary Example
Here's an example of how creating a beneficiary with the API would look like for an individual or business.
{
"currency": "GBP",
"type": "BUSINESS",
"postalCode": "19832",
"state": "TX",
"city": "Bravos",
"addressLine2": "Cummin Avenue",
"addressLine1": "80 North White Old Freeway",
"country": "USA",
"telephone": "+18456934001",
"email": "[email protected]",
"name": "Wire Solutions",
"accountDetails": {
"bankName": "Hedwig Norman",
"accountNumber": "257",
"country": "USA",
"swiftBic": "SWIFTAPD234",
"currency": "GBP",
"accountName": "Oleg Burns",
"type": "BANK_ACCOUNT",
"settlementMethod": "SWIFT",
"iban": "ERRORQUIMOLESTIAS",
"extraFields": {}
}
}{
"currency": "EUR",
"settlementMethod": "SWIFT",
"accountCountry": "ARE",
"type": "INDIVIDUAL",
"postalCode": "000000",
"state": "DU",
"city": "Dubai",
"addressLine2": "Creo Lane",
"addressLine1": "740 North Second Parkway",
"country": "ARE",
"email": "[email protected]",
"lastName": "Hebert",
"firstName": "Althea",
"accountDetails": {
"bankName": "Gregory Branch",
"accountNumber": "978",
"country": "ARE",
"swiftBic": "DISTINCTXXX",
"currency": "EUR",
"accountName": "Alvin Oliver",
"settlementMethod": "SWIFT",
"type": "BANK_ACCOUNT",
"iban": "EUMAMETAPERIAMPE",
}
}Last updated