Hosted Registration

Every project has a hosted lead registration page by default. This page is hosted on the Edgewise Marketplace. It is mobile and tablet friendly.

Paired with our QR code feature, the hosted registration page is great for showroom walk-in registration.

A project's hosted registration page can be viewed at:

https://edgewiserealty.com/registration/{PROJECT_SLUG}

You can customize the form fields via Edgewise Registration Forms.

Supported Fields

The default fields are:

  • Name (name, required)
  • Email (email, required)
  • Phone number (phone, optional)
  • Are you an agent? (isAgent, optional)
  • Comments (text, optional)

Optional fields that can be enabled:

  • Communication Preference (preferredContactMethod)
  • How did you hear about us? (secondarySourceId)
  • Postal code (address[postalCode])

URL Parsing

Registration pages can parse query params from the page's URL. This can be used to extract UTM parameters, as well as prepopulate the form (both visible and hidden fields). The supported UTM parameters are:

  • utm_source
  • utm_medium
  • utm_campaign
  • utm_content
  • utm_term

For example, a form component that loads at https://edgewiserealty.com/registration/acme-condos?utm_campaign=Foo%20Bar would set the utm[campaign] form field to Foo Bar.

Prepopulated Values

Additionally, it is possible to pre-populate the following form fields using the following query params:

  • ewz[address][postalCode]
  • ewz[assigneeId]
  • ewz[email]
  • ewz[isAgent]
  • ewz[name]
  • ewz[phone]
  • ewz[secondarySourceId]
  • ewz[source]
  • ewz[tags]

For example, a form component that loads at https://edgewiserealty.com/registration/acme-condos?ewz[address][postalCode]=12345 would set the address[postalCode] form field to 12345.

This can also be used to have agent specific forms. If assigneeId is set, this will override any auto-assignment (eg, Round Robin).