#hannan-integration-help
1 messages · Page 1 of 1 (latest)
Have you read some of our integration guides on accepting payment (https://stripe.com/docs/payments/accept-a-payment) and setting up future payments (https://stripe.com/docs/payments/save-and-reuse?platform=web)?
Basically, we need to charge our merchants on the basis of service they would choose, would the above mentioned links work in this case?
Yes, those guides are walking through some of the intro concepts of our apis (PaymentIntents and SetupIntents) that are used to collect payment details and initiate payment
If you also have recurring payments (like subscriptions) you'll also want to take a look at https://stripe.com/docs/billing/subscriptions/build-subscriptions?ui=elements
Also, as I mentioned, we don't want to open the Stripe web page every time.
Another part is where we charge our customers on each transaction, and we provide our system integration to our merchant portals, we want to deduct payment from the customer and send it to our merchant
I had overviewed the provided links but didn't get the desired results yet. Let me explain the flow again.
Step-01: The user will register an account on our platform and share his/her card details with us.
Step-02: Our vendor will integrate our payment module where the users can use our product to pay on our vendor panel (We're integrating stripe as a payment gateway)
Step-03: We need to deduct a specific amount from users, according to the amount user spend on our vendor panel, and we will send the amount from user's account (as we already saved the details while registration) to the vendor account.
Am I clear? Please let me know if there is any query.
Ah sorry I thought I sent you the links that were specific to using our UI elements - this is what you want https://stripe.com/docs/payments/accept-a-payment?platform=web&ui=elements
Basically, we offer something called PaymentElement that you can drop into your own site (no redirect to a stripe-hosted page is needed)
For the last part (step 3) you need Stripe Connect - is that something you've looked into already?
Step-01: The user will register an account on our platform and share his/her card details with us.
Step-02: Our vendor will integrate our payment module where the users can use our product to pay on our vendor panel (We're integrating stripe as a payment gateway)
Step-03: We need to deduct a specific amount from users, according to the amount user spend on our vendor panel, and we will send the amount from the user's account (as we already saved the details while registering) to the vendor account.
Can you take a look and verify if the provided link works in this case, as the flow is something like this:
Customer -> Vendor panel (sends customer ID, payment amount, and buy product list to us)-> Our window (similar to Login with Google) -> Verify user -> Deduct the payments -> Sends payment to Vendor stripe account -> Sends status from our open window to vendor panel again -> Success prompt on Vendor paanel
Can you please confirm if the above mention flow makes sense to you and if you can provide an API solution for it?
Have you read the links I sent over yet? To build your integration you're going to need a variety of guides, and the links I sent over cover parts of it but I don't want to send over more until you've read through them
The links I sent over initially are specifically for Step 1 and part of Step 3
The other parts (Step 2 + step 3) you're going to need to dig into Stripe Connect (https://stripe.com/docs/connect/accounts) and decide which account type you need
Based on what you've said you'll likely want express or custom accounts with either destination charges or separate charges and transfers, but you'll want to read over those docs first before deciding
Here's the docs on destination chrages (https://stripe.com/docs/connect/destination-charges) and separate charges and transfers (https://stripe.com/docs/connect/charges-transfers) if you want to take a look
Hi, I have gone through all the docs you shared, even though I had already read all those in the past.
I didn't get the solution of how we can save the user's bank details only once while registering, and deduct the specific amount from it at each shopping without showing a striped window to the user. Else, everything is clear, can you explain the one I ask for?
To collect payment details during registration (w/o payment) you want these docs - https://stripe.com/docs/payments/save-and-reuse?platform=web. They talk about using a SEtupIntent with PaymentElement to collect payment information
Once you have the payment details you can charge them at any point using that PaymentMethod and using it in a PaymentIntent (https://stripe.com/docs/payments/save-and-reuse?platform=web#charge-saved-payment-method)
Thanks for sharing the links. I'll try to implement and post a query if I am stuck anywhere or need any guidance.
Many thanks for the help! Really appreciated.