#vrk18_unexpected
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1340967006714855496
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
On test environment, pi ID is pi_3QtNjiHvbngkCFkt1cjYKgwG
transfer id is
tr_3QtNjiHvbngkCFkt1N6t7eJz
Transfer destination is
acct_1OKvAxH6I1szjHmv
So you PI is 10198, and you refunded 10000, which means this is a partial refund. Hence the reversed is also pro-rata on the rate
PI creation: https://dashboard.stripe.com/test/logs/req_iyX9jMtuZfTxlg
Refund: https://dashboard.stripe.com/test/logs/req_P6X6HoQIEk9w3g
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
How do we make sure it reverse the mentioned amount ??
what is pro-rate ?? fee on the transfer reverse ??
It means it divide 10000 / 10198 = ~0.98 and do everything according to this rate. So the reversed amount is 10000 * 0.98 = ~9806
How much amount is refunding to our user ? 10000 or 9806
10000
for user 10198 cents payment ,
{
"amount": "10198",
"payment_intent": "pi_3QtNjiHvbngkCFkt1cjYKgwG",
"reverse_transfer": "True"
}
if we put like this, 10000 is reversed from connected to platform and the user gets 10198 right ?
we want to refund the user 10000 and we should get 10000 reversed from connected account. How can we make this ??
Yes if you omit the amount parameter and refund the full payment then the full 1000 will be reversed back to your platform
Alright Thanks