#jainnikesh_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/1217823546542260236
đ 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.
- jainnikesh_code, 2 days ago, 19 messages
- jainnikesh_code, 3 days ago, 43 messages
Did you have a question?
curl https://api.stripe.com/v1/transfers
-u "sk_test_51Ixs95BTDnqJlDMT2JgOxPxiDtor9YKftcsii5nW5PymK9iFWorJZDJSfrkSPJfz0r7P78JNhpsRTUHqypNsuQoC00Nma7d1oI:"
-d amount=500
-d currency=usd
-d destination={{PLATFORM_STRIPE_ACCOUNT_ID}}
-d "reference_transaction[type]"=charge
-d "reference_transaction[charge]"={{REFERENCE_TRANSACTION_ID}}
using this api if we get success then
how many days wil;l take to reflect in accunt ?
and is there iny chance that they amount will not reflect in destination account
and did this api will immediately debit that amount from bank account or just checking he balance and giving success response and after some time it will debit amount
what is the background process for this api
In the future, please put your question in our form, it helps us help you faster.
It also looks like you may be in a beta of some sort, since you're passing reference_transaction. Does that sound familiar?
that is just curl
i just want detail for this api
using this api if we get success then
how many days wil;l take to reflect in accunt ?
and is there iny chance that they amount will not reflect in destination account
and did this api will immediately debit that amount from bank account or just checking he balance and giving success response and after some time it will debit amount
what is the background process for this api
This creates a Transfer, so it doesn't interact with bank accounts at all. It moves funds from one Stripe Account to another.
Typically they're instantaneous, is that not what you're seeing in your testing?
The request to create the Transfer will fail if funds aren't available.
so will it check funds to bank account ?
we are doing transfer from connected account to main account
now let's connected account doesnt have enough balance will it debit from their bank account ?
as this link says it will do
last line
That's getting into risk controls for your Platform account, which I don't have insight into. I'd recommend checking with our Support on what the expected behavior for your Platform is, if what you're seeing in testing isn't aligning with what you're expecting.
https://support.stripe.com/?contact=true
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
so now i have que
using this api if we get success then
how many days wil;l take to reflect in accunt ?
and is there iny chance that they amount will not reflect in destination account
and did this api will immediately debit that amount from bank account or just checking he balance and giving success response and after some time it will debit amount
what is the background process for this api
These are the same questions
Immediately
I don't know what you're trying to ask by "and is there iny chance that they amount will not reflect in destination account", are you seeing something in your testing that is leading you to ask this? Maybe that insight will help me understand what you're trying to ask.
This request is not directly tied to debiting a bank account, it debits a Stripe account balance (not a bank account balance). I don't have insight into how negative balances are recovered via automatic debits if that is set up for your Platform, that is something I'd recommend checking with our Support team.