#hiren-prajapati_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/1319001443172352062
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
Hello! Can you provide more secific details, like a request ID? Here's how you can find a request ID: https://support.stripe.com/questions/finding-the-id-for-an-api-request
Stripe.account.addExternalaccount api i am using for add bank account in stripe
How to verify process bank account in stripe in test mode
Currently getting me status new when add new bank in stripe how to get verified status for bank account details verified or not?
I don't know, you haven't given me a request ID to look at. Have you read through these docs? https://docs.stripe.com/connect/payouts-bank-accounts
Yes
{
...
"external_accounts": {
"object": "list",
"has_more": false,
"url": "/v1/accounts/acct_14qyt6Alijdnw0EA/external_accounts",
"data": [
{
"id": "{{BANK_ACCOUNT_ID}}",
"object": "bank_account",
"account": "acct_14qyt6Alijdnw0EA",
"account_holder_name": "Jane Austen",
"account_holder_type": "individual",
"bank_name": "STRIPE TEST BANK",
"country": "US",
"currency": "usd",
"default_for_currency": false,
"fingerprint": "sSZ2yLp0EZTH17cF",
"last4": "6789",
"metadata": {
},
"routing_number": "110000000",
"status": "new"
},
{...},
{...},
],
...
}
In this data you look status
In this UK
Bank account information Example data
Sort Code 12-34-56
Account number 01234567
Test mode getting new status why not getting verified staus
Please help 🙏🏻
Yes i have added documents in stripe account create like connected account there getting staus me verified
But in the external bank added not getting staus me verified
Give me new
Please guide me
How to implement add bank account in stripe
That is the guide. I'm not sure what else I can do to help if you're unable to provide more specific details about the problem you're seeing, like a request ID.
Asking the same question over and over without providing the information I've asked for is not going to help.
What is request id
There's a link that explains that which I shared above: #1319001443172352062 message
req_d79V0UQouAAcXH
That's a request coming from the Dashboard. Can you give me the ID of a request coming from your code?
Also, can you confirm you're trying to do this with a Standard connect account? If that's the case I don't believe this will work, as Standard accounts have full Dashboard access and bank account details are managed by the account owner, not you as the platform.
Custom account
The request you pointed me to created a Standard account, not a Custom account.
Currently not showing me my code request why
I don't understand your question, can you rephrase?
Currently in logs not showing me from the code
Code
Code request not showing in logs
I have not getting verified status when i add bank account in stripe in test mode
When you say "verified status", what do you mean exactly?
Where do you expect it to show "verified"?
Stripe connectd account with external bank account
Are you specifically talking about the Bank Account object that represents the external account?
Yes
Can you guide me how to getting status in stripe bank account add
New pending verified
That isn't applicable for external accounts for Connected Accounts
That verified status only applies to Customer Bank Accounts used for ACH debit.
There is no verification process for adding an external account
I not sure to got it now
In stripe connectd account to add bank account like multiple correct?
Please reply
I'm sorry, I don't know what you mean by that.
I have added uk test bank account right? In test mode
But this verification status give me new
How to get verified
Yep I answered that above -- you don't verify these external accounts for Connected Accounts.
See: https://docs.stripe.com/api/external_account_bank_accounts/object#account_bank_account_object-status
If customer bank account verification has succeeded, the bank account status will be verified
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
So how to mange status for bank account correct or no?
That is for a bank account attached to a Customer object.
You should only care about if the bank account for an external account moves to errored
That would mean the Payout to that External Account failed
Bank account information Example data
Sort Code 12-34-56
Account number 01234567
But i trying to add this bank account stripe for testing purpose but status give new why
Uk bank account test modr
"status": "new"
Yes that is expected -- it is because you just added the external account and there has not been a payout made to it yet.
Note in the same docs as above:
For external accounts, possible values are new, errored and verification_failed. If a payout fails, the status is set to errored and scheduled payouts are stopped until account details are updated. In the US and India, if we can’t verify the owner of the bank account, we’ll set the status to verification_failed. Other validations aren’t run against external accounts because they’re only used for payouts. This means the other statuses don’t apply.
How to made payout for test mode for uk currency
You use https://docs.stripe.com/api/payouts/create and pass the Stripe Account header of the Connected Account, see: https://stripe.com/docs/connect/authentication
"status": "new"
This when to get me verified
Please read what I posted above from the docs, these external accounts will never become "verified".
Ok man got it
Are you know for add withdrawal method functionality in stripe?
How can you guide me please
Add Bank details in stripe for transfer amount
You are going to need to be more specific for me to be able to help you.