-
Notifications
You must be signed in to change notification settings - Fork 3.8k
[No QA] Add bank account validation & wallet troubleshooting edge cases #91788
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
MelvinBot
wants to merge
2
commits into
main
Choose a base branch
from
claude-bankAccountValidationEdgeCases
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+208
−10
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -163,6 +163,7 @@ | |
| "IHDR", | ||
| "INTECOMS", | ||
| "IPHONEOS", | ||
| "ITIN", | ||
| "ITSM", | ||
| "Idology", | ||
| "Inactives", | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 74 additions & 6 deletions
80
...icles/new-expensify/wallet-and-payments/Resolve-Errors-Adding-a-Bank-Account.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,19 +1,87 @@ | ||
| --- | ||
| title: Resolve Errors Adding a Bank Account | ||
| description: Troubleshooting issues adding a business bank account in Expensify. | ||
| keywords: [New Expensify, bank account error, Onfido, identity verification, ID upload, beneficial owner, industry restriction, documentation review, verification failed, bank account pending] | ||
| --- | ||
|
|
||
| Expensify is required to verify the identity of the individual who is connecting a business bank account. | ||
| Expensify is required to verify the identity of the individual who is connecting a business bank account. Below are common errors and how to resolve them. | ||
|
|
||
| --- | ||
|
|
||
| # Identity Verification (Onfido) Errors | ||
|
|
||
| ## Generic error while uploading your ID | ||
|
|
||
| If you get a generic error message while uploading your ID, try the following steps: | ||
|
|
||
| **If you get a generic error message while uploading your ID, please go through the following steps:** | ||
| 1. Ensure you are using either Safari (on iPhone) or Chrome (on Android) as your web browser. | ||
| 2. Check your browser's permissions to make sure that the camera and microphone settings are set to "Allow" | ||
| 2. Check your browser's permissions to make sure that the camera and microphone settings are set to "Allow". | ||
| 3. Clear your web cache for Safari (on iPhone) or Chrome (on Android). | ||
| 4. If using a corporate Wi-Fi network, confirm that your corporate firewall isn't blocking the website. | ||
| 5. Make sure no other apps are overlapping your screen, such as the Facebook Messenger bubble, while recording the video. | ||
| 5. Make sure no other apps are overlapping your screen, such as the Facebook Messenger bubble, while recording the video. | ||
| 6. On iPhone, if using iOS version 15 or later, disable the Hide IP address feature in Safari. | ||
| 7. If possible, try these steps on another device | ||
| 8. If you have another phone available, try to follow these steps on that device | ||
| 7. If possible, try these steps on another device. | ||
| 8. If you have another phone available, try to follow these steps on that device. | ||
|
|
||
| If the issue persists, please contact your Account Manager or Concierge for further troubleshooting assistance. | ||
|
|
||
| ## Identity verification failed or was not accepted | ||
|
|
||
| If Onfido could not verify your identity: | ||
|
|
||
| 1. Make sure the photo of your ID is clear, well-lit, and shows all four corners of the document. | ||
| 2. Use a valid, non-expired government-issued photo ID (passport, driver's license, or national ID card). | ||
| 3. Ensure your selfie or video matches the photo on the ID. | ||
| 4. Try again in a well-lit area and hold the camera steady. | ||
| 5. If you continue to receive errors, try a different device or browser. | ||
|
|
||
| If verification fails after multiple attempts, contact Concierge. An agent can review your case and advise on next steps, which may include submitting documentation manually. | ||
|
|
||
| --- | ||
|
|
||
| # Beneficial Owner Documentation | ||
|
|
||
| ## Who qualifies as a beneficial owner? | ||
|
|
||
| A beneficial owner is any **individual** who owns 25% or more of the business. Only individuals should be listed -- do not enter other companies or entities, even if they are partial owners. | ||
|
|
||
| ## What documentation is required? | ||
|
|
||
| When adding beneficial owners, you may be asked to provide: | ||
|
|
||
| - Full legal name, date of birth, and Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) for each beneficial owner | ||
| - Residential address (not a P.O. Box) for each beneficial owner | ||
|
|
||
| If Expensify cannot verify a beneficial owner automatically, Concierge may request additional documentation, such as a copy of a government-issued ID. | ||
|
|
||
| --- | ||
|
|
||
| # Industry Restriction Errors | ||
|
|
||
| Expensify cannot process payments for certain industries due to regulatory requirements. If you receive an error indicating that your business type is not supported, it means your industry falls outside of what Expensify can service for payments. | ||
|
|
||
| For a full list of restricted industries, see the [Expensify Classic troubleshooting guide](https://help.expensify.com/articles/expensify-classic/bank-accounts-and-payments/bank-accounts/Troubleshooting-business-bank-account-setups). | ||
|
|
||
| If you believe the restriction was applied in error, contact Concierge with details about your business. | ||
|
|
||
| --- | ||
|
|
||
| # Additional Documentation Review | ||
|
|
||
| ## What does "additional documentation review" mean? | ||
|
|
||
| If automatic verification cannot be completed, Expensify may require a manual review of supporting documents. This typically happens when: | ||
|
|
||
| - The information provided does not match public records | ||
| - The business is newly formed and has limited public data | ||
| - Additional verification is needed for compliance reasons | ||
|
|
||
| ## What to expect | ||
|
|
||
| - Concierge will message you with specific instructions on which documents to provide. | ||
| - Common documents include: a bank statement, a business license, articles of incorporation, or an EIN confirmation letter. | ||
| - Reviews are typically completed within **1-3 business days** after all requested documents are submitted. | ||
| - You will receive a message from Concierge when the review is complete. | ||
|
|
||
| If your review is taking longer than expected, contact Concierge for a status update. | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For users troubleshooting the New Expensify Onfido flow on web, this suggests retrying with a national ID card even though the app config only exposes
driving_licencefor the USA andpassportinsrc/components/Onfido/BaseOnfidoWeb.tsxlines 87-93. Those users won't be able to select the document type the article recommends, so the guidance can send already-failing verification attempts down a dead end; keep this list limited to the document types the flow actually offers.Useful? React with 👍 / 👎.