#thebossman_dev
1 messages · Page 1 of 1 (latest)
Hello! You may refer to the start guide with example here for one-time payment by choosing your system architecture, frontend and backend: https://stripe.com/docs/payments/quickstart
okay andAnd can you do it here to get the final amount out of the basket?
and you can read that there would be a one-off and a subscription
You will have to integrate the payment system yourself by computing the final amount and set it in the request to Stripe about the amount to charge and whether it's a one-time payment or subscription
The guide above is for one-time payment. For subscription payment, here's the guide to follow: https://stripe.com/docs/billing/quickstart
In summary, the steps will be:
- When the customer checkout, your system should determine whether it'll be a one-time or subscription payment
- If the payment is one-time, follow this guide: https://stripe.com/docs/payments/quickstart; If the payment is subscription, follow this guide: https://stripe.com/docs/billing/quickstart
okay i checking it