#Durrell
1 messages · Page 1 of 1 (latest)
I don't believe that's true actually. Where did you read that?
I'm not sure. Maybe I didn't. So then we would make a call to retrieve a balance transaction if we wanted to update our system?
Ah maybe you're confusing it with the customer balance transaction (a different concept). Those are immutable: https://stripe.com/docs/api/customer_balance_transactions/create
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Yeah you could do that
is there a webhook event the will fire when a balance transaction's status updates?
If you're just looking for when funds become available, you can use: https://stripe.com/docs/api/events/types#event_types-balance.available
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Unfortunately there's not a specific one for individual balance transactions though
ok. On another note, the topup.created event https://stripe.com/docs/api/events/types#event_types-topup.created
happens when the topup is created and then the topup.succeeded event happens after the funds arrive in the account?
which could be a few days later
Correct
and on another note we can understand the "available" status of a balance transaction to be analogous to what one might think of as "posted" correct?