#Rishikesh
1 messages · Page 1 of 1 (latest)
What do you mean by 'not reflecting'? What's the tr_xxx?
hello
tr_1MvIatEhOnQTY6305lJRROGh
the amount is reduced from my source account but did not revived in destination account
And where are you expecting to see the balance deposit?
https://dashboard.stripe.com/test/payments/py_1MvIatIvwwxkHKK9vB7ajdKP is the object that reflects the Transfer
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
i will be on the customer account on which i am sending
That py_xxx object is on the destination account (acct_1MvIarIvwwxkHKK9)
let customer = 'cus_NgzC6tPGVdmQ4w'
stripe.transfers.create(
{
amount: 400,
currency: "usd",
source_transaction: customer.payment_method,
destination: "acct_1MvbEORJsVvIupOW",
},
function (err, transfer) {
if (err) {
console.error(err);
} else {
console.log("Transfer created:", transfer);
}
}
);
this is my code
yes
I'm not sure what you're expecting/asking then. This seems to be working?
day before yestorday i have made 2-3 transfers that also does no getting reflacted
ok can you please help
i have to send money to one stripe user to anther stripe user
how to achieve this
After clicking on the link you have provided
Well that's because you're authenticated as the wrong account
The Transfers API is what you'd use to move funds between account balances
can you share a code snippet
how can i verify ok check this
i have to add everything via code
I don't understand. The code you used to create tr_1MvIatEhOnQTY6305lJRROGh is fine?
yes it is? on the portal its showing successful in status
If you want to verify receipt of that transfer on the connected account then you'd listen for payment.created events, like this: https://dashboard.stripe.com/test/events/evt_1MvIauIvwwxkHKK9KXD9TOVK
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
its opening blacnk