#r-v-chandan_code
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/1337014199741710336
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
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.
- r-v-chandan_api, 3 days ago, 8 messages
this is the dashboard view have balance of 20$
hi there!
hello
but transfering from merchant connect account to their external bank account i
to send money to their bank account, don't use a Transfer. instead it's a Payout.
Stripe.apiKey = grails.util.Holders.getGrailsApplication().config.mks.stripe.apiKey
//this below one i created to transfer from platfrom account to merchant connected account
TransferCreateParams params =
TransferCreateParams.builder()
.setAmount(2000L)
.setCurrency("usd")
.setDestination("acct_1QoJpjFdXhVYPfUI")
.build();
Transfer transfer = Transfer.create(params);
// this created to transfer from merchant connect account to their external bank account
PayoutCreateParams params =
PayoutCreateParams.builder()
.setAmount(1000L)
.setCurrency("usd")
.setSourceType(PayoutCreateParams.SourceType.BANK_ACCOUNT)
.build();
RequestOptions requestOptions =
RequestOptions.builder().setStripeAccount("acct_1QoJpjFdXhVYPfUI").build();
Payout payout = Payout.create(params, requestOptions);
this im using below for payout
this error i m getting
can you share the Request ID (req_xxx)?
req_FG0x05akPvHCxS
why are you using source_type: "bank_account"? can you try to request without it?
also can you try this:
You can use the /v1/balance endpoint to view your Stripe balance
sure will try without source type
it worked thank you sooo much your awesome
can't we transfer directly from platform account to connected account's external account because this creating twise transaction so
no that's not possible