Type Alias: MobileNetwork

type MobileNetwork = "MPESA" | "TIGOPESA" | "AIRTELMONEY" | "HALOPESA" | "AZAMPESA";

Defined in: packages/pesa/src/types/disbursement.ts:20

Supported mobile money networks for disbursement (B2C payouts).

Example

await pesa.disburse({
  amount:    50000,
  currency:  'TZS',
  reference: 'payout_001',
  recipient: {
    phone:   '255754321098',
    name:    'Juma Ali',
    network: 'MPESA',
  },
});

On this page