healthdirect Symptom Checker Facebook chat-bot overview

Size: px
Start display at page:

Download "healthdirect Symptom Checker Facebook chat-bot overview"

Transcription

1 healthdirect Symptom Checker Facebook chat-bot overview V. 2.0 Atik Zahan 12 th May 2017

2 Contents: Overview Proposed Architecture Example flow Facebook messaging limitations Conclusions

3 Overview: The healthdirect symptom checker provides an interface that tries to recreate the triage process a user would go through with a nurse. To this end it asks for a symptom, some basic information about the user and then a series of questions which lead to a recommended course of action. This back and forth lends itself perfectly to a messenger bot or a conversational interface. By transforming the existing application into a conversation, it should be more engaging to the user and bring the experience closer to a true discussion with a medical professional.

4 Current Architecture: For an app that works with Facebook messenger we require the following: A Facebook account A Facebook page to link the messenger to (Dev and Prd versions) A Facebook app (Dev and Prd versions) An AWS Lambda instance with API Gateway (Dev and Prd stages) Dynamo DB instance to store temporary variables between questions The existing healthdirect Symptom Checker DMS façade API, as used for the App Potentially we may also need to use a third party natural language processing system. Currently handled with regular expressions.

5 Lambda Functions: symptom-checker-chatbot: Handles all messenger logic, this is the main processing part of the chat-bot and includes node dependencies, the main tasks it performs are: Basic NLP, regular expressions to match an entered symptom to a symptom flow Process information like the user s age and gender information to start a session Process answers and respond with the next question in the flow Show buttons for terminology, why are we asking and further information Show the correct disposition with relevant actions, information buttons and reference number Maps to /processmessages in the API Gateway. symptom-checker-chat-htmlparse: A simple HTML parsing function, when a user taps one of the information buttons (terminology, why asking, disposition information, etc.) in the messenger it calls this endpoint and passes information from the DMS payload in query strings that are returned as a web view in the messenger. Maps to /htmlrender in the API Gateway. symptomcheckermessenger-sessionstore: Handles storage of the variables required to start the symptom checker flow while the user enters their age, needed because the symptom is the first thing chosen. POST writes senderid, questionno, scriptid and usersymptom to the database with senderid as the partition key. GET retrieves the information for a supplied senderid. Maps to /sessionstore in the API Gateway and uses the table facebookmessenger-sessionstore in DynamoDB.

6 Example Flow: Welcome screen: Contains the following: header image and logo for the app Name of the app/bot Type of service Personalised welcome message (name is available from Facebook) Clinical warning Get Started button which starts the chatbot Start screen: Contains the following: Personalised welcome message Emoji can be used in messages (if appropriate) Open question to enter symptoms Fixed menu at the bottom User messaging field at the top of the menu

7 Menu screen: For the most part, the menu is now constant while using the messenger: Help: Displays some help text Restart: Shows first message again and prompts user to enter symptoms again Privacy policy: Opens policy in healthdirect site (in app browser or a new tab) Terms of use: Opens terms in healthdirect site (in app browser or a new tab) Help message: Gives user some suggested inputs for various sections of the messenger and the option to call healthdirect if they are struggling.

8 Enter symptom: User enters a symptom, based on keywords the closest symptom flow will be offered to the user. For Fever you could type the following: I am burning up I feel very warm My skin is clammy Similar keywords are set up for: Bites and sting Colds and flus Rashes and skin problems Urinary infections and problems Emergency symptom: For symptoms mentioned in the welcome page warning or serious phrases the user will be immediately directed to call 000, examples are: I think I m having a heart attack I m having difficulty breathing I m bleeding profusely

9 Unrecognised symptom: For symptoms or text entries that do not match any of the regular expression, a default message will be displayed. Selected symptom: When the user taps Start symptom check, they are then asked their age to ask the right questions, their gender has already been provided by Facebook. They could enter their age in several formats: I am years old 18 months Once an age has been entered the symptom flow starts and the user is asked the first question.

10 Why are we asking? If the question has additional information related to why it is being asked then a button with Why are we asking? as the title will be appended to the end of the question bubble. When tapped the information will open in a compact web view.

11 Question terminology: If the question has additional information related to terminology used within the question then a button with Question terms as the title will be appended to the end of the question bubble. When tapped the information will open in a tall web view.

12 Further information: If the question has general further information related to the question then a button with Further info. as the title will be appended to the end of the question bubble. When tapped the information will open in a compact web view.

13 Answer questions: Questions will be asked in a single message bubble up to 640 characters long and then the options will be presented as a row of buttons. When the user taps a button, it will be submitted and the next question will be sent to the user. Questions continued: The answers may just be a simple Yes or No or there may be a more varied range of options. We can also send bullet points for the Prompt lists which are generally a list of symptoms.

14 Disposition: The main section of the disposition is returned in one message bubble truncated at 640 characters. All dispositions will then have a button which is titled Full care info.. This contains the full disposition text, first aid information and self care information (if available). If the user is told to go to a health service, we display a button to open the service finder. They can also call healthdirect, unless the disposition is to call 000 where a button to call 000 would be displayed instead. We also return the reference number in a message. Full care info: All additional disposition information sections are displayed in a tall web view. Full care info contains: Full disposition text First aid information Self care information (if available)

