#mitsu_api
1 messages ยท Page 1 of 1 (latest)
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! We typically respond in a few minutes, but in some cases we might need a bit more time (e.g., server's busy, you've got a complex question, etc.).
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can 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/1253273439788204073
๐ Have more to share? Add details, code, screenshots, videos, etc. below.
api get balance
"{"object":"balance","available":[{"amount":0,"currency":"jpy","source_types":{"card":0}}],"livemode":false,"pending":[{"amount":157500,"currency":"jpy","source_types":{"card":157500}}]}" // app\Console\Comman
How to make the amount 157500 yen go to availabe status
because I want to test the payouts api with acct_1PNwB0IhrxSm1uOC
My business is: when a customer withdraws money, the amount is greater than 10,000 yen
Does the amount I circled in red: available have to be payouts?
you can only make payouts with the funds that are available yes.
How to make the amount 157500 yen go to availabe status
did you check https://docs.stripe.com/connect/testing#payouts ?
well actually https://docs.stripe.com/testing#available-balance is the better link
To send the funds from a test transaction directly to your available balance, use the test cards in this section. Other test cards send funds from a successful payment to your pending balance.
i am using paymentIntents->create
then paymentIntents->capture
=> money returned to acct_1PNwB0IhrxSm1uOC
'customer' => $cus_id,
'payment_method' => $pm_id,
I understand that I have to create payment_method from card number 4000000000000077, right?
yes
pm_1PThgiIJOXcdaYNktIPnuAKm is generated from card number 4000000000000077
next
paymentIntents->create
=> paymentIntents->capture
In the end, the money was still not available
In the end, the money was still not available
how are you determining that is the case?
that's all normal to me. What's the exact issue?
"{"object":"balance","available":[{"amount":38500,"currency":"jpy","source_types":{"card":38500}}],"livemode":false,"pending":[{"amount":157500,"currency":"jpy","source_types":{"card":157500}}]}" // app\Consol
I call the balance api and it's ok, thank you
yep
1 . When call api payouts is successful or error occurs
-> will the stripe system automatically send email to the connected account?
2. Can customers access the dashboard to view their balance?