Kutanapay Merchant API
  1. Merchant Withdrawals
Kutanapay Merchant API
  • Merchant API Keys
    • Create Api Key
      POST
    • Get Api Keys
      GET
    • Revoke Api Key
      DELETE
  • Merchant Wallet
    • Get All Wallets
      GET
    • Get Wallet Transactions
      GET
    • Process Refund
      POST
    • Get Settlement Batches
      GET
    • Update Wallet Status
      PATCH
    • Get Wallet By Currency
      GET
  • Merchant Customer Transactions
    • Get Merchant Transactions
      GET
    • Get Merchant Transaction
      GET
  • Merchant Checkout
    • Create Checkout
      POST
    • List Checkouts
      GET
    • Get Checkout
      GET
  • Merchant Webhooks
    • Create Webhook
      POST
    • Get Webhooks
      GET
    • Update Webhook
      PUT
    • Delete Webhook
      DELETE
  • Merchant Branding
    • Get Branding
      GET
    • Update Branding
      PUT
  • Merchant Payment Accounts
    • Add Payment Account
    • Get Payment Accounts
    • Get Payment Account
    • Update Payment Account
    • Delete Payment Account
  • Merchant Withdrawals
    • Initiate Withdrawal
      POST
    • Get Withdrawal History
      GET
    • Cancel Withdrawal
      POST
    • Get Withdrawal
      GET
  • Merchant Payouts
    • Initiate Payout
    • Get Payout History
    • Cancel Payout
    • Get Payout
  1. Merchant Withdrawals

Initiate Withdrawal

POST
/api/v1/merchants/withdrawals
Initiate a withdrawal (unified endpoint).
Two methods:
1.
To saved payment account: Provide payment_account_id
2.
To ad-hoc recipient: Provide payout_type + recipient_details
Recipient details for bank transfer:
recipient_name (required)
bank_account_number (required)
bank_name (required)
account_holder_name (required)
bank_routing_number (optional)
recipient_email (optional)
recipient_phone (optional)
Recipient details for mobile money:
recipient_name (required)
mobile_number (required)
network_provider (required: mtn_momo, mpesa, orange_money, vodafone_cash)
recipient_email (optional)
recipient_phone (optional)

Request

Authorization
Add parameter in header
x-api-key
Example:
x-api-key: ********************
Header Params

Body Params application/json

Examples

Responses

🟢200OK
application/json
Successful Response
Body

🟠422Parameter Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/v1/merchants/withdrawals' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "amount": 20000,
    "currency_code": "NGN",
    "notes": "Monthly payout",
    "payment_account_id": "e0589beb-723c-48a1-8146-a9eae60aca00"
}'
Response Response Example
200 - Example 1
{}
Modified at 2025-10-20 10:16:24
Previous
Delete Payment Account
Next
Get Withdrawal History
Built with