15 General info: If available a General info. Button will be shown which displays more general information on the disposition in a tall web view. Keep watch for: If available a Keep watch for Button will be shown which displays symptoms to watch out for in a tall web view.

16 Service finder: Service finder opens in the in-app browser within messenger, allowing the user to quickly find a service near them. Restart symptom check: Selecting Restart symptom check from the menu will display the clinical warning and then prompt the user to enter a symptom again.

17 Limitations of Messenger UI elements: Symptom Selection: Responses with buttons are limited to 3 options and the text for these options is limited to 30 characters Basic Details: Gender returned automatically, user must provide age. Whether the check is for yourself or someone else and your location are options that may be added later. Questions: Can t go back, no previous question but you can scroll through your previous conversations to see question and answer flows. Markdown and HTML tags cannot be rendered in messages so this needs to be stripped from the Capita responses. To allow more than 3 options for a question we can use quick replies but they are limited to 20 characters, currently many are longer. Dispositions: Messages are limited to 640 characters; many dispositions are longer than this limitation. Tab content returned as web views launched with buttons, however, there is a limitation that you can only have 3 buttons. We have decided on the following 3: o Full care info.: Full disposition text, first aid text and self care information o General information: same as desktop app o Keep watch for: same as desktop app For service finder, there may be an option to share location and see services near you in the future, currently it links to the mobile service finder on the healthdirect website.

18 Conclusion and next steps: The healthdirect symptom checker is certainly a good candidate for a Facebook messenger bot however it is a lot more complex than many messengers currently on the market which deal with a single interaction (eg what is the weather like today, show me some headlines, find events near me, etc). The following considerations should define the experience moving forward: Can we simplify and shorten both questions and answers without risking clinical integrity and without having to completely re-write the symptom flows? (Ada app does a good job of this) Selecting an appropriate tone of voice for the messenger. Potentially expanding the natural language processing capabilities through a 3 rd party service. Handling invalid user input currently there is one default message for all instances. What analytics are available to see drop offs or return visits? What information (if any) does Facebook as a company have access to? Are there any other messenger platforms that would be a good fit?

WEBSITE INSTRUCTIONS. Table of Contents

WEBSITE INSTRUCTIONS. Table of Contents WEBSITE INSTRUCTIONS Table of Contents 1. How to edit your website 2. Kigo Plugin 2.1. Initial Setup 2.2. Data sync 2.3. General 2.4. Property & Search Settings 2.5. Slideshow 2.6. Take me live 2.7. Advanced

More information

WEBSITE INSTRUCTIONS

WEBSITE INSTRUCTIONS Table of Contents WEBSITE INSTRUCTIONS 1. How to edit your website 2. Kigo Plugin 2.1. Initial Setup 2.2. Data sync 2.3. General 2.4. Property & Search Settings 2.5. Slideshow 2.6. Take me live 2.7. Advanced

More information

Admin Center. Getting Started Guide

Admin Center. Getting Started Guide Admin Center Getting Started Guide Useful Links Create an Account Help Center Admin Center Agent Workspace Supervisor Dashboard Reporting Customer Support Chat with us Tweet us: @Bold360 Submit a ticket

More information

Software Instructions

Software Instructions Software Instructions A brief guide to using the software features of ClearTriage Table of Contents Sign In... 2 Navigation, General Notes and Menu... 2 Protocols... 3 Questions... 3 Care Advice... 4 Copy

More information

Zendesk Instructions for End-Users

Zendesk Instructions for End-Users Zendesk Instructions for End-Users Ver. 1.00 July, 2013 Ver. 1.00 July, 2013 Zendesk Instructions for End-Users Getting Started Registering & Logging in to Zendesk To submit and then track your support

More information

Skyline Healthcare Getting Started Guide for New Users

Skyline Healthcare Getting Started Guide for New Users Skyline Healthcare Getting Started Guide for New Users Welcome to the Skyline Healthcare network. Below are some helpful directions for accessing our network services as well as contact info for your IT

More information

This study is brought to you courtesy of.

This study is brought to you courtesy of. This study is brought to you courtesy of www.google.com/think/insights Health Consumer Study The Role of Digital in Patients Healthcare Actions & Decisions Google/OTX U.S., December 2009 Background Demonstrate

More information

Michigan State University Team Amazon Asa: Amazon Shopping Assistant Project Plan Fall 2016

Michigan State University Team Amazon Asa: Amazon Shopping Assistant Project Plan Fall 2016 Michigan State University Team Amazon Asa: Amazon Shopping Assistant Project Plan Fall 2016 Amazon Staff: Derek Gebhard Michigan State University Capstone Members: Evan Moran Samuel Chung Yiming Li Renee

More information

FaceBook Messenger Chatbot Extension for Magento 2 by MageCube

FaceBook Messenger Chatbot Extension for Magento 2 by MageCube FaceBook Messenger Chatbot Extension for Magento 2 by MageCube Facebook has developed a Chatbot program for its messenger platform, which would allow businesses to communicate with millions of users already

More information

Social Networking Applied

