Jun 15, 2022

Remind your users about scheduled appointments with Amazon Alexa and WordPress

Alexa’s reminders feature lets users receive a “barge-in” notification at a predetermined time. Alexa delivers the reminder by chiming and reading out the reminder message.

By integrating Alexa’s Reminders API in your skill you can increase the engagement of your skill and extend utility beyond users having to launch the skill to get the most out of its features. Integrating reminders has never been easier with the help of Convoworks Reminder elements. You can find five elements in our convo-alexa package to help you handle creating, loading, updating, and deleting reminders.

In this post, we’ll go over the Reminders basics and how we integrated them with our Schedule Appointments template.

Alexa Reminders

Alexa Reminders API is a set of RESTful APIs that enable developers to create and manage reminders for users as part of the skill experience. The user needs to grant permission for reminders, both when enabling a skill and in-skill before each reminder is set. If push notification is enabled, the reminder will be sent as a push notification on the Alexa mobile app as well.

The skill can create a one-time or a recurring reminder. If a reminder is recurring, it can be set to occur either weekly or on specific days. In the case of the Schedule Appointments reminders integration, we’ll be setting a one-time reminder, an hour before the appointment starts. But, more on that later on, in the walkthrough section.

Developers can use the Reminders API in two ways: in-session interactions and out-of-session interactions. Out-of-session interactions don’t require users to interact directly with a skill. The user can delete, update and read reminders out-of-session, however they cannot create one. The in-session interaction allows the creation, updating, deleting, and reading of reminders while the user interacts with a skill.

In Convoworks, we have created five specific elements to handle those interactions and cover all Reminders API options.

Set up Schedule Appointments template with Reminders

We have already created an updated version of our Schedule Appointments template that lets you take advantage of reminders. Just follow these simple steps to set up the service and get it going.

Service definition

Navigate to Add new service view in Convoworks WP and select Import from file option. Upload the service definition from the link above. Navigate to the Configuration view and publish it to Amazon.

If this is your first time using Convoworks you might want to check out our Connect to Amazon and create your first Alexa skill tutorial from Convoworks Basics video series.

Lastly, after the changes have taken effect, you can test the service to make sure it’s good to go. As reminders are a specific feature, the skill can be tested either in Alexa mobile app or real Echo device.

Before submitting the skill for certification we recommend describing the reminders feature in the testing instructions. Even though we’ve made sure the service meets the requirements, it still might not pass the certification, if the reminders and the booking features aren’t described in detail in the testing instructions.

For example: “The skill uses the reminders feature after the user books an appointment. It asks the user if they want a reminder. If the user consents to getting the appointment reminder, the skill checks if reminders permission has been granted. If it has not, a card with the link is sent to the Alexa app. Reminders permission is not mandatory if the user doesn’t consent to reminders.”

You can read about the booking skill requirements here.

Now, let’s take a look under the hood.

Schedule Appointments with Reminders – Service walkthrough

This will not be a walkthrough of the whole Schedule Appointments template and an explanation of its inner workings. You can visit the Appointment scheduling on your WordPress blog post for that.

In this section, we’ll take a look only at the added Reminders flow. As mentioned before, in the case of the Schedule Appointments reminders integration, we’ve added a one-time reminder option, an hour before the appointment starts. The user is free to decline a reminder, and it won’t be set.

Ask for reminding no more than once per week

Moreover, the user won’t be asked for another reminder for seven days after they declined. This is in accordance with the Alexa Reminders Guidelines.

Before the user is asked if they want a reminder in the Schedule Appointment block, the service checks if seven days have passed since the last time the user had said no to the reminder.

reminder time

If this is a first-time user, or the user hasn’t reclined remainders in the last seven days we can proceed to the Create reminder block, where the user is asked if they want a reminder one hour before the appointment. We decided to use a predefined reminder to make conversation more convenient.

variablesYou can modify the reminder time on the Variables Convoworks view. Given how the service is set up currently, the time of the reminder can be only on the day of the appointment and is calculated as the time before the appointment in the Get reminder time and text fragment.

Setting Alexa reminder time and text

In the same fragment is the reminder_text variable which you can modify as well. This is the text that will be read out to the user during the reminder delivery.

Alexa reminders not granted

Before creating an actual reminder, we have to check if the user granted the reminder permission. If the permission has been granted the Create Alexa Reminder Element creates the reminder with the inputted data.

Conclusion

In this post, we went over the example of using reminders in the appointment booking scenarios. Reminders are a useful tool for increasing the engagement of your skill and extending its utility and hopefully, you can use this example as a starting point for your integrating reminders into skills journey.

Petra Gal

Petra Gal

VUI Designer with two years of experience in designing conversational interfaces, including Alexa skills and IVRs. Certified by Conversation Design Institute in Conversation Design and Career Foundry in VUI Design. Experienced in creating customer-focused solutions that are intuitive and accessible.

Tihomir Dmitrović

Tihomir Dmitrović

Full stack developer with 20+ years of professional experience, specialized in solving complex problems in a scalable manner. Founded Convoworks, which is a GUI based tool for creating voice and chatbot applications through WordPress.

Aug 29, 2021  | 

Know your users with Alexa Account Linking (with PHP and WordPress)

Account linking enables your voice application to access user information during its execution. That way you can know your…

VIEW FULL POST

Jun 14, 2022  | 

Appointment scheduling on your WordPress website – Now with Amazon Alexa skill

Many of the WordPress-based websites have some kind of appointment scheduling functionality. To be more precise, there are a…

VIEW FULL POST