#rafmaghari-balance
1 messages · Page 1 of 1 (latest)
@low cobalt there is not. But you can give yourself available funds by creating a payment using the first test card in the list at https://stripe.com/docs/testing#cards-responses and that should work for creating manual payouts of that balance
What's the default country of this card? We are only accepting AUS because we're testing the full computation. Thank you! 🙂
Meaning if I use this card all the charges and transfer are already in available balance? That's great! @amber blade
I think it counts as being issued in the US, but to be clear that's connected to the currency of the funds, you create a charge for it using any currency you want and you get that money
const charge = await stripe.charges.create({
   source : "tok_bypassPending",
   amount : 1000,
   currency : "aud"
});
something like that in a one off script works, it doesn't have to be actually integrated in your full flow since it's just a test action to add some money to your test balance
Great I will try to implement this. Thanks! 🙂
@amber blade , Hello thank you! My next question is, Is there any fee in payout?
because when I try to payout there is no stripe fee in computation.
there are fees for payouts using Connect and some active account fees yes, but those are I believe batched into adjustments to your account balance monthly rather than being deducted at source; and that process doesn't happen in test mode
basically you will occasionally get a stripe_fee balance transaction on your platform account for fees relating to products like Connect (https://stripe.com/docs/reports/balance-transaction-types#balance_related)