|
|
|
|
|
by cj
2122 days ago
|
|
> how to use Stripe to only store cards and let other processors make the charge 1) Have the user submit their card info on your payment page 2) Simultaneously send the card info to the 3 processors 3) Then process the charge through just 1 of the 3 processors, leaving the others open to be used later (At least with Stripe) the process of saving a credit card to Stripe and actually charging the card are 2 independent API calls. Nothing stops you from saving card info to your payment processor(s) without actually charging it. |
|