Payment Gateway Integration
Connect payment processors for online invoice payments.
Overviewโ
Gauzy supports integrating payment gateways for:
- Online invoice payments
- Subscription billing
- Payment link generation
Supported Gatewaysโ
| Gateway | Status | Features |
|---|---|---|
| Stripe | Available | Cards, ACH, invoices |
| PayPal | Available | PayPal balance, cards |
| RazorPay | Available | UPI, cards, net banking |
Stripe Setupโ
1. Create Stripe Accountโ
- Go to stripe.com
- Get your API keys from Dashboard โ Developers
2. Configureโ
STRIPE_API_KEY=sk_live_...
STRIPE_SECRET_KEY=sk_live_...
STRIPE_WEBHOOK_SECRET=whsec_...
3. Webhook Eventsโ
Configure Stripe webhooks to receive payment notifications:
https://api.example.com/api/payment/webhook/stripe
Events to subscribe:
payment_intent.succeededpayment_intent.payment_failedinvoice.paid
PayPal Setupโ
PAYPAL_CLIENT_ID=your-client-id
PAYPAL_CLIENT_SECRET=your-secret
PAYPAL_MODE=sandbox # or 'live'
Payment Flowโ
Related Pagesโ
- Invoice Endpoints โ invoice API
- Payment Endpoints โ payment API
- Invoicing Feature โ invoicing