medusa-payment-flutterwave-pro v1.0.2
About
medusa-payment-flutterwave-pro
is a Medusa plugin that adds Flutterwave as a payment provider to Medusa ecommerce stores.
Setup
Prerequisites
- Flutterwave account
- Flutterwave account's secret key
- Medusa server
Medusa Server
If you don’t have a Medusa server installed yet, you must follow the quickstart guide first.
Install the Flutterwave Plugin
In the root of your Medusa server (backend), run the following command to install the Flutterwave plugin:
yarn add medusa-payment-flutterwave
Configure the Flutterwave Plugin
Next, you need to enable the plugin in your Medusa server.
In medusa-config.ts
add the following to the plugins
array:
module.exports = defineConfig({
projectConfig: {
databaseUrl: process.env.DATABASE_URL,
// ... other config
},
modules: [
// other modules
{
resolve: "@medusajs/medusa/payment",
options: {
providers: [
// other payment providers like stripe, paypal etc
{
resolve: "medusa-payment-flutterwave",
options: {
secret_key: <FLUTTERWAVE_SECRET_KEY>,
} satisfies import("medusa-payment-flutterwave").PluginOptions,
},
],
},
},
],
});
The full list of configuration options you can pass to the plugin can be found in Config
Setup Webhooks
To ensure that Medusa is notified of successful payments, you need to set up webhooks in your Flutterwave dashboard. If you're installing this plugin for production use, this is a required step.
Go to your Flutterwave dashboard and navigate to the "API Settings" section.
Set the Webhook URL to <your-medusa-backend-url>/hooks/payment/flutterwave
. Eg. https://your-medusa-backend.com/hooks/payment/flutterwave
.
Admin Setup
This step is required for you to be able to use Flutterwave as a payment provider in your storefront.
Add Flutterwave to Regions
Refer to this documentation in the user guide to learn how to add a payment provider like Flutterwave to a region.
Storefront Setup
Follow Medusa's Storefront Development Checkout Flow guide using pp_flutterwave
as the provider_id
to add Flutterwave to your checkout flow.
Email in initiatePaymentSession
context
Flutterwave requires the customer's email address to create a transaction.
You need to pass the customer's email address in the initiatePaymentSession
context to create a transaction.
If your storefront does not collect customer email addresses, you can provide a dummy email but be aware all transactions on your Flutterwave dashboard will be associated with that email address.
await initiatePaymentSession(cart, {
provider_id: selectedPaymentMethod,
context: {
email: cart.email,
},
});
Completing the Payment Flow
medusa-payment-flutterwave
returns a transaction reference (flutterwaveTxRef
) and a payment link (flutterwaveTxLink
) that you should use to complete the Flutterwave payment flow on the storefront.
Using the returned transaction reference and payment link allows the plugin to confirm the status of the transaction on your backend, and then relay that information to Medusa.
medusa-payment-flutterwave
inserts the transaction reference (flutterwaveTxRef
) and payment link (flutterwaveTxLink
) into the PaymentSession
's data.
You can use the transaction reference to resume the payment flow or the payment link to redirect the customer to Flutterwave's hosted payment page.
Using Payment Link
Extract the payment link from the payment session's data:
const { flutterwaveTxLink } = session.data;
Redirect the customer to the payment link to complete the payment.
// Redirect the customer to Flutterwave's hosted payment page
window.open(flutterwaveTxLink, "_self");
Once the payment is successful, the customer will be redirected back to the callback URL. This page can then call the Medusa Complete Cart method to complete the checkout flow and show a success message to the customer.
Verify Payment
Call the Medusa Complete Cart method in the payment completion callback of your chosen flow as mentioned in Completing the Payment Flow above.
medusa-payment-flutterwave
will verify the transaction with Flutterwave and mark the cart as paid for in Medusa.
Even if the "Complete Cart" method is not called for any reason, with webhooks set up correctly, the transaction will still be marked as paid for in Medusa when the user pays for it.
Refund Payments
You can refund captured payments made with Flutterwave from the Admin dashboard.
medusa-payment-flutterwave
handles refunding the given amount using Flutterwave and marks the order in Medusa as refunded.
Partial refunds are also supported.
Configuration
Name | Type | Default | Description |
---|---|---|---|
secret_key | string | - | Your Flutterwave secret key. Obtainable from the Flutterwave dashboard - Settings -> API Settings. |
disable_retries | boolean | false | Disable retries on network errors and 5xx errors on idempotent requests to Flutterwave. Generally, you should not disable retries, these errors are usually temporary but it can be useful for debugging. |
debug | boolean | false | Enable debug mode for the plugin. If true, logs helpful debug information to the console. Logs are prefixed with "FW_Debug". |
Examples
The examples
directory contains a simple Medusa server with the Flutterwave plugin installed and configured.
It also contains a storefront built with Next.js that uses the Flutterwave API to complete the payment flow.