Fynn elements
We are currently working on a new feature that allows you to manage payment methods on your own payment page without any business-code. This feature is called Fynn elements and will be available in Q2.24.Add new payment method
The following steps show you how to add a new payment method using the Fynn API on your own payment page.- Stripe Credit card
- SEPA debit (via Fynn)
- Bank transfer
1
Create stripe setup intent
To add a new payment method, you need to create a Stripe SetupIntent first in order to securely collect card details in Fynn.Example response
2
Collect card details
After creating the SetupIntent, you can show the Stripe.js card element in your form to collect the card details.
Then confirm the SetupIntent with the card details.
3
Assign payment method
Assign the payment method created in stripe with Fynn. Use the payment method id received from the confirmation
result.setupIntent.payment_method
.4
Done 🎉
That’s it! You have successfully added a new card payment method to the customer.