#919889495555_api
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/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.
- 919889495555_api, 2 days ago, 66 messages
- 919889495555_api, 4 days ago, 41 messages
- 919889495555_api-account-support, 5 days ago, 32 messages
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?
If the transfer creation request succeeds, the funds should be immediately transfered to the connected account
so this one transfer to connected account or connected accounts bank?
Connected account
how to transfer amount directly to connected accounts bank?
You need tto transfer funds to connected account first, and Stripe will automatically create payouts to transfer funds to the bank account.
but how i will get the payout confirmation?
https://docs.stripe.com/api/events/types#event_types-payout.paid you can listen to this event. It occurs whenever a payout is expected to be available in the destination account
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
No
what does payout do?
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
Yes you can create manual payouts if that's what you prefer
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.
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"
}
}
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)
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"
}
}
The £160.00 is the future payout, which mean the funds isn't avaible in the connected account yet.
https://docs.stripe.com/testing#available-balance you should use this card to create charges and funds will be immeidately available for payouts
let me try now
You mean when will the funds be ready for payouts? Check the payout speed here https://docs.stripe.com/payouts#payout-speed