Blaze Essentials Redirect Setup

Overview

Blaze Essentials is a find care solution that is deployed within a customer’s existing website and can be integrated into the customer’s current website search, find a provider, find a location, and open scheduling experiences.   

The solution provides a natural language search and interactive experience to capture context and simplify the visitor experience by answering questions, informing them of the best care options, or providing provider and location search results.   

Available Parameters

Blaze Essentials provides contextual dynamic parameters that are passed to a customer listing/search page; this allows for populated search queries to be executed using the websites existing search technologies. The parameters can be used to construct the redirect URL using mustache tags

Here is the list of tokens/parameters that can be inserted.

{ "query": {{query.input}}, "acceptingNewPatient": "{{query.filter.acceptingNewPatient}}", "nearTermAvailability": "{{query.filter.nearTermAvailability}}", "virtualVisits": "{{query.filter.virtualVisits}}", "primaryCare": "{{query.filter.primaryCare}}", "locations": "{{query.filter.hospitalAffiliations.name}}", "insurance": "{{query.filter.insurance}}", "languages": "{{query.filter.languages}}", "ageGroup": "{{query.filter.ageGroup}}", "specialties": "{{query.filter.specialities}}", "conditonsTreated": "{{query.filter.conditionsTreated}}", "proceduresPerformed": "{{.proceduresPerformed}}", "isProvider": "{{query.isProvider}}", "isEmergency": "{{query.isEmergency}}", "isLocation": "{{query.isLocation}}", "isSuggestSpeciality": "{{query.isSuggestSpeciality}}", "isSymptomChecker": "{{query.isSymptomChecker}}", "isUrgentCare": "{{query.isUrgentCare}}" }

Using the parameters provided above, we can format a redirect string using mustache tags that will bring patients to your existing search experience by defining provider or location search URLs

https://www.mywebsite.com/doctors#doctorssearch_distance by miles=25000&doctorssearch_q={{query.input}}&doctorssearch_e=0&doctorssearch_insurance accepted={{query.filter.insurance}}&doctorssearch_specialties={{query.filter.specialities}}&doctorssearch_treatments and conditions={{query.filter.conditionsTreated}}&doctorssearch_provider type={{query.contextType}}&doctorssearch_hospital affiliations={{query.filter.hospitalAffiliations.name}}&doctorssearch_language={{query.filter.languages}}&doctorssearch_gender={{query.filter.doctorSex}}&doctorssearch_preferredprovider=true

Blaze Settings

Organization Blaze Redirect settings can be found under the Experience Manager organization settings:

"redirects": { "provider": "https://www.mywebsite.com/doctors#doctorssearch_distance by miles=25000&doctorssearch_q={{query.input}}&doctorssearch_e=0&doctorssearch_insurance accepted={{query.filter.insurance}}&doctorssearch_specialties={{query.filter.specialities}}&doctorssearch_treatments and conditions={{query.filter.conditionsTreated}}&doctorssearch_provider type={{query.contextType}}&doctorssearch_hospital affiliations={{query.filter.hospitalAffiliations.name}}&doctorssearch_language={{query.filter.languages}}&doctorssearch_gender={{query.filter.doctorSex}}&doctorssearch_preferredprovider=true", "location": "" },

Redirect CTA

After providing the Provider or Location URL redirects, the Blaze Essentials Redirect CTA will redirect users to the appropriate search landing page with the query string parameters dynamically populated with contextual data.

 

 

Related Articles