#ianh_eth
1 messages · Page 1 of 1 (latest)
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
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
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