#morteza_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/1266374137111384136
📝 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.
- morteza_api, 46 minutes ago, 51 messages
in the docs, we have "You can only move an amount up to your available Stripe balance. Funds won’t be available in your Issuing balance while the transfer is pending. " this sentence, but how can I know if the transfer is pending
there's no status on the Transfer object
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
hi there!
correct, there's no status on the Transfer object.
I guess you can directly check your balance to see how much funds you have: https://docs.stripe.com/api/balance/balance_retrieve
sure but how can I know if a transfer is pending or available
you would check your balance to see if funds have been added/removed to your available balance.
by the way
if we transfer money
to stripe issuing using stripe's main account, will it be in the transfers list immidiately
or it will be in the list after it's available
?
the docs you were looking at earlier (https://docs.stripe.com/issuing/funding/balance) say
When that account receives funds, they’re immediately available as a top-up to your Stripe account’s Issuing balance.
so I believe it's immediate.
but
what about for the
transfers
Transfers from your Stripe balance are instant and available 24x7 in the US, or take one business day in the UK and euro area countries
in the UK it may take up to 1 day, imagine I need to show pending for that in my application
how can I do that
how can I find the status for a transfer
I'd imagine the available_on (https://docs.stripe.com/api/balance_transactions/object#balance_transaction_object-available_on) for the BalanceTransaction asociated with the Transfer will tell you when the funds are available.