#r-v-chandan_code

1 messages ¡ Page 1 of 1 (latest)

trim elbowBOT
#

👋 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.

snow kestrel
#

this is the dashboard view have balance of 20$

thin stream
#

hi there!

snow kestrel
#

hello

thin stream
#

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.

snow kestrel
#

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

thin stream
#

can you share the Request ID (req_xxx)?

snow kestrel
#

req_FG0x05akPvHCxS

thin stream
#

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

snow kestrel
#

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

thin stream
#

no that's not possible