Add Beneficiary

Add new beneficiary

post
/v1/beneficiaries
Authorizations
Path parameters
businessIdstringRequired
Body
objectOptional
Responses
200

The beneficiary

application/json
post
/v1/beneficiaries
POST /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": {}
    }
}

Last updated