#ohdeedeeoh

1 messages · Page 1 of 1 (latest)

ember drumBOT
#

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.

arctic anvil
#

That will be up to your business decision to decide how the split will be like, whether net or amount should be used

unborn lodge
#

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

arctic anvil
#

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?

  • amount includes tax and discount
  • net is amount - 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)

unborn lodge
#

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 ?

arctic anvil
#

And plus after stripe fee, right?
net = (final amount collected after tax and discount - fee)

  • The fee here refers to Stripe fee
unborn lodge
#

discount - fee
does - means minus or and ?

#

net = checkout_total - tax - discount - fee
Am I right?

arctic anvil
#

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