#Pravin-webhook
1 messages · Page 1 of 1 (latest)
let suppose we want to show the user what percentage of fee applied from stripe for card or ACH request
like 2.9% for card and something for ACH
https://stripe.com/docs/expand/use-cases#stripe-fee-for-payment shows how to get the Stripe fee on a charge
for the same do we have any api or webhook events
to pull the data and display to user?
this data i ll get after performing any transaction . but for new user i want to show before hat
you can't get the fee before the payment has happened, but you could write some code to predict what it will be based on the payment method the customer wants to use and so on.
it's quite difficult (but completely possible) though so I wouldn't unless you really really have to for some reason.
oh ok
please let me know if below case is possible
xyz is the user who is doing lots of transition using stripe card payment but 2.9% fee is bit more for that user.
will it possible that stripe will reduce some amount of transaction fees for that particular user as he is valuable customer ?
@barren fossil
you'd ask our sales/support team that question.
ok perfect i can do that
my next question is, if those values changed. how will i get to know? so do we have any webhook event for stripe processing fees or any api through which ill get that data
no, there's nothing like that really. Our API will tell you what the fee on a charge was(see link above), not the exact calculation or rate. If you have negotiated different pricing that's something you just have to know and code into your system.
Awesome . Thank you clarifying