Bridge API DocsBridge API Docs
Bridge API Docs
Api reference

Transfer Money / Payout Payment (MTC)

Send payments or transfer money to customers via mobile money or bank accounts

Payout Payment (MTC)

Send money to customers via mobile money, bank transfer, or card (payment_option). Use trans_type MTC. Ideal for refunds, seller payouts, and disbursements.

Endpoint

POST https://api.bridgeagw.com/make_payment

Request Headers

Authorization: Basic <base64_encoded_credentials>
Content-Type: application/json

Request Body

{
  "service_id": 1,
  "reference": "Refund for Order #123",
  "customer_number": "0541234567",
  "transaction_id": "PAYOUT_001",
  "trans_type": "MTC",
  "amount": 25.50,
  "nw": "MTN",
  "nickname": "John Doe",
  "payment_option": "MOM",
  "currency_code": "GHS",
  "currency_val": "1",
  "callback_url": "https://your-site.com/webhook/payout-status",
  "request_time": "2025-01-15 14:30:00"
}

Parameters

ParameterTypeRequiredDescription
service_idintegerYesYour service identifier
referencestringYesPayout reference/description
customer_numberstringYesPhone (mobile money), bank account, or card number
transaction_idstringYesUnique transaction identifier
trans_typestringYesMust be MTC
amountnumberYesPayout amount
nwstringYesNetwork or bank code (see tables below)
nicknamestringYesCustomer display name
payment_optionstringYesMOM (mobile money), BNK (bank), or CRD (card)
currency_codestringNoCurrency code (e.g. GHS)
currency_valstringNoCurrency value
callback_urlstringYesWebhook URL for notifications
request_timestringYesRequest timestamp

Supported Networks

Match payment_option to the route: MOM with mobile codes, BNK with bank codes, CRD with card codes.

Mobile Money

NetworkCode
MTN Mobile MoneyMTN
Telecel CashVOD
AirtelTigo MoneyAIR
G-MoneyGMO

Cards

NetworkCode
MastercardMAS
VisaVIS

Banks

BankCode
Access BankACB
ABSA BankABS
ADBADB
Apex BankARB
Bank of GhanaBOG
BOABOA
CAL BankCAL
CBGCBG
Ecobank GhanaECO
FABFAB
FBN BankFBN
Fidelity BankFIB
FNBFNB
GCB BankGCB
GHL BankGHL
GT BankGTB
NIBNIB
Omni BankOMN
PBLPRB
Republic BankRPB
SGSGB
Services Integrity Savings & LoansSIS
Standard CharteredSCB
Stanbic BankSTB
UBAUBA
UMBUMB
Zeepay GhanaZEE
Zenith BankZEB

Response

Success (202)

{
  "response_message": "Request successfully received for processing",
  "response_code": "202"
}

Error Example

{
  "response_message": "You are not allowed to use this service",
  "response_code": "100"
}

Example (cURL)

curl -X POST "https://api.bridgeagw.com/make_payment" \
  -H "Authorization: Basic <your_credentials>" \
  -H "Content-Type: application/json" \
  -d '{
    "service_id": 1,
    "reference": "Refund for Order #123",
    "customer_number": "0541234567",
    "transaction_id": "PAYOUT_001",
    "trans_type": "MTC",
    "amount": 25.50,
    "nw": "MTN",
    "nickname": "John Doe",
    "payment_option": "MOM",
    "currency_code": "GHS",
    "currency_val": "1",
    "callback_url": "https://your-site.com/webhook/payout-status",
    "request_time": "2025-01-15 14:30:00"
  }'

Use "payment_option": "BNK" for bank payouts (set customer_number and nw to the bank code). Use "payment_option": "CRD" for card payouts.

Flow

  1. POST payout with valid customer_number, nw, and payment_option.
  2. Platform verifies your payout balance.
  3. Transfer is processed; the customer gets a network notification where applicable.
  4. Your callback_url receives final status (Callbacks).

Balance

Ensure sufficient payout balance before sending. Check Get Account Balance; fund via Deposit to Wallet if needed.