Dexwin Payroll Strategy: Reduce Adoption Friction

Core insight: Customers are buying payroll, not banking. The product should fit into a company's existing banking relationships instead of requiring them to change banks.

The Problem

Feedback from prospective customers indicates that requiring them to move payroll to a specific bank creates significant resistance.

This is a switching-cost problem, not necessarily a product-quality problem.

Recommended Product Direction

Implementation Model A (Recommended): Pre-funded Payroll

HR approves payroll
        │
        ▼
Dexwin calculates totals
        │
        ▼
Customer transfers total payroll
to settlement account
        │
        ▼
Funds reconciled
        │
        ▼
Partner bank distributes salaries
through Ghana payment rails

Advantages

Implementation Model B: Automatic Funding

Customer signs debit mandate
        │
        ▼
Payroll approved
        │
        ▼
Partner bank debits customer account
        │
        ▼
Settlement account funded
        │
        ▼
Payroll distributed automatically

This provides a better customer experience but requires ACH/direct debit capabilities through the banking partner.

Architecture Recommendation

interface PayrollDisbursementProvider {
    validate();
    createFundingRequest();
    submitPayroll();
    getStatus();
    cancel();
}

Today's implementation:

PartnerBankProvider

Future implementations:

EcobankProvider
StanbicProvider
FidelityProvider
HubtelProvider
...

This keeps payroll calculations, tax, approvals, and payslips independent from payment providers.

Questions for the Bank

  1. Can you originate bulk payroll payments to all Ghanaian banks?
  2. Do you expose APIs for payroll submission?
  3. Do you support ACH Direct Credit and Direct Debit?
  4. What payment status and reconciliation APIs are available?
  5. How are failed payments reported?

Roadmap

PhaseGoal
1Pre-funded payroll using existing customer banks.
2Add automatic funding via debit mandates.
3Add multiple banking partners behind the same interface.
4Evaluate direct payment-rail participation only if payments become strategic.

Strategic Principle

The bank should be an implementation detail—not a prerequisite.

The easier it is for customers to adopt Dexwin Payroll without changing existing financial processes, the larger the addressable market and the faster adoption is likely to be.