Social Networking Applied Social Networking Applied 1 I. Facebook Social Networking Applied Uses: An address book: Facebook users can share their current city, e-mail address, phone number, screen name, street address, and birthday

More information

HOW TO TEXT OUT THE VOTE (TOTV)

HOW TO TEXT OUT THE VOTE (TOTV) HOW TO TEXT OUT THE VOTE (TOTV) Introductions AGENDA HUSTLE Overview of Hustle HOW TO How to start texting voters! We ll be learning about best practices and replying to messages PRACTICE Try it yourself

More information

The Future of SAS Enterprise Guide (EG) - An Informal Session

The Future of SAS Enterprise Guide (EG) - An Informal Session The Future of SAS Enterprise Guide (EG) - An Informal Session New modern look Tabbed views with many layout options Program without projects or process flows Integration points with SAS Studio Who Are

More information

MASS PERSONALIZATION HOW TO KEEP A HUMAN TOUCH WITH CHATBOTS? C H A T B O T A G E N C Y TALK-A-BOT

MASS PERSONALIZATION HOW TO KEEP A HUMAN TOUCH WITH CHATBOTS? C H A T B O T A G E N C Y TALK-A-BOT MASS PERSONALIZATION HOW TO KEEP A HUMAN TOUCH WITH CHATBOTS? C H A T B O T A G E N C Y TALK-A-BOT TALK-A-BOT was founded in August 2016 the first Chatbot Agency of the CEE region We are online Top 4 downloaded

More information

Microsoft Yammer Users Guide

Microsoft Yammer Users Guide 2017 Microsoft Yammer Users Guide This guide will assist you with using Microsoft Yammer. INFORMATION TECHNOLOGY SERVICES ITS TRAINING Table of Contents What is Yammer?... 2 Access... 2 Navigating Yammer...

More information

Business Chat Onboarding Your Business Chat Accounts. September

Business Chat Onboarding Your Business Chat Accounts. September Onboarding Your Accounts September 2018.1 Contents Overview 3 Create a Brand Profile... 4 Configure the Messages Header... 4 Create a Account... 4 Connecting to Your Customer Service Platform... 5 Connect

More information

Integration Service. Admin Console User Guide. On-Premises

Integration Service. Admin Console User Guide. On-Premises Kony MobileFabric TM Integration Service Admin Console User Guide On-Premises Release 7.3 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and

More information

YOUR SERVICE COMPANION APP. First Choice App V2.1 Guide (ios)

YOUR SERVICE COMPANION APP. First Choice App V2.1 Guide (ios) YOUR SERVICE COMPANION APP First Choice App V2.1 Guide (ios) START Welcome to your guide on how to use the new First Choice app for ios devices. If you use an Android device we have an app for you too!

More information

Getting started with social media and comping

Getting started with social media and comping Getting started with social media and comping Promotors are taking a leap further into the digital age, and we are finding that more and more competitions are migrating to Facebook and Twitter. If you

More information

ONLINE TRAINING REFERENCE GUIDE

ONLINE TRAINING REFERENCE GUIDE ONLINE TRAINING REFERENCE GUIDE Updated February 2018 Maine Roads to Quality Professional Development Network PO Box 9300, 34 Bedford Street, Portland, ME 04104 1-888-900-055 www.muskie.usm.maine.edu/maineroads

More information

Guide to your Northumbria Student

Guide to your Northumbria Student Guide to your Northumbria Student Email The Student Email System at Northumbria provides 25GB of space for all students. How to access On Campus: Access email from the Start menu on the Student Desktop

More information

TRAINER MOODLE QUICK GUIDE

TRAINER MOODLE QUICK GUIDE TRAINER MOODLE QUICK GUIDE Update 2-2018 Maine Roads to Quality Professional Development Network PO Box 9300, 34 Bedford Street, Portland, ME 04104 1-888-900-0055 www.muskie.usm.maine.edu/maineroads Table

More information

Tidio Chat. Login and the Help Desk Dashboard. ce Furniture - Source.ca Documentation

Tidio Chat. Login and the Help Desk Dashboard. ce Furniture - Source.ca Documentation Source O ce Furniture - Source.ca Documentation Tidio Chat The chat support facility is comprised of two parts: a public-facing chat widget with which customers communicate with a Source customer support

More information

Build, Deploy & Operate Intelligent Chatbots with Amazon Lex

Build, Deploy & Operate Intelligent Chatbots with Amazon Lex Build, Deploy & Operate Intelligent Chatbots with Amazon Lex Ian Massingham AWS Technical Evangelist @IanMmmm aws.amazon.com/lex 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.

More information

FREQUENTLY ASKED QUESTIONS ABOUT CLASS LOGISTICS AND TELECONFERENCE TECHNOLOGY

FREQUENTLY ASKED QUESTIONS ABOUT CLASS LOGISTICS AND TELECONFERENCE TECHNOLOGY FREQUENTLY ASKED QUESTIONS ABOUT CLASS LOGISTICS AND TELECONFERENCE TECHNOLOGY 1. CAN I GET CEUS FOR TAKING LLA? A: LLA has been approved for Continuing Education Credits (CEUs) by a variety of professional

More information

