Developer Programs

Learn

Docs

Pre-fill digital enrollment fields

Consumer API > Guides > Pre-fill digital enrollment fields

This guide walks you through how to direct a Banno consumer user to the digital enrollment page with some of the required fields pre-filled with data the user has previously provided.

This is commonly used for account-opening products, so new users can easily complete digital enrollment immediately after opening an account at a financial institution.

HTML

send the form data
<form action="https://{CONSUMER_API_ENVIRONMENT}/enroll" method="POST">
  <input type="hidden" name="account-number" value="123456789">
  <input type="hidden" name="phone-number" value="555-121-2121">
  <input type="hidden" name="email" value="user@test.com">
  <button type="submit">Enroll in Online Banking</button>
</form>

Where:

  • CONSUMER_API_ENVIRONMENT is specific to your financial institution and matches with Banno Online for your institution.
    • Example: for the Garden demo institution the CONSUMER_API_ENVIRONMENT would be digital.garden-fi.com.
  • The value for the account-number is the bank account (e.g. checking, savings, loan) number for bank users. It is the member account number for credit union users.
  • The value for the phone-number is a phone number matching the person’s Customer Information File (CIF) in a bank core, or an allowed name record associated with the member account for CU’s.
  • The value for the email is an email address matching the person’s CIF in a bank core, or an allowed name record associated with the member account for CU’s.

Pre-filling tax identifier numbers is not supported.

The user will be taken to the Banno Online enrollment screen, with the information supplied in the form action pre-filled into the appropriate fields.

Profile
Have a Question?
Have a how-to question? Seeing a weird error? Get help on StackOverflow.
Register for the Developer Office Hours where we answer technical Q&A from the audience.

Did this page help you?

Last updated Mon Jan 5 2026