#ohdeedeeoh
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.
- oh-charge-balancetransaction, 2 hours ago, 11 messages
- oh-expess-accountlink, 3 hours ago, 37 messages
- ohdeedeeoh, 4 days ago, 61 messages
- ohdeedeeoh, 5 days ago, 3 messages
- ohdeedeeoh, 5 days ago, 7 messages
- ohdeedeeoh, 5 days ago, 16 messages
and 3 more
That will be up to your business decision to decide how the split will be like, whether net or amount should be used
Is the net after all stripe fees, and tax, and discount?
I want to split after all stripe fees, tax, and discounts
Essentially postive number if any after a customer checkout a session with one time or subscription
net field: https://stripe.com/docs/api/balance_transactions/object#balance_transaction_object-net
Net impact to a Stripe balance (in cents). A positive value represents incrementing a Stripe balance, and a negative value decrementing a Stripe balance. You can calculate the net impact of a transaction on a balance by amount - fee
amount field: https://stripe.com/docs/api/balance_transactions/object#balance_transaction_object-amount
Gross amount of this transaction (in cents). A positive value represents funds charged to another party, and a negative value represents funds sent to another party.
Is the net after all stripe fees, and tax, and discount?
amountincludes tax and discountnetisamount-fee
Not really sure what you meant by after all stripe fees, and tax, and discount. Essentially, net = (final amount collected after tax and discount - fee)
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Essentially, net = (final amount collected after tax and discount - fee)
And plus after stripe fee, right?
net = final amount collected after Tax + Discount + Stripe Fee ?
And plus after stripe fee, right?
net = (final amount collected after tax and discount - fee)
- The fee here refers to Stripe fee
discount - fee
does-meansminusorand?
net = checkout_total - tax - discount - fee
Am I right?
No, not plus or minus. It's inclusive in the amount. net = (final amount collected after tax and discount) - (stripe fee). I'd recommend testing out yourself in test mode