#ianh_eth

1 messages · Page 1 of 1 (latest)

balmy fulcrumBOT
late wedge
#

You have two options for testing this:

#

1/ For early testing , you can use the test cards that make the balance available immediately without the pending stage
https://stripe.com/docs/testing#available-balance

Use test cards to validate your Stripe integration without moving real money. Test a variety of international scenarios, including successful and declined payments, card errors, disputes, and bank authentication. You can also test non-card payment methods.

#

2/ When you create the transfers, you use the source_transaction parameter to identify a specific charge that it pending availability, allowing you to create the transfer and the pending balance "shifts" to the connected account:
https://stripe.com/docs/connect/separate-charges-and-transfers#transfer-availability

Learn how to use Connect to create charges on your platform account on behalf of connected accounts, perform transfers separately, and retain funds in the process.

#

Option 2 is more realistic for real flows you'll need to handle, but is more complex

#

Option 1 will allow you to do testing of the transfers and other parts of the flow while you work on 2