#deepumi_connect-transfers-balances
1 messages ยท Page 1 of 1 (latest)
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.
- deepumi_transfer-reversal, 1 hour ago, 251 messages
- deepumi_api, 13 hours ago, 64 messages
- deepumi_api, 15 hours ago, 60 messages
- deepumi_connect-refund, 18 hours ago, 40 messages
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! We typically respond in a few minutes, but in some cases we might need a bit more time (e.g., server's busy, you've got a complex question, etc.).
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can 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/1253757318601117848
๐ Have more to share? Add details, code, screenshots, videos, etc. below.
If the Connect balance can sustain the amount of the Transfer Reversal, then you can create one, yes
okay thank you
I should concern only on Accunt balance correct?
Samle one...
Example above screen: has sufficient balance..so iy is ok to proceed with right?
I'm not sure what you're asking. Have you tried it?
No, the above screen was a production screen..
I would recommend testing before doing new things in production
It should work, but I also have no idea what you're doing. So I would create a test account with that balance and a Transfer to make sure it works as expected
Its is not based on a given charge right?
Hi ๐
I'm stepping in as my colleague needs to go
A transfer reversal is associated with a transfer . So you first need to have a transfer. you sent to the Connect Account and then you can reverse them.
https://docs.stripe.com/api/transfer_reversals/create
I am using Destination charge type.. so.
I can give you a production transaction reference, can you confirm?
I was testing using this API -> https://api.stripe.com/v1/transfers/[txn_3PTxDXIcWSSPnlgr1nl11Ka5]/reversals, it was working for me.
Sorry the words you are using don't make sense to me. Also the URL isn't something I can use. Can you just share the transaction ID?
Sorry, how about transfer ID =
tr_3PTxDXIcWSSPnlgr1z6hoIWF
Okay that I can use
Thank you
I don't see an attempt to reverse this transfer though.
What is it you are actually trying to do here?
I have not started yet, but wanted to confirm the balance question.
I will start eventually later today
Before doing the transfer, I want to make sure the total account balance is the only amount I need to pay attention to.
Is there any API I can use? I tried the balance_transaction API, but it shows a negative amount for a given transaction, so I thought I couldn't use that even though the account has sufficient funds.
If you want to determine whether or not the Connect Account has sufficient funds you can use the Balance API https://docs.stripe.com/api/balance/balance_retrieve
You will need to make the request for the Connect Account using the Stripe Account header: https://docs.stripe.com/connect/authentication
let me check quickly...thank you
in this response data which property to check?
{
"object": "balance",
"available": [
{
"amount": 56590,
"currency": "usd",
"source_types": {
"card": 56590
}
}
],
"connect_reserved": [
{
"amount": 0,
"currency": "usd"
}
],
"instant_available": [
{
"amount": 48116,
"currency": "usd",
"source_types": {
"card": 48116
}
}
],
"livemode": true,
"pending": [
{
"amount": -8474,
"currency": "usd",
"source_types": {
"card": -8474
}
}
]
}
There is an "instant_available" object node and "available" node.
what is the difference?
could you please explain which one to check for?
We have a doc for this. Please read this: https://docs.stripe.com/connect/account-balances
ok. let me read..
I think, two things I read.. one is to use the "available" balance to do transfer and the negative amount
Are there anything else I should aware of apart from the above?
You should read all our docs on your Connect funds flow and the different aspects of Connect thoroughly. I can only help with specific questions about the API. I can't tell you what you need to know in general.
Okay, thank you. I will read the docs
Great! If you have questions about specific elements of the docs then we will be happy to help.
okay got it
๐