#_code
1 messages · Page 1 of 1 (latest)
👋 Welcome to your new thread!
⏲️ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
🔗 This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1243440908192452700
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi, I'm having a subscription issue with stripe. I want to know if stripe supports multiple subscriptions for a single user in the same app
hello! what app are you referring to?
Stripe can support multiple Subscriptions for a Customer if that's what you're asking
sorry about missing out on your previous message. Yes, that's correct
Thank you very much. I have a second question. I hope I can get your help
In addition to subscriptions, we will also make payment free to users. Whether there is an API to allow users to authorize the right to my company to withhold money, the next user came to my shop, take a commodity. No need to pay again, I will automatically initiate a corresponding deduction from the app
Typically, the user's buying process is to pick up the item, pay for the purchase, and leave the store.
I need to omit the user's“Purchase payment” and authorize it to us. The user just needs to pick up the item and leave the store. We will deduct the money
I think what you're looking for is to collect the payment method from the customer first using SetupIntents : https://docs.stripe.com/payments/save-and-reuse. Subsequently, you would charge the customer's payment method when they take a commodity.
There may be something wrong with my expression. Let me rephrase it
We now require the user to enter a password and confirm and agree to the user's payment.
Example: I Let the user in 3 months ago authorized to give me the right to withhold money, and then when I detect the user to my store service, I will directly withhold money, without the user again agreed and confirme
what goods or services are you providing, can you share more about your business?
My business is unattended car wash, I hope the path can be achieved is.
Users go to the car washing machine, I recognize the license plate through the camera, found that is the old user, at this time the automatic deduction, open the gate. The user drives into the car wash.
It's like paying for parking in a parking lot
Is there a reason why you can't just deduct payment from the customer's card when they are at the gate before opening it?
For context, we do offer something called multicapture : https://docs.stripe.com/payments/multicapture - however, this feature is only available to users on certain Stripe pricing plans. If you're not able to get access to this feature, then probably the workaround is to deduct payment from the customer's card when they are at the gate before opening it. Alternatively, charge the customer's card before hand and then maintain your own stored value wallet / system
Thank you very much for your help, many times the capture is not very meet our needs. We will consider the way the card, thanks again
alright, feel free to reach out again in case you have other questions!
To get a better idea, I'd like to ask one more scenario.
If: the user logs in to the car wash app and is ready to pay, there may be neither a password nor a facial scan in place, direct payment possible?
if the user is on-session i.e. in your app or site, what do you mean by there may be neither a password nor facial scan in place? can you elaborate more on that. Cause 3DS can be requested if the user is on-session
if the user isn't on your app/site at the time of payment, you would attempt payment off-session payment i.e. https://docs.stripe.com/api/payment_intents/create#create_payment_intent-off_session
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Thank you very much. I see