Branch Direct Web Portal
Overview
You can provide the ability for workers to sign up and use Branch in a browser, instead of the Branch mobile app, by using the Branch Direct Web Portal. This will step the Worker through the appropriate data collection and legal agreements to create their new Branch account.
The new Worker can choose whether disbursements are sent to their Branch Wallet for free, or directly to an existing debit card for a fee. If the Worker chooses to receive disbursements in a Branch Wallet, they will need to download the Branch App to access their funds and use the Branch card. If they choose to receive disbursements at an existing debit card, they can continue using Branch through the web portal at https://direct.branchapp.com/login
Implementation
- Construct the URL for the intended environment using the Organization's UUID
- UUID in the URL has format:
XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
- Production URL: https://direct.branchapp.com/?org_id={uuid}
- Staging URL: https://direct-stg.branchapp.com/?org_id={uuid}
- Sandbox URL: https://direct-sandbox.branchapp.com/?org_id={uuid}
- UUID in the URL has format:
- This URL can be directly provided to Workers
- Optionally, embed the Branch Direct Web Signup Widget on your Organization's website
- Add an iFrame to the HTML
<iframe id="signup-widget"></iframe>
- Set the
src
to the URL constructed in Step 1 in one of the following ways- set the
src
attribute directly to theiframe
in HTML for less scripting<iframe id="signup-widget" src="https://direct-sandbox.branchapp.com/?org_id=73dc7099-a9f3-4048-8d8a-5af7a7d04dfe"> </iframe>
- set the
src
attribute using JavaScript for dynamic configuration// The URL below is for the Branch Sandbox, choose the production, staging, or sandbox URL accordingly var iFrameURL = "https://direct-sandbox.branchapp.com/?org_id=73dc7099-a9f3-4048-8d8a-5af7a7d04dfe"; document.getElementById("signup-widget").src = iFrameURL;
- set the
- Add an iFrame to the HTML
Example Web Portal Widget iFrame - Sandbox
Updated 14 days ago