#919889495555_api

1 messages · Page 1 of 1 (latest)

rose hornetBOT
#

👋 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/1290173393043324959

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

patent barn
#

return self::Stripe()->transfers->create([
'amount' => 1,
'currency' => 'gbp',
'destination' => 'acct_1Q2vjWIwkC6Mtt1Sd',
'transfer_group' => 'ORDER100',
]);

#

HI

#

i am using this api for transfer

#

but i need to check the status of this transfer, whether its reached to users account or not

#

how to track that?

sharp pasture
#

If the transfer creation request succeeds, the funds should be immediately transfered to the connected account

patent barn
#

so this one transfer to connected account or connected accounts bank?

sharp pasture
#

Connected account

patent barn
#

how to transfer amount directly to connected accounts bank?

sharp pasture
#

You need tto transfer funds to connected account first, and Stripe will automatically create payouts to transfer funds to the bank account.

patent barn
#

but how i will get the payout confirmation?

sharp pasture
patent barn
#

so is there any way that i can send directly to bank account

#

?

sharp pasture
#

No

patent barn
#

what does payout do?

sharp pasture
patent barn
#

can payout be done on specific bank account via api?

#

Call the Payout API and specify instant for the method property and enter the debit card or bank account to pay out to as the value of the destination property.

#

this one is mentioned on your document

sharp pasture
#

Yes you can create manual payouts if that's what you prefer

patent barn
#

that means we can do a payout via api to destination bank

#

account?

sharp pasture
#

Provided the connected account has sufficient funds for payouts.

#

To summarize, you need to firstly create a transfer to send funds from platform to the connected account, and then create a payout to move funds from connected account to their bank account.

patent barn
#

exactly what i need

#

stripe payouts create --amount="10" --currency="gbp" --method="instant" --destination="ba_1Q3Hs8ROd8dIznXZPaui0rhW"

#

so i have set destination to bank id which i got while adding bank

#

but getting an error

#

{
"error": {
"code": "resource_missing",
"doc_url": "https://stripe.com/docs/error-codes/resource-missing",
"message": "No such external account: 'ba_1Q3Hs8ROd8dIznXZPaui0rhW'",
"param": "destination",
"request_log_url": "https://dashboard.stripe.com/test/logs/req_rBjUodwfiOSFol?t=1727674299",
"type": "invalid_request_error"
}
}

Learn more about error codes and how to resolve them.

sharp pasture
#

The bank account ba_1Q3Hs8ROd8dIznXZPaui0rhW was created on the connected account, but you were trying to create a payout on the platform, not connected account.

#

You should specify a stripe_account in the request.

By specifying a stripe_account, you are telling Stripe that you want to make an API call on behalf of a connected account. You can refer to this doc to learn more about making API request for connected account (https://stripe.com/docs/connect/authentication)

Learn how to add the right information to your API calls so you can make calls for your connected accounts.

patent barn
#

hi

#

i have balance in my account

#

stripe payouts create --amount="1000" --currency="gbp" --method="instant" --source-type="bank_account" --destination="ba_1Q4cL8IC7vss08LIAdm3ztZL" --stripe-account="acct_1Q3BZyIC7vss08LI"

#

{
"error": {
"code": "balance_insufficient",
"doc_url": "https://stripe.com/docs/error-codes/balance-insufficient",
"message": "You have insufficient funds in your Stripe account for this transfer. Your ACH balance is too low. You can use the /v1/balance endpoint to view your Stripe balance (for more details, see stripe.com/docs/api#balance).",
"request_log_url": "https://dashboard.stripe.com/acct_1Q3BZyIC7vss08LI/test/logs/req_QoJvosG7cNkN2s?t=1727676607",
"type": "invalid_request_error"
}
}

Learn more about error codes and how to resolve them.

sharp pasture
#

The £160.00 is the future payout, which mean the funds isn't avaible in the connected account yet.

patent barn
#

when this will be available?

#

its in test mode right now

sharp pasture
#

https://docs.stripe.com/testing#available-balance you should use this card to create charges and funds will be immeidately available for payouts

Use test cards to validate your Stripe integration without moving real money. Test a variety of international scenarios, including successful and declined payments, card errors, disputes, and bank authentication. You can also test non-card payment methods and redirects.

patent barn
#

let me try now

patent barn
#

when do we get the future payout for payout?

#

?

sharp pasture
patent barn
#

no

#

i mean the future amount

#

to payoutable amount

#

like in this it has Future payouts

#

when i can actually be able to send it to my bank account?