Ethiopia 🇪🇹

Send funds internationally to Ethiopian Bank Accounts.

Prerequisites

  1. Complete your KYC verification and confirm that your account is approved for transactions.
  2. Whitelist your server IP addresses to prevent security errors.
  3. Make sure your balance has enough funds. If needed, use an alternate balance; see the list of supported currencies for ETB transfers.

Payout Flow

Here are the steps to send money to Ethiopian bank accounts.

  1. Collect the beneficiary's details such as the beneficiary's name, bank, and account number. See the expected data requirements below:
{
  "reference": "", // merchant_input
  "currency": "", // merchant_input
  "amount": 0.0, // merchant_input
  "callback_url": "", // merchant_input
  "narration": "", // merchant_input
  "debit_currency": "", // merchant_input
  "debit_subaccount": "", // merchant_input
  "account_bank": "", // beneficiary_information
  "account_number": "", // beneficiary_information
  "beneficiary_name": "", // beneficiary_information
}
  1. Fetch the beneficiary's bank code using the bank and bank branches endpoints to get the account_bank.

  2. Use the transfer endpoint to initiate your transfer with the required data. You can include the debit_currency parameter in your request to debit from a different currency balance.

{
  "reference": "YOUR_TRANSFER_REFERENCE", // Optional
  "currency": "ETB"
  "amount": 50,
  "callback_url": "https://example.com", // Optional
  "narration": "Test ETB Bank Transfer.", // Optional
  "debit_currency": "NGN", // Optional
  "debit_subaccount": "PSAFF2118D1A33844332",// Optional
  "account_bank": "1",
  "account_number": "1234567840",
  "beneficiary_name": "Example User"
}
  1. Verify your transfer status; there are many ways to do this:
    • You can get the transfer status using the transfer status endpoint.
    • If webhooks are enabled on your dashboard, check them to confirm the transfer status.
    • For transfers with callback_id, we'll send the transfer details with their status using the specified URL.
{
  "event": "transfer.completed",
  "event.type": "Transfer",
  "data": {
    "id": 641197,
    "account_number": "1234567840",
    "bank_name": "Abay Bank S.C.",
    "bank_code": "1",
    "fullname": "Frank Jones",
    "created_at": "2024-07-29T15:05:15.000Z",
    "currency": "ETB",
    "debit_currency": "NGN",
    "amount": 100,
    "fee": 0,
    "status": "SUCCESSFUL",
    "reference": "TEST_Transfer_001234_success_mock",
    "meta": [
      "{\"meta_name\":\"fee currency conversion\",\"from_currency\":\"USD\",\"from_amount\":5,\"to_currency\":\"ETB\",\"to_amount\":null}"
    ],
    "narration": "Sample Ethiopia Transfer",
    "approver": null,
    "complete_message": "Successful",
    "requires_approval": 0,
    "is_approved": 1
  }
}
{
	"status": "success",
	"message": "Transfer fetched",
	"data": {
		"id": 641197,
		"account_number": "1234567840",
		"bank_code": "1",
		"full_name": "Frank Jones",
		"created_at": "2024-07-29T15:05:15.000Z",
		"currency": "ETB",
		"debit_currency": "NGN",
		"amount": 100,
		"fee": 0,
		"status": "SUCCESSFUL",
		"reference": "TEST_Transfer_001234_success_mock",
		"meta": [
			{
				"meta_name": "fee currency conversion",
				"from_currency": "USD",
				"from_amount": 5,
				"to_currency": "ETB",
				"to_amount": null
			}
		],
		"narration": "Sample Ethiopia Transfer",
		"approver": null,
		"complete_message": "Successful",
		"requires_approval": 0,
		"is_approved": 1,
		"bank_name": "Abay Bank S.C."
	}
}

Testing Transfers

Check our testing guide for details on testing transfers.