#nitin
1 messages · Page 1 of 1 (latest)
A payment or a payout?
You keep referencing a Payout, and a Charge. I'm confused
Can you share the ID of the object you're referencing?
i was looking for revversal and could only find the payout reversal, hence the confusion
i acutally want to reverse the payment
and the payment id is :py_1NIuf1LYIdOgE1QHvJvsuZfD
Then you'd just refund it: https://stripe.com/docs/refunds
okay
let me be a bit more specific
The platform that i work on deducted the 199 from another connected account
This was mistake , however
now , what will be the quickest way to rectify it
?
You can just transfer it back from the platform to the connected account: https://stripe.com/docs/api/transfers
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
Stripe::Transfer.create({
amount: 400,
currency: 'usd',
destination: 'acct_19QLY8LYIdOgE1QH',
transfer_group: 'ORDER_95',
})
suppose this is my API, where do i specify the source?
my source is : acct_19QLY8LYIdOgE1QH
and destination is :acct_1KNJvpPx0nUDmHvX
You don't, it just automatically pulls from your platform account balance