Your profile contains your contact information. This is what other members will use when they want to get in touch.

Your profile contains your contact information. This is what other members will use when they want to get in touch. Update contact information Your profile contains your contact information. This is what other members will use when they want to get in touch. 1. Log into your site. 2. Click your name in the upper-right

More information

WCB Online User Guide for Workers

WCB Online User Guide for Workers WCB Online User Guide for Workers WCB Online User Guide for WORKERS A Nova Scotians safe and secure from workplace injury Table of Contents WCB Online 1 Create an Account Profile 1 WCB Online Navigation

More information

CU Careers: Step-by-Step Guide

CU Careers: Step-by-Step Guide CU Careers: Step-by-Step Guide Performing a Direct Hire with Posting This guide describes how to hire a previously identified student or temporary employee using the Direct Hire with Posting candidate

More information

Insurer User Manual Chapter 5: Common Functionality

Insurer User Manual Chapter 5: Common Functionality Insurer User Manual Chapter 5: Common Functionality 2018 HCAI Communications Table of Contents Search... 2 Advanced Search... 3 Search Results... 4 Navigating in an OCF plan or invoice... 5 Description

More information

Getting Started: Workday Basics Page 1 of 16. Getting Started: Workday Basics

Getting Started: Workday Basics Page 1 of 16. Getting Started: Workday Basics Getting Started: Workday Basics Page 1 of 16 Getting Started: Workday Basics Getting Started: Workday Basics Page 2 of 16 TABLE OF CONTENTS COMMON WORKDAY TERMINOLOGY... 3 ICON GLOSSARY... 4 NAVIGATE THE

More information

Integration Service. Admin Console User Guide. On-Premises

Integration Service. Admin Console User Guide. On-Premises Kony Fabric Integration Service Admin Console User Guide On-Premises Release V8 SP1 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the

More information

Patient Quick Start Guide

Patient Quick Start Guide Patient Quick Start Guide Welcome to MyChart. 2 Sign Up for MyChart. 3 Proxy Access to MyChart.3 Log in to MyChart.4 Messaging..5 View messages from your care provider..5 Ask a question.... 6 Visits..

More information

Magellan HUB: Making the Most of Our Collaboration Tools CAYLAN HORD DIRECTOR, END USER COMPUTE DAWN ROMBERG VP, CORPORATE COMMUNICATIONS

Magellan HUB: Making the Most of Our Collaboration Tools CAYLAN HORD DIRECTOR, END USER COMPUTE DAWN ROMBERG VP, CORPORATE COMMUNICATIONS Magellan HUB: Making the Most of Our Collaboration Tools CAYLAN HORD DIRECTOR, END USER COMPUTE DAWN ROMBERG VP, CORPORATE COMMUNICATIONS Agenda Magellan HUB: What does is it and what does it do? Live

More information

CU Careers: Step-by-Step Guide

CU Careers: Step-by-Step Guide CU Careers: Step-by-Step Guide Performing a Direct Hire with Posting This guide describes how to hire a previously identified student or temporary employee using the Direct Hire with Posting candidate

More information

ElasticIntel. Scalable Threat Intel Aggregation in AWS

ElasticIntel. Scalable Threat Intel Aggregation in AWS ElasticIntel Scalable Threat Intel Aggregation in AWS Presenter: Matt Jane Obligatory Who I Am slide.. Builder/Automator I put things in clouds Open Source Advocate

More information

How To Use My Alternative High

How To Use My Alternative High How To Use My Alternative High Preface Preface I put this together to address the issues and questions that come up all the time in class, especially for newer students. Preface I did this so that I could

More information

Aesop QuickStart Guide for Substitutes

Aesop QuickStart Guide for Substitutes Aesop QuickStart Guide for Substitutes This guide will show you how to: Log on to the Aesop system Navigate the Aesop Web site Find and accept jobs online* Manage your schedule Cancel an assignment* Manage

More information

ENABLING ASKTHEEXPERT USER GUIDE

ENABLING ASKTHEEXPERT USER GUIDE ENABLING ASKTHEEXPERT USER GUIDE CONTENTS What Is Enabling AskTheExpert?... 2 Client Settings... 2 Enabling AskTheExpert Settings Interface... 3 Buttons... 4 Home Page... 5 Background... 5 Home Page Views...

More information

Contents Welcome to Halo... 3 Secure Sign-In... 4 Forgot Password... 4 Messages... 5 Create and Send a Message... 5 Message Enhancements...

Contents Welcome to Halo... 3 Secure Sign-In... 4 Forgot Password... 4 Messages... 5 Create and Send a Message... 5 Message Enhancements... Halo Web App GUIDE Contents Welcome to Halo... 3 Secure Sign-In... 4 Forgot Password... 4 Messages... 5 Create and Send a Message... 5 Message Enhancements... 6 Quick Note... 6 Mark as Urgent... 6 Add

More information

SG Project OnePage User Guide

SG Project OnePage User Guide SG Project OnePage User Guide Simple Genius Software November 2012 Document Version 4.0.1 Table of Contents Overview...3 Introduction...3 Data Management...3 Key Concepts...3 12-by-12 Project Management...

More information

