#Pravin-processing-fee
1 messages · Page 1 of 1 (latest)
Hi there, here's how it works
- Get the
balance_transactionfrom the charge object - look for the
fee_detailsarray of the balance_transaction object, and filter bytype=stripe_fee
what is the api name to fetch these details
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
let me check
i am not getting any balance Transaction filed for pi_3KuwvdPIzO4XJdT9178TF9GW
i am trying like below
RequestOptions requestOptions = RequestOptions.builder()
.setStripeAccount("acct_1KuwnKPIzO4XJdT9")
.build();
PaymentIntent paymentIntent=PaymentIntent.retrieve("pi_3KuwvdPIzO4XJdT9178TF9GW",requestOptions);
@vast saffron
sorry wait
its there
thanks its working for mew
Cool~ happy to help
one last question
is there any possibility that stripe processing fee will change as per request ?
Per request as in per paymentIntent?
yes
i mean lets suppose one fee is applied for one connected account and other for other connected account
the processing fee is associated to the balance transaction of one charge
yes for card payment we have different formula to apply fees and for ACH we have different
lets suppose if for xyz user for card payment Stripe is applying 2.9% processing fees
is it possible that for pqr user for card payment Stripe may apply some other processing fees other than 2.9%
You can refer to this page https://stripe.com/pricing for more info about pricing.