Skip to main content

Bank Payouts

Bank Payouts allow you to send money directly to customer bank accounts in supported countries.
With the Global Payments API, businesses can seamlessly disburse funds to local and international banks.

Endpoint

POST https://api.mypayd.app/api/v3/withdrawal

Authorization

Every request must include authentication headers:

AUTHORIZATION: Basic Auth

Username <username>
Password <password>

Request Body

The request body should include the necessary parameters for the transaction. Example:

{
"account_id": "3875ed8d-83f2-4e4f-b076-9a45a9baec5e",
"phone_number": "+234712345678",
"channel": "bank",
"account_name": "bank",
"account_number": "+23412345678",
"network_code": "344f1324-11fb-4875-bd74-fbb43cd2b32d",
"provider_code": "100004",
"provider_name": "OPay",
"bank_name": "OPay",
"channel_id": "fe8f4989-3bf6-41ca-9621-ffe2bc127569",
"account_holder_name": "Faith Samuel",
"amount": 1800,
"currency": "NGN",
"narration": "Subscriptions"
}

Below are code examples in different programming languages demonstrating how to send bank payouts worldwide.

curl --location 'https://api.mypayd.app/api/v3/withdrawal' \
--header 'Content-Type: application/json' \
--data-raw '{
"account_id": "3875ed8d-83f2-4e4f-b076-9a45a9baec5e",
"phone_number": "+234712345678",
"channel": "bank",
"account_name": "bank",
"account_number": "+23412345678",
"network_code": "344f1324-11fb-4875-bd74-fbb43cd2b32d",
"provider_code": "100004",
"provider_name": "OPay",
"bank_name": "OPay",
"channel_id": "fe8f4989-3bf6-41ca-9621-ffe2bc127569",
"account_holder_name": "Faith Samuel",
"amount": 1800,
"currency": "NGN",
"narration": "Subscriptions"
}'

Example response

{
"status": "success",
"message": "Payout sent successfully",
"transaction_id": "e3b2c1d2-4f5a-4a6b-9c2e-123456789abc"
}

Conclusion

Bank Payouts provide a secure and efficient way to send funds directly to customer bank accounts across supported countries. By using the unified payout endpoint, businesses can streamline disbursements and enhance customer experience.