#khaled_03640
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.
- khaled_03640, 2 hours ago, 19 messages
- khaled-connect-sc&t, 20 hours ago, 25 messages
- khaled_03640, 21 hours ago, 93 messages
This guide will help https://support.stripe.com/questions/passing-the-stripe-fee-on-to-customers
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
no I don't need the customer to pay for me the fees
it will be deducted from the platform account but i need to know the amount of it
?
Would this apply? https://stripe.com/docs/expand/use-cases#stripe-fee-for-payment
And if not, can you give me a specific example of how you would want this fund flow to work with a payment of $10?
i got api for transaction
this is the response
{
"id": "txn_1OetPZFEgoPPTUJhVgVPivEB",
"object": "balance_transaction",
"amount": -550,
"available_on": 1706767569,
"created": 1706767569,
"currency": "aed",
"description": "Connect (2024-01-01 - 2024-01-31): Active Account Billing",
"exchange_rate": null,
"fee": 28,
"fee_details": [
{
"amount": 28,
"application": null,
"currency": "aed",
"description": "VAT",
"type": "tax"
}
],
"net": -578,
"reporting_category": "fee",
"source": null,
"status": "available",
"type": "stripe_fee"
},
I need this amount "amount": 28,
but how to get the payment I just have txn_1OetPZFEgoPPTUJhVgVPivEB
If you expand the source property it will show you the object that the balance transaction was created from https://stripe.com/docs/api/balance_transactions/object#balance_transaction_object-source
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.