#Wizcart Developers
1 messages · Page 1 of 1 (latest)
Hi there, do you have a balance transaction ID that I can take a look on?
txn_1MN7nNRImyL2OJINrc0qZIkB
Thanks for the ID.
If the balance transaction's type is payment, you can get the payment object by expanding the source property https://stripe.com/docs/api/balance_transactions/object#balance_transaction_object-source
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
From the payment object, you can get the original transfer ID (which was created in platform) by looking at its source_transfer property (https://stripe.com/docs/api/charges/object#charge_object-source_transfer)
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Ok let me try.