#anbu_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/1285136993424117801
📝 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.
- anbu_api, 3 days ago, 24 messages
- anbu_webhooks, 3 days ago, 24 messages
What do you mean by status "new" ?
{
"id": "ba_1PxjCDPoVMUWYhSZNep9toiK",
"object": "bank_account",
"account": "acct_1Px65MPoVMUWYhSZ",
"account_holder_name": null,
"account_holder_type": null,
"account_type": null,
"available_payout_methods": [
"standard",
"instant"
],
"bank_name": "STRIPE TEST BANK",
"country": "GB",
"currency": "gbp",
"default_for_currency": true,
"fingerprint": "HdYZA8VeONvJhIxS",
"future_requirements": {
"currently_due": [],
"errors": [],
"past_due": [],
"pending_verification": []
},
"last4": "2345",
"metadata": [],
"requirements": {
"currently_due": [],
"errors": [],
"past_due": [],
"pending_verification": []
},
"routing_number": "10-88-00",
"status": "new"
}
i have this details for my connected account bank
"status": "new"
when this status is new, can i make payout for this bank account in live mode
Ok, so your question is about whether you can create a payout to an external bank account if its status is new?
yes
https://docs.stripe.com/api/customer_bank_accounts/object#customer_bank_account_object-status based on the API reference, yes you can
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
if bank is verified or invalid or any other status is changed, how to receive this information, is any webhook event is triggered?
Thanks for waiting
https://docs.stripe.com/api/accounts/object#account_object-external_accounts-data-status - it should be in the account.updated event
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
ok thank you!
i request chatgpt, it respond is
Here’s what happens during the verification process:
Verification in Progress: When the bank account is added, its status may be "new", and Stripe will attempt to verify it.
Verification Completed: If the verification is successful, you will receive the account.external_account.updated webhook with the updated status ("verified", "validated", etc.).
Verification Failed: If the verification fails, the same webhook will be triggered, but the status may be updated to "verification_failed" or "errored".
base on chatgpt response, can i receive "account.external_account.updated" after status is changes on external bank account or only received account.updated event
https://docs.stripe.com/api/events/types#event_types-account.external_account.updated yes, you are right. in fact that's a better answer!
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
okay thanks for your confirmation!