#rafmaghari-balance

1 messages · Page 1 of 1 (latest)

amber blade
#

@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

low cobalt
#

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

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

low cobalt
#

Great I will try to implement this. Thanks! 🙂

low cobalt
#

@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.

amber blade
#

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