#oleg-codaio
1 messages · Page 1 of 1 (latest)
For context, we want to pay out users only when they reach a certain minimum ($100 usd). Since Stripe Connect doesn't support minimum payouts, we rolled our own system using minimum payouts for these, but are stuck with international accounts, since we need to specify the transfer amount in the destination account's currency
Thanks for the information. Let me check and get back to you
Actually I figured it out, tho it's kinda hacky:
- Use
--expand data.destination_paymentto get Stripe to expand access to the payment - Retrieve the
balance_transactionin the context of the Stripe Connect account, which contains the amount and exchange info
Don't feel super confident doing this since I don't see a direct payments API - or am I missing something?