Create Beneficiary

This section outlines the procedure for creating beneficiaries for transfers.

Initialization

POST /beneficiaries

Sample Request

NGN Bank Account
{
  "type": "bank_account",
  "currency": "NGN",
  "account_name": "John Doe",
  "account_number": "0123456789",
  "bank_name": "First Bank of Nigeria",
  "bank_code": "011"
}

USD Bank Account
{
  "type": "bank_account",
  "currency": "USD",
  "routing_number": "123456789",
  "rail": "ach",
  "sort_code": "123456",
  "address": {
    "line1": "15 High Road",
    "city": "New York",
    "country": "US",
    "zip_code": "10003",
    "line2": "Unit 12",
    "state": "NY"
  },
  "bank_address": {
    "line1": "20 Finance Blvd",
    "city": "Los Angeles",
    "country": "US",
    "zip_code": "90001",
    "line2": "Suite 200",
    "state": "CA"
  }
}

Sample Response

Last updated