#calebmmmm
1 messages ยท Page 1 of 1 (latest)
Can you share the financial connection account ID (fa_xxx)?
stripe accounts delete-person person_1NVMYJDBqR8ZrDbkDWWnGBcV --account acct_1NVM87DBqR8ZrDbk
Thanks for sharing! This is for Stripe Connect, instead of Financial Connection Account
Checking it now
I did added a custom connection account and accidentally added an extra person that I would like to delete.
Financial Connection Account and Connected Account are two different products that Stripe offers. From the acct_1NVM87DBqR8ZrDbk, it's a Connected Account. To delete a person in Connected Account, you may refer to the guide here: https://stripe.com/docs/api/persons/delete?lang=cli
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
CLI command will be:
stripe persons delete acct_xxx person_xxx
you may login in CLI with interactive mode using live mode restricted key: https://stripe.com/docs/cli/login
or use curl command with live mode secret key instead of using CLI: https://stripe.com/docs/api/persons/delete?lang=curl
I am logging in using interactive mode via browser and it works fine, but when I try to run the command to delete the person it says mode is Test and doesn't work
Logging in with browser is the basic mode. Interactive mode should be:
stripe login --interactive
can I pass my api-key in to the login by command?
what am I doing wrong here:
I login ... I pass a live key that looks to work
but then when I try to delete the person it says: Mode: Test
oh.... actually... it says I can't delete the person!
how do I delete a person on the connection account?
Can you copy and paste the request ID (req_xxx) from the screenshot?
req_CRk5MpbPwh7udC?t=1689730231
From https://dashboard.stripe.com/connect/accounts/acct_1NVM87DBqR8ZrDbk/activity, this account has completed the onboarding and the person has been verified
Once the account's representative information has been submitted, the person can't be deleted
ok
You can only update the person details
this account still says "Restricted" - "Provide more information in order to provide payouts for this account"
It shows status is "completed" and on the Actions required tab it now says: "no actions required"
Why does it still show restricted? can you tell?
Where did you see Restricted? I only see Complete label on this account
nevermind
I just logged out and logged back in and it doesn't show anymore
thank you for your help!!!
I wish I could delete that person ๐
No problem! Happy to help ๐
Great to hear that the account has been completed
Once the person is submitted, it can only be updated
ok... so now how would I process a payment that would apply to this connected account?
my api is currently passing a live key for the parent account
You may refer to the guide here: https://stripe.com/docs/connect/destination-charges
ok... so I pass the transfer_data[destination] with the charge
Yup! I'd recommend trying out in test mode with test secret key first before performing any live mode charges
yeah... I need to play with it
Will the transaction and customer information then show up in the connection account?
The payment and customer information will be processed on the platform and only the final transfer amount will be available on connected account
Since this connected account is a Custom connected account, there won't be any Dashboard access for the connected account holder
Your system should implement your own UI/Dashboard for Custom connected accounts to see their transaction history
maybe I should use an express connected account?
It's up to your business decision. You may refer to the connected account type comparisons here: https://stripe.com/docs/connect/accounts
An Express connected account has limited Dashboard access using Express Dashboard
Thanks for your help... I think I'm starting to wrap my head around this.