#nathan-djian-martin_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/1327223185736732732
๐ 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.
- nathan-djian-martin_webhooks, 22 hours ago, 16 messages
- nathan-djian-martin_webhooks, 1 day ago, 10 messages
hi there!
Hi ๐
can you share the connected account ID (acct_xxx)?
acct_1QfchgHHAd4Tru4G
thanks, having a look
you could update the Connected account to disable the Transfer capability: https://docs.stripe.com/api/accounts/update#update_account-capabilities-transfers
From what I see on the link you sent me I can update the transfer.requested capability but it doesn't look like I can turn it off ๐ค
requested is a boolean. you can set it to false to disable that capability.
From the output I get it looks like it's not possible in my case
oh right. let me think...
I tried creating a charge with the "tok_visa_triggerChargeBlock" token
can you share the request ID (req_xxx) where you tried this?
req_KvrdLaWfqNONHB
the documentation says:
For the trigger actions to work, you must use these cards with a Connect charge by setting on_behalf_of, or creating the charge directly on the connected account.
which you didn't do.
Didn't I create the charge on the connected account?
I used the account ID as the destination of the charge
And when creating the charge I saw that the requirements went from "eventually_required" to "required_now"
that charge was made on acct_1FOmpmHBSdnTEMdF (the platform account)
And when creating the charge I saw that the requirements went from "eventually_required" to "required_now"
interesting. so what's the issue then?
The issue is that I expected the transfers to be disabled when the requirements changed but the transfers are still active
And in my test case I need the transfers to become inactive, otherwise I can't test my feature
However when I hover the transfer on the Connect Dashboard, I see that they will become inactive "soon".
I'd like to be able to easily make the transfers change the transfer status to inactive or active (my feature relies on the activation/deactivation of the transfers)
You can pause payouts via the Dashboard for an account, which effectively does the same: https://docs.stripe.com/connect/pausing-payments-or-payouts-on-connected-accounts
Or you can basically reject the account: https://docs.stripe.com/api/account/reject
Hey, taking over here. Let me know if there's any follow-up Qs I can answer!
Hi ๐
I don't want to pause payouts but transfers.
And rejecting the account is not an option for me as I need to be able to reactivate transfers after I deactivate it.
I don't want to pause payouts but transfers.
How are you making transfers ?
Via direct API ?
Sorry, I meant payments. If you pause payments then the transfers capability becomes inactive:
Pausing payments blocks creation of any charges. It also makes the transfer, card_payments and other payment methods capabilities inactive.
How are you making transfers ?
I update the transfer_data attributes of some customers so a transfer is automatically created when they make a payment.
I'll try pausing payments and let you know
I update the transfer_data attributes of some customers so a transfer is automatically created when they make a payment.
Then yes, as mentioned by my colleague, pausing payments would pause the automatically created transfers from charges