#OliverDev-donations
1 messages · Page 1 of 1 (latest)
Hello 🙂
I have a website, created with html, css, js, php, I wanted to add with stripe if it is possible a button for example offer me a pizza, and that people could choose how much to give me like 2 €, 5 € 10 € etc ... .
it's possible to do it ?
Yep! It's just a standard Stripe integration. Start here: https://stripe.com/docs/payments/accept-a-payment?platform=web&ui=elements
thank you very much, with this guide the customer decides when to give me?
Yep, you'd pass that value to the amount parameter when creating the Payment Intent
You'd need to build a UI/form to capture those values though
thank you very much how much do they take me for errands?
for example if someone gives me € 5, how much will I get € 4.60?
Hi! You mean how much is the Stripe fee? You can learn more about this here: http://stripe.com/pricing
they took away more from me I did a test with the Ukrainian card to make a payment of 5 € I only got 4.60 € they took away 8% why?
Fees depend on the payment method and country. You can check the exact fee by looking at the Balance Transaction object associated with the payment. It has a fee and fee_details property: https://stripe.com/docs/api/balance_transactions/object#balance_transaction_object-fee
And what where you expecting to get? Can you share the PaymentIntent ID?
ID pm_1KqDIHFsxGhLgrwdzRQrmQqI
I just wanted to know how many commissions they get because I saw they get me 8% that's all
Thanks! Give me a few minutes to look into this.