#9788374791
1 messages · Page 1 of 1 (latest)
Hi there, yes you can build a custom subscription integration. The details are here https://stripe.com/docs/billing/subscriptions/build-subscriptions?ui=elements
Hi, is it possible to do recurring payments from our end using Ruby on rails api
I'd suggest you to go through the doc that I shared earlier and come back if you have questions.
Yes I had gone through this
This is for stripe checkout page right
My question is can we prefill payment information from our end
Checkout is one way, the link that I share with you is to build a custom integration
Does stripe allows to pass the card information while checkout to prefill payment information
Checkout doesn't accept card details, but you can specify a customer id and checkout will pre-fill the customer's most card payment method. Details is explained in API ref doc https://stripe.com/docs/api/checkout/sessions/create?lang=cli#create_checkout_session-customer
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Is it possible to handle recurring payments and one time payments in our application using stripe APIs
Yes that' possible.
please share the docs here
There are many ways to achieve it. Can you tell me about your current integration so that I can design the most suitable solution for you?
we are trying to integrate the stripe into our platform, have stucked with one time payments and recurring payment through stripe APIs
What's your frontend integration? Are you using Checkout session or PaymentElement?
If you don't have any, or still choosing one. I'd suggest you to go with Checkout Session. This is the easiest integration path.
Checkout session support both one-time payment and subscription (i.e., payment mode and subscription mode). And you can find the detailed integration docs below