#akash.bhaskar
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- akash.bhaskar, 24 minutes ago, 10 messages
- akash.bhaskar, 3 hours ago, 9 messages
- akash.bhaskar, 23 hours ago, 12 messages
- akash.bhaskar, 1 day ago, 12 messages
- akash.bhaskar, 1 day ago, 6 messages
- akash.bhaskar, 1 day ago, 32 messages
and 3 more
??
Hi, let me help you with this.
What do you mean by "seperately store the amount" exactly?
one sec
like for example..i am charging the total of 2 amount for my customer..the first is the price for consulation..which goes to the consultant..and the other one is a commision fee..which the stripe owner gets..so how to seperately store them or give them a tag
currenlt passing the breakdown of the total amount thru metadata..is there any other way?
Are you using Stripe Connect?
yes
Are you using Destination Charges?
no
You can set application_fee_amount if you're using Direct Charges: https://stripe.com/docs/connect/direct-charges#collecting-fees
can i use this in payment intent?
const paymentIntent = await stripe.paymentIntents.create(
{
amount: 1000,
currency: 'usd',
automatic_payment_methods: {
enabled: true,
},
application_fee_amount: 123,
},
{
stripeAccount: '{{CONNECTED_ACCOUNT_ID}}',
}
);
in this the total amount includes the application fee amount also?
Yes, the application_fee_amount is subtracted from the total, the rest goes to the Connected account balance.
ohkk..thanks!
Happy to help.