#dalbeer
1 messages · Page 1 of 1 (latest)
You can manage your payouts here https://dashboard.stripe.com/settings/payouts Also automatic payout is the default payout option.
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
You can turn on test mode and visit the same link
when i turn on the test mode then payout schedule section is not there
Looks like there's update on Dashboard and you can only configure payout schedule in live mode
then how can i check it in the test mode
https://dashboard.stripe.com/test/payouts you can still check your payouts in test mode. It's just that you can only configure payout schedule in live mode
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
the scenario is i have tranfer the funds from the platform to the connected account with the stripe.transfer.create() then how can i transfer that fund to the bank account of the connected account ?
whats the further steps ?
You can't transfer the funds from platform to connected account's external bank account directly
You need to transfer the funds from platform to connected account first, once the funds become available, it'll be automatically paid out to the external bank account of the connected account.
can you please check the screenshot https://i.imgur.com/QI6zJn5.png
the automatically paid out is not working
What's the payout ID? and also tell me what you expect from this payout.
this is the payout id
po_1NnWpAIMw2u2QxWOsHjWTZps
and the account type is standard
i want to check it works fine then i want to live the keys
I can see that the payout was created successfully, so what's not working for you?
i just want to confirm that in the live mode the payment is tranfer to the external bank accout for the connected account?
If the payout is created the successfully, then the payouts will reach to the bank account eventually. Stripe will also notify the account admin if the payout fails https://stripe.com/docs/payouts#payout-failures
what's the Payout in transit and Payout initiated automatically ?
at last, can you confirm that is it ok and working fine in the live mode too what i have done?
I saw no problems at this moment, if you encounter any problem in production, feel free to reach out to us again.
okk thanks
with the help of this the payment will be refund
stripe.Refund.create(payment_intent="xxxxx")
Yes this is the API to create a refund
how much time it take to refund that payment ?
while cancel the order with some amount what should i use ?
stripe.PaymentIntent.cancel("xxxxx")
and this stripe.Refund.create(payment_intent="xxxxx")
You can only create refund when the PaymentIntent is succeeded, since you already cancel the PaymentIntent, you don't need to create a refund.