Tanzania Payouts

TZS payouts to banks and mobile wallets

Use this guide when you want to send TZS payouts to recipients in Tanzania. Tanzania supports bank transfers and mobile wallets (MTN, Airtel).

Overview

  • Currency: TZS
  • Payment location: TZA
  • Supported rails: Bank transfer, Mobile wallet
  • Payment methods:
    • Bank transfer → paymentMethodId: "banktransfer", recipient.type: "bank_account"
    • Mobile wallet → paymentMethodId: "mobilemoney", recipient.type: "mobile_money"

Required fields by rail

Bank transfer

FieldRequiredNotes
accountNumberYesBank account number
bankCodeYesLocal bank code
accountHolderNameYesName on the account
countryYesTZA
phoneNumberNoInternational format

Mobile wallet (MTN, Airtel)

FieldRequiredNotes
phoneNumberYesMSISDN in international format
countryYesTZA
operatorYesUse mtn or airtel
nameNoRecipient name

Top-level required fields for every payout: merchantId, merchantReference, destinationValue (with minorAmount and currency), paymentMethodId, paymentLocation, recipient.

Example requests

Bank transfer

1{
2 "merchantId": "your-merchant-id",
3 "merchantReference": "PAYOUT-TZ-001",
4 "destinationValue": {
5 "minorAmount": 1000000,
6 "currency": "TZS"
7 },
8 "paymentMethodId": "banktransfer",
9 "paymentLocation": "TZA",
10 "recipient": {
11 "type": "bank_account",
12 "accountNumber": "0123456789",
13 "bankCode": "001",
14 "accountHolderName": "Asha Mushi",
15 "country": "TZA"
16 }
17}

Mobile wallet (MTN)

1{
2 "merchantId": "your-merchant-id",
3 "merchantReference": "PAYOUT-TZ-002",
4 "destinationValue": {
5 "minorAmount": 750000,
6 "currency": "TZS"
7 },
8 "paymentMethodId": "mobilemoney",
9 "paymentLocation": "TZA",
10 "recipient": {
11 "type": "mobile_money",
12 "phoneNumber": "255712345678",
13 "country": "TZA",
14 "operator": "mtn",
15 "name": "Neema Kato"
16 }
17}