Receive payments on your Medusa commerce application using PayPal.
PayPal Plugin Documentation | Medusa Website | Medusa Repository
- Authorize payments on orders from any sales channel.
- Capture payments from the admin dashboard.
- View payment analytics through PayPal's dashboard.
- Ready-integration with Medusa's Next.js starter storefront.
- Support for Webhooks.
1. Run the following command in the directory of the Medusa backend:
npm install @medusajs/payment-paypal
2. Set the following environment variables in .env
:
PAYPAL_SANDBOX=true
PAYPAL_CLIENT_ID=<CLIENT_ID>
PAYPAL_CLIENT_SECRET=<CLIENT_SECRET>
PAYPAL_AUTH_WEBHOOK_ID=<WEBHOOK_ID>
3. In medusa-config.js
add the following at the end of the plugins
array:
//...
import { Modules } from "@medusajs/utils"
//...
export default defineConfig({
// ...
modules: {
// ...
[Modules.PAYMENT]: {
resolve: "@medusajs/payment",
options: {
providers: [
{
resolve: `@medusajs/payment-paypal`,
options: {
sandbox: process.env.PAYPAL_SANDBOX,
client_id: process.env.PAYPAL_CLIENT_ID,
client_secret: process.env.PAYPAL_CLIENT_SECRET,
auth_webhook_id: process.env.PAYPAL_AUTH_WEBHOOK_ID,
},
},
],
},
},
},
})
TODO