Display Assessments
Assessments are hosted on the domain 'suggestic.assessments.com.' To access them, you must pass the assessment's ID in base64 format as a URL parameter and include a user's JWT bearer token in the header.
Optionally, you may send a primary color hex value in the color key like this: https://assessments.suggestic.com/?assessmentId={{assessment.id}}&color={{hexcolor}}
Swift Header Example
Anonymous User Scenario
For an anonymous user, you can include the 'onboarding' parameter in the URL as follows: https://assessments.suggestic.com/?assessmentId={{assessment.id}}&onboarding=true
In this scenario, the user's responses won't be stored on the website but will be returned to the container (browser, webview, etc) for management.
Styling and Customization
Primary Color
color={{hexcolor}}
Hex color
Back Button
back_button=true
Enables display of the back button
Supplement Recommendatios Redirect
results_path={{path}}
Enables a redirect to a specific path for supplement recommendations
For additional styling, please reach out to support@suggestic.com
IFrame Use Case and Window Messages
If you're loading an assessment as an iFrame, the page will message the container when the assessment status changes.
complete
The user completed the assessment.
close
The user clicked on the close button.
exit
The user selected an answer that finishes the assessment before completion.
Please see a code example below.
Last updated