#Satya
1 messages · Page 1 of 1 (latest)
Hi Jack
Hi there, the easiest way is to use Stripe Checkout for subscription https://stripe.com/docs/billing/quickstart so that the customer can complete the subscription right inside a Stripe checkout page
in my application, I am doing the subscription for users for login or not log in so at that time we need to pass the card details to the API but the client doesn't want to capture the card details in the application they want to use stripe screens for it. Is there any solution to pass the card details along with the subscription for recurring payments with the dynamic amount?
dynamic amount means, user will enter the amount they want to donate in the application screen
Can you take a moment to read the doc that I sent earlier to know more about Subscription with checkout? I believe this is what you are looking for.
If you want the customer to adjust the price, you can do so via the custom_unit_amount hash https://stripe.com/docs/api/prices/create#create_price-custom_unit_amount. Please note that only one-time price supports this (e.g., recurring price doesn't supports it)
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
thanks for the links I will go though them.