#Akina-payments
1 messages · Page 1 of 1 (latest)
Hi, yes we can. Do you want to use Subscription, or do you only want to charge your customer later by your own?
May i know how does it works?
Cause we integrate with opencart platform
Can you let me know how both works?
Yes. Are you using our API directly? Which guide are you following?
Subscription document: https://stripe.com/docs/billing/subscriptions/overview
Save a Card during payment and charge later by your own:
https://stripe.com/docs/payments/save-during-payment
So for subscription
we can set the mechanics in terms of frequency
schedule
on our opencart backend?
Do we need to set anything on stripe dashboard?
Save a card means
Client put their card
merchant (seller) decide when to charge? not immediate?
I am not too familiar with OpenCart. Are you calling Stripe API under the hood?
Save a card means merchant charge the card first time, and save its information and can charge it later, not immediate. But merchant will need to decide when and how much. Subscription is the mechanics in terms of frequency, correct
no, in your code. You will need to implement it yourself. For easier repeating schedule, I would recommend to go with Subscription
You can create Subscription one by one in the Dashboard. But to avoid such a manual process and create automatically to every customer, you would want to create it in code
The guide above is the best resource: https://stripe.com/docs/billing/subscriptions/overview
We also have stripe examples: https://github.com/stripe-samples/subscription-use-cases
We don't own such a site. You can use the Github example above and try to deploy it to see