What is New in MyChart? My Medical Record Health Preferences Settings Appointments and Visits Visits Schedule an Appointment Update Information

What is New in MyChart? My Medical Record Health Preferences Settings Appointments and Visits Visits Schedule an Appointment Update Information What is New in MyChart? On August 26th, we will be upgrading and changing the look and feel to our MyChart patient portal site. We would like to make you aware of a few differences that you will see, when

More information

PowerLink CRM User Guide

PowerLink CRM User Guide PowerLink CRM User Guide Last Updated: February 2009 Version: 2.06000 Contents Contents... 2 Introduction... 4 Quick Start... 5 Using CRM... 6 Searching for Customers... 6 Maintaining Customer Records...

More information

Software Instructions

Software Instructions Software Instructions A brief guide to using the software features of ClearTriage Table of Contents Sign In... 2 Navigation, General Notes and Menu... 2 Protocols... 3 Questions... 3 Care Advice... 4 Copy

More information

Learning and Development. UWE Staff Profiles (USP) User Guide

Learning and Development. UWE Staff Profiles (USP) User Guide Learning and Development UWE Staff Profiles (USP) User Guide About this training manual This manual is yours to keep and is intended as a guide to be used during the training course and as a reference

More information

Why Chiropractors Need To Know About Messenger Bots

Why Chiropractors Need To Know About Messenger Bots Why Chiropractors Need To Know About Messenger Bots Presented By What Is a Messenger Bot / Chat Bot Anyway? A Chat Bot is simply software that allows you to communicate with your prospects / patients inside

More information

Using Devices with Microsoft HealthVault

Using Devices with Microsoft HealthVault Using Devices with Microsoft HealthVault A Microsoft HealthVault Step-by-Step Guide This guide will help you get started using Microsoft HealthVault Connection Center to send information from your health

More information

EDGE, MICROSOFT S BROWSER

EDGE, MICROSOFT S BROWSER EDGE, MICROSOFT S BROWSER To launch Microsoft Edge, click the Microsoft Edge button (it s the solid blue E) on the Windows Taskbar. Edge Replaces Internet Explorer Internet Explorer is no longer the default

More information

Online Banking Initial Log In Instructions. Go to and enter your username: Ex JaneDoe

Online Banking Initial Log In Instructions. Go to   and enter your username: Ex JaneDoe Online Banking Initial Log In Instructions Go to www.riverbankandtrust.com and enter your username: Ex JaneDoe 1 Step 1: Enter your existing login ID: Step 2: Enter security code: username + last 4 of

More information

Lesson 2. Introducing Apps. In this lesson, you ll unlock the true power of your computer by learning to use apps!

Lesson 2. Introducing Apps. In this lesson, you ll unlock the true power of your computer by learning to use apps! Lesson 2 Introducing Apps In this lesson, you ll unlock the true power of your computer by learning to use apps! So What Is an App?...258 Did Someone Say Free?... 259 The Microsoft Solitaire Collection

More information

AWS Mobile Hub. Build, Test, and Monitor Your Mobile Apps. Daniel Geske, Solutions Architect 31 May 2017

AWS Mobile Hub. Build, Test, and Monitor Your Mobile Apps. Daniel Geske, Solutions Architect 31 May 2017 AWS Mobile Hub Build, Test, and Monitor Your Mobile Apps Daniel Geske, Solutions Architect 31 May 2017 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. What to Expect from the Session

More information

facebook a guide to social networking for massage therapists

facebook a guide to social networking for massage therapists facebook a guide to social networking for massage therapists table of contents 2 3 5 6 7 9 10 13 15 get the facts first the importance of social media, facebook and the difference between different facebook

More information

Windows 10 Configuration Tips & Resources

Windows 10 Configuration Tips & Resources Windows 10 Configuration Tips & Resources I n f o r m a t i o n T e c h n o l o g y S e r v i c e s Revised April 16, 2018 The First-Time Login Must Be On-Campus 1. Make sure your new Windows 10 laptop

More information

Symptom Checker API v1.2 Documentation

Symptom Checker API v1.2 Documentation Symptom Checker API v1.2 Documentation 07/06/16 Self Care Decisions Symptom Checker API 2 Symptom Checker API v1.2 Overview... 3 Supplemental Resources... 4 Sample Web Application and User Story... 4 Interaction

More information

CHATBOTS - HOW TO ADD AI TO YOUR CHAT SERVICES

CHATBOTS - HOW TO ADD AI TO YOUR CHAT SERVICES CHATBOTS - HOW TO ADD AI TO YOUR CHAT SERVICES Prepared By: Exceeders AppsWave Document ID: ChatBot -1.0 Author: AppsWave Version No: 1.0 Contact Details Mohammed Loay Mohammed, AppsWave Head Telephone

More information

table of contents troubleshooting 16 connection problems 16 add a second CORE 18 incomplete profile 19 settings 20 compatible devices 21

table of contents troubleshooting 16 connection problems 16 add a second CORE 18 incomplete profile 19 settings 20 compatible devices 21 app manual table of contents downloading the app 01 registration 02 connecting with ios 04 connecting with Android 06 personalizing 08 when to personalize 09 personalization process 10 high volume kit

More information

OpenScape Contact Center Multimedia. First Contact Resolution in a Multi-Channel World <insert date here>

OpenScape Contact Center Multimedia. First Contact Resolution in a Multi-Channel World <insert date here> OpenScape Contact Center Multimedia First Contact Resolution in a Multi-Channel World Agenda OpenScape Contact Center Agile vs. Enterprise What is OpenScape Contact Center Multimedia

More information

MYCHART FREQUENTLY ASKED QUESTIONS

MYCHART FREQUENTLY ASKED QUESTIONS What is mychart?... 2 Is there a fee to use mychart?... 2 What do I need to use mychart?... 2 Who else can see my mychart information?... 2 Is my information in mychart secure?... 2 Is mychart offered

More information

Integrating SAS Analytics into Your Web Page

Integrating SAS Analytics into Your Web Page Paper SAS2145-2018 Integrating SAS Analytics into Your Web Page James Kochuba and David Hare, SAS Institute Inc. ABSTRACT SAS Viya adds enhancements to the SAS Platform that include the ability to access

More information

OCS for the Blackboard Learn Platform

OCS for the Blackboard Learn Platform OCS for the Blackboard Learn Platform General Description OCS For the Blackboard Learn Platform (OCS for BB) is a communications suite that brings together the strengths of two products. Microsoft Office

More information

EMAR Direct Connect Resident Entry Demographic Information

EMAR Direct Connect Resident Entry Demographic Information EMAR Direct Connect Resident Entry Demographic Information The bulk of data for a resident is entered in Resident Care Management. Resident Care Management has the following tabs: Main, Contacts, Medical

More information

Health Messenger User Guide

Health Messenger User Guide Health Messenger User Guide V 2.6 3/09/2018 USER GUIDE TABLE OF CONTENTS 1.0 GENERAL INFORMATION 1.1 System Overview 1.2 Support 1.3 Uploading Export Files 1.4 Minimum System Requirements 2.0 GETTING STARTED

More information

Session Booklet Facebook part 2

Session Booklet Facebook part 2 Session Booklet Facebook part 2 Facebook, like any online or offline meeting place, carries with it some risks. Remember that you should apply the same common sense and safety rules as you do when you

More information

The QMF Family Newsletter 1 st Quarter 2012 Edition

The QMF Family Newsletter 1 st Quarter 2012 Edition The QMF Family Newsletter 1 st Quarter 2012 Edition In this Issue QMF Classic perspective Latest Tip using the ISPF editor with QMF queries and procedures A message from the developers of QMF Want to see

More information

Remote Desktop Services Guide. Windows XP DG ITEC ESIO - STANDARDS

Remote Desktop Services Guide. Windows XP DG ITEC ESIO - STANDARDS Remote Desktop Services Guide Windows XP DG ITEC ESIO - STANDARDS Table of Contents Table of Contents... 2 Introduction... 3 1 Download and Install Citrix Receiver... 3 2 Installing Citrix Receiver...

More information

Case Studies of CaaP and Cognitive Services Implementation for Vietnam. [ Nguyen Francis Tuan Anh] [

Case Studies of CaaP and Cognitive Services Implementation for Vietnam. [ Nguyen Francis Tuan Anh] [ Case Studies of CaaP and Cognitive Services Implementation for Vietnam [ Nguyen Francis Tuan Anh] [ frang@microsoft] Messaging is King Bot or not? Bots: Don t just search with query results Act as agent

More information

Get started. Agenda. Profile settings. Using the console. Chatting. Tips for chatting

Get started. Agenda. Profile settings. Using the console. Chatting. Tips for chatting User training 1 Get started Agenda 2 Profile settings 3 Using the console 4 Chatting 5 Tips for chatting Get started 1. Open your browser (Chrome, Firefox or Internet Explorer 9+) 2. Go to www.giosg.com

More information

Frequently Asked Questions

Frequently Asked Questions Frequently Asked Questions Frequently Asked Questions for Cisco Unified Personal Communicator 8.6 and Voice and Video Firmware 8.6 for Cisco Virtualization Experience Client 6215 FAQs 2 Basics 3 Setup

More information

Interactive Hi-Fi Prototype

Interactive Hi-Fi Prototype Interactive Hi-Fi Prototype Chioma Agu Joshua Browder Jasper Kajiru Rena White... Kampus Karma Do Yourself a Favour Students on college campuses are constantly seeking favors and offering help to others.

More information

Cmpt 101 Lab 1 - Outline

Cmpt 101 Lab 1 - Outline Cmpt 101 Lab 1 - Outline Instructions: Work through this outline completely once directed to by your Lab Instructor and fill in the Lab 1 Worksheet as indicated. Contents PART 1: GETTING STARTED... 2 PART

More information

ETC WEBCHAT USER GUIDE

ETC WEBCHAT USER GUIDE ETC WEBCHAT USER GUIDE CONTENTS Overview... 2 Agent and User Experience... 2 Agent Extention Window... 3 Etc WebChat Admin Portal... 4 Agent Groups... 5 Create, Edit, Delete A Group... 5 Create, Edit,

More information

New Program Update Sept 12, 2012 Build 187

New Program Update Sept 12, 2012 Build 187 New Program Update Sept 12, 2012 Build 187 What s Inside Main Module Improved Handling of Calc Races Database Locked Condition Background Info - Why does the database locked condition occur? From what

More information

NuPoint Messenger User Guide

NuPoint Messenger User Guide NuPoint Messenger User Guide Table of Contents What is NuPoint Messenger?... 1 Phone Access... 1 First Time Setup... 1 Accessing NuPoint Messenger... 1 Menu Overview... 3 Playing Messages... 4 Skip a Greeting...

More information

TABLE OF CONTENTS 1. SYSTEM REQUIREMENTS INSTALLATION ACCOUNT MANAGEMENT RAZER CORTEX GENERAL SETTINGS...

TABLE OF CONTENTS 1. SYSTEM REQUIREMENTS INSTALLATION ACCOUNT MANAGEMENT RAZER CORTEX GENERAL SETTINGS... Welcome to Razer Cortex, the nerve center of your entire gaming experience. From effortlessly finding the best deals on your games to launching and boosting them for peak pc performance while backing up

More information

FRONT USER GUIDE Getting Started with Front

FRONT USER GUIDE Getting Started with Front USER GUIDE USER GUIDE Getting Started with Front ESSENTIALS Teams That Use Front How To Roll Out Front Quick Start Productivity Tips Downloading Front Adding Your Team Inbox Add Your Own Work Email Update

More information

CareCarma. It Starts With Family

CareCarma. It Starts With Family CareCarma It Starts With Family 3. INTRODUCTION 3. How can CareCarma Help You? 3. CareCarma Home Page 4. CareCarma CareCircle 4. CareCarma CareCircle Tools 5. Work on Different Plattforms 6. GETTING STARTED

More information

Welcome to the Ascend Virtual Sales Office Training Series Ascend

Welcome to the Ascend Virtual Sales Office Training Series Ascend Welcome to the Ascend Virtual Sales Office Training Series 2014 Ascend Today s Agenda Introduction Housekeeping Scope of Appointment Solution Acend for ipad and Windows Completing an electronic enrollment

More information

AGENCYCORE MOBILE ios MANUAL

AGENCYCORE MOBILE ios MANUAL 1 AGENCYCORE MOBILE ios MANUAL 2 Table of Contents DOWNLOADING APP... 3 HOME PAGE... 8 MY MESSAGES... 9 Common Icons & Buttons Messages... 9 Compose New Message:... 12 MY SCHEDULE... 13 Visit Information...

More information

This document (including, without limitation, any product roadmap or statement of direction data) illustrates the planned testing, release and

This document (including, without limitation, any product roadmap or statement of direction data) illustrates the planned testing, release and Serverless Integration Powered by Flogo and Lambda Leon Stigter Developer Advocate TIBCO 2 Abstract No matter the metric, "serverless" is definitely gaining interest. It s the dream of every developer,

More information

Affinity Provider Portal - PRISM. User Guide

Affinity Provider Portal - PRISM. User Guide Affinity Provider Portal - PRISM User Guide Affinity Medical Group 1221 Broadway, Suite 300 Oakland, California 94612 Affinity Provider Portal - PRISM User Guide Page ii Contents Accessing the Affinity

More information

Home. Video. Paint Balling. Quad Biking. Website Report. Archery. Contact. Target Audience. Navigation Structure

Home. Video. Paint Balling. Quad Biking. Website Report. Archery. Contact. Target Audience. Navigation Structure Website Report Target Audience The target audience for my website is for families or people who like outdoor activities. This place would be for people who like to have fun and who would also like to keep

More information

Customer relationships in the era of messaging apps

Customer relationships in the era of messaging apps Customer relationships in the era of messaging apps Content: The customer is king (again)... 3 Messaging apps are virtual companions... 4 Fade-away for email, post and phone... 5 Messaging apps have tremendous

More information

CME E-quotes Wireless Application for Android Welcome

CME E-quotes Wireless Application for Android Welcome CME E-quotes Wireless Application for Android Welcome This guide will familiarize you with the application, a powerful trading tool developed for your Android. Table of Contents What is this application?

More information

2 Using the console. 4 Useful tips

2 Using the console. 4 Useful tips User training 1 Getting started Agenda 2 Using the console 3 Chatting 4 Useful tips Get started 1. Open your browser (Chrome, Firefox or Internet Explorer 10+) 2. Go to www.giosg.com 3. Click Sign in Get

More information

For Volunteers An Elvanto Guide

For Volunteers An Elvanto Guide For Volunteers An Elvanto Guide www.elvanto.com Volunteers are what keep churches running! This guide is for volunteers who use Elvanto. If you re in charge of volunteers, why not check out our Volunteer

More information

Cisdem AppCrypt Tutorial

Cisdem AppCrypt Tutorial Cisdem AppCrypt Tutorial 1 Table of Contents I. About Cisdem AppCrypt... 3 II. Activating this Application... 4 III. Application Operating... 5 I. Get Started... 5 II. Add & Remove Applications... 6 III.

More information

Cisco WebEx Social Frequently Asked Questions, Release 3.3 and 3.3 SR1

Cisco WebEx Social Frequently Asked Questions, Release 3.3 and 3.3 SR1 Cisco WebEx Social Frequently Asked Questions, Release 3.3 and 3.3 SR1 Cisco WebEx Social Server is a people-centric social collaboration platform that can help organizations accelerate decision making,

More information

SLACK. What is it? How do I use It?

SLACK. What is it? How do I use It? SLACK What is it? How do I use It? What is Slack? It s a chat room for our whole chapter. If you ve heard of Internet Relay Chat (IRC) or WhatsApp before, it s fairly similar. The chapter s Slack is divided

More information

Contents. Back to Contents

Contents. Back to Contents Contents How to: Send Blast Messages... 2 What is Blast?... 2 What can I use Blast to do?... 2 How do I send Blast Messages?... 4 How do I send Email Blast Messages?...6 How do I send Text Blast Messages?...

More information

Autoresponder Guide. David Sharpe

Autoresponder Guide. David Sharpe David Sharpe There are two autoresponders that I personally use and recommended AWeber and Sendlane. AWeber AWeber is a great service to use if you already have a website you are using. You can easily

More information

Sakai Forums.

Sakai Forums. Sakai Forums http://sakai.providence.edu SakaiHelp@Providence.edu www.providence.edu/itdp Turning on the Forums Tool: The Forums tools is not automatically set up a new Sakai site. If you would like to

More information

Skype for Business Features Overview

Skype for Business Features Overview Introduction Skype for Business is a newly available communications tool for Illinois State University Faculty, Staff, and Students. It contains many features for Instant Messaging, Voice, and Video Chat,

More information

Connected Driver 2.0 App Changes

Connected Driver 2.0 App Changes Connected Driver 2.0 App Changes On 9/26/16 an update will be released to the connected driver app. This update will require drivers to log in to the app again and may cause some confusion. If the driver

More information

Community portal User Guide OACIS

Community portal User Guide OACIS Community portal User Guide OACIS Septembre 2015 Table des matières TELUS Health Community Portal... 3 Registering... 4 First time login... 5 If you forget your password... 5 Set up your community profile...

More information

Building Secure and Scalable Mobile Apps on AWS

Building Secure and Scalable Mobile Apps on AWS Building Secure and Scalable Mobile Apps on AWS Dennis Hills Mobile Developer Advocate, Amazon Web Services April 20, 2017 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Agenda

More information

TABLE OF CONTENTS 1. SYSTEM REQUIREMENTS INSTALLATION ACCOUNT MANAGEMENT RAZER CORTEX GENERAL SETTINGS...

TABLE OF CONTENTS 1. SYSTEM REQUIREMENTS INSTALLATION ACCOUNT MANAGEMENT RAZER CORTEX GENERAL SETTINGS... Welcome to Razer Cortex, the nerve center of your entire gaming experience. From effortlessly finding the best deals on your games to launching and boosting them for peak pc performance while backing up

More information

The Internal Market Information System. Frequently Asked Questions

The Internal Market Information System. Frequently Asked Questions EUROPEAN COMMISSION Directorate General Internal Market and Services SERVICES Administrative cooperation and Member State networks The Internal Market Information System Frequently Asked Questions (March

More information

FACEBOOK SAFETY FOR JOURNALISTS. Thanks to these partners for reviewing these safety guidelines:

FACEBOOK SAFETY FOR JOURNALISTS. Thanks to these partners for reviewing these safety guidelines: FACEBOOK SAFETY FOR JOURNALISTS Thanks to these partners for reviewing these safety guidelines: 10 STEPS TO KEEP YOURSELF SAFE Journalists are using Facebook in innovative ways to do their jobs, tell stories,

More information

Lex Talus Corporation

Lex Talus Corporation Lex Talus Corporation 9210 Double Diamond Pkwy Reno, Nevada 89521 775.434.0420 To: Subject: Delta V Ballistic Software Purchaser Important information about the program Read this first First, read the

More information

TABLE OF CONTENTS 1. SYSTEM REQUIREMENTS INSTALLATION ACCOUNT MANAGEMENT RAZER CORTEX GENERAL SETTINGS...

TABLE OF CONTENTS 1. SYSTEM REQUIREMENTS INSTALLATION ACCOUNT MANAGEMENT RAZER CORTEX GENERAL SETTINGS... Welcome to Razer Cortex, the nerve center of your entire gaming experience. From effortlessly finding the best deals on your games to launching and boosting them for peak pc performance while backing up

More information

Sync Manually Greyed Out Iphone Options >>>CLICK HERE<<<

Sync Manually Greyed Out Iphone Options >>>CLICK HERE<<< Sync Manually Greyed Out Iphone Options How to fix: Grayed Out Songs on the iphone, ipod and itunes you try to sync music to iphone, deleted or missed songs displays as grayed out songs. On your ios device

More information

Outpatient Quality Reporting Program

Outpatient Quality Reporting Program CMS Abstraction & Reporting Tool (CART): Knowing the Basics Presentation Transcript Moderator: Karen VanBourgondien, BSN, RN Education Coordinator, Hospital Outpatient Quality Reporting (OQR) Program Speaker(s):

More information