Alexa Skills Kit Glossary


This document defines common terms used throughout the Alexa Skills Kit documentation.

A| C| D| E| F| H| I| L| M| N| O| P| R| S| T| U| V| W|

A

access token
A credential that represents the end user (resource owner) in another system. A token should identify the user in the other system. The access token is included in the requests sent to your skill if the user has successfully linked their accounts.
access token URI (access token endpoint)
The URI (Uniform Resource Identifier) of the access token endpoint for the authentication server. The Alexa service calls this endpoint to exchange the authorization code for the access token. For an Alexa skill, you specify this endpoint in the developer console, in the Access Token URI field on the Build > Account Linking page.
account linking
An Alexa Skills Kit feature that lets you connect the identity of the end user with an account in another system. For example, a Car Hailer custom skill for ordering a ride needs to access the Car Hailer service as a specific user. Similarly, a smart home skill for controlling a light needs to connect the Alexa user with an account in the device cloud. See Understand Account Linking.
Alexa app
The companion app for Alexa customers to set up devices, change settings, and see the displayed output from interactions with Alexa.
Alexa-enabled device
A device that provides access to the Alexa service. Examples include Amazon Echo, Amazon Echo Dot, Amazon Tap, Echo Show, and devices made by other manufacturers that use the Alexa Voice Service.
Alexa Presentation Language (APL)
A composable, responsive layout language from Amazon that is used to create interactive visual experiences for Alexa. See Understand Alexa Presentation Language (APL).
Alexa service / Alexa
The cloud-based voice service that powers Alexa-enabled devices made by Amazon or other manufacturers. You can give Alexa new abilities by creating your own cloud-based service that accepts requests from Alexa and returns responses.
Alexa skill
See Skill.
Alexa Skills Kit
A collection of APIs, tools, and documentation for giving Alexa new capabilities. See What is the Alexa Skills Kit?
Amazon Polly
A service that turns text into lifelike speech, allowing you to create applications that talk, and build entirely new categories of speech-enabled products. The text-to-speech service uses advanced deep learning technologies to synthesize speech that sounds like a human voice. With dozens of lifelike voices across a variety of languages, you can select the ideal voice and build speech-enabled applications that work in many different countries. For more information, see Amazon Polly.
annotation
A test utterance annotated with the intent and slot values you expect the utterance to trigger. You can create an annotation set containing a group of annotations, then run an evaluation with the NLU evaluation tool to batch test the accuracy of your NLU model.
ask
One of the words a user can say to ask Alexa to invoke a particular custom skill. This is used in combination with the invocation name for the skill. For example, Alexa, ask Astrology Daily for my horoscope. There are several phrases users can say to start a conversation with Alexa. See Understanding How Users Invoke Custom Skills.
authorization code
A value used by authorization code grant to allow a client to request an access token from an authorization server. Used with authorization code grant.
authorization code grant
A grant type for requesting the end user's authorization to access their information in another system. In authorization code grant, the authorization server returns a code once the user logs in. Alexa then uses this code to request an access token / refresh token pair from the server, using the access token endpoint (URI). The refresh token can then be used to request a new access token after the old token expires.
authorization server
The server that authenticates the identity of the resource owner and issues access tokens. This can be the same as the Resource server, but it does not have to be. One of the four roles defined by OAuth 2.0, used in account linking. For example: if your skill connects to a service for ordering rides (Car Hailer), the authorization server authenticates the user and provides an access token that can be used to get the user's Car Hailer profile from the resource server.

You specify this in the developer console, in the Authorization URI field on the Build > Account Linking page.
authorization URI
The URI (Uniform Resource Identifier) of the page for entering login credentials for a service. The user is redirected to the authorization URI when starting the account linking process for a skill. Once the user has authenticated, this page redirects the user back to an Alexa-specified redirect_uri.
automatic speech recognition (ASR)
A technology that converts spoken words into text. ASR is the first step in enabling technologies like Alexa to respond when you ask, Alexa, what's it like outside?
AWS Lambda
An Amazon Web Services (AWS) compute service that runs your code in response to events and automatically manages the compute resources for you. This lets you run code (referred to as a Lambda function) in the cloud without managing servers. The code for your skill must be hosted as a Lambda function and is required for smart home skills. You can also choose to use a Lambda function for the service for a custom skill. AWS Lambda is a service offering by Amazon Web Services.
AWS Lambda function
The code uploaded to AWS Lambda. Lambda supports coding in Node.js, Java, Python, or C#. A smart home skill must be implemented as a Lambda function. You can also choose to use a Lambda function for the service for a custom skill.

C

card
See Home card or Detail card.
client
The application making the requests to the resource server on behalf of the resource owner, with the resource owner's authorization. In the context of account linking for skills, this role is shared by the Alexa service and the skill. Alexa handles getting the resource owner's authorization and the skill uses the access token to access the protected resource in the resource server. One of the four roles defined by OAuth 2.0, used in account linking.
cloud-based service
See Service.
companion app
See Alexa app.
component
In Alexa Presentation Language (APL), a primitive UI element which can be displayed on the viewport. APL provides a set of components for UI elements such as text, image, list and video. You can combine components to create custom layouts. The Alexa Design System for APL also provides a set responsive components that can be used like components, such as a Button component that combines the primitive components Text, TouchWrapper, and Frame and builds in responsiveness to different viewports.
confirmation
When Alexa responds with a word or phrase that lets the customer know the request was understood correctly. Types of confirmation include Implicit confirmation and Explicit confirmation.
consumable purchase
An in-skill purchase that provides content or features that can be purchased, depleted, and purchased again. For example, hints for a game, in-game currency or extra lives.
conversation
See Interaction.
custom voice interaction model
The interaction model design for a custom skill. The skill developer defines the intent schema that defines the requests the skill can handle and a set of sample utterances that users can say to invoke those requests.
custom skill
A skill that uses a custom interaction model. You define the requests your skill can handle (intents) and the words customers say to make (or invoke) those requests (sample utterances). The mapping between the intents and sample utterances creates the interaction model or voice user interface for the skill.

D

data-binding
In Alexa Presentation Language (APL), the method used to retrieve data from a data source supplied by you (the developer) or device information and use it within APL components. Data binding lets you separate your presentation logic (the APL document) from your source data. You use data binding expressions to bind data to APL components or layouts.
data-binding context
The collection of data sources and data available to an APL document for data binding. The data is structured in key-value pairs and includes the data source that accompanies the APL document, information about the device viewport (such as viewport.width), device capabilities, and environment information (such as environment.aplVersion). The context can also contain derived data. For example, data from a specific element in a array when a data source is bound to a component such as Sequence that can iterate over a collection and inflate each element of the array.
data-binding expression
In Alexa Presentation Language (APL), an expression that is dynamically evaluated when Alexa displays your document. You use data-binding expressions to bind component properties to your data source, and to write conditional logic to hide and show components depending on the viewport characteristics. Data-binding expressions begin with a dollar sign followed by curly brackets: ${..}. See APL Data-Binding Evaluation and APL Data-Binding Syntax.
data-binding syntax
In Alexa Presentation Language (APL), the syntax used to write a data binding expression. See APL Data-Binding Syntax.
delegate
Lets Alexa determine and complete the next step during a dialog between the user and the skill. Alexa uses the skill's dialog model to determine the next step in the dialog and ask the user for the information. You can delegate the dialog manually or automatically.
detail card
A card displayed in the Alexa app with information about the skill and how to use it. Customers can review detail cards and enable the skills they want. You enter most of the information displayed on the detail card on the Launch Your Skill page.
developer console
A development tool that provides a streamlined experience to help you create, manage, and publish Alexa skills.
device cloud
Back-end cloud service that can control a cloud-enabled device. For a smart home skill, you write code hosted as a Lambda function that translates commands from the Alexa smart home skill API to the device cloud.
device cloud account
Unique customer account used to access the device cloud. The customer links the device cloud account with the Alexa service using the Alexa app. OAuth 2.0 is the required mechanism for account linking.
device directive
A set of data and instructions, expressed in JSON, sent from Alexa to a smart home or video skill.
device discovery
The process by which the Alexa smart home skill API or Video Skill API discovers the devices that can be controlled with a skill.
device event
A response to a device directive, expressed in JSON, sent from a smart home or video skill to Alexa.
device with Alexa
A device that provides access to the Alexa service. Examples include Amazon Echo, Amazon Echo Dot, Amazon Tap, and third-party devices that use the Alexa Voice Service.
dialog errors
When something unexpected happened in the conversation between Alexa and the customer. Types of dialogue errors include low confidence errors, timeouts/silence/no input, and false accepts. For recommendations on how to handle dialogue errors, see Error messages in the Alexa Design Guide.
dialog model
A structure that identifies the prompts and user utterances to collect, validate, and confirm slot values and intents. You use a dialog model to let Alexa determine the next step in a conversation and ask the user for more information. A dialog model also improves accuracy when you manage the dialog manually with the Dialog directives such as Dialog.ElicitSlot. To create a dialog model, see Define the Dialog to Collect and Confirm Required Information.
directive
See device directive.
directive language
JSON protocol that enables communication between the Alexa smart home skill API and a smart home skill.
display template
A template that is used by Alexa-enabled devices with a screen to display a combination of text and images in a specified format. There are several body templates, which are used to display content, and several list templates, which allow selection of content. Display templates are displayed as cards in the Alexa app if the user does not have an Alexa-enabled device with a screen.

E

Echo app
See Alexa app.
endpoint
Represents a physical device, virtual device, group or cluster of devices or a software component that is primarily used in smart home and video skills. An endpoint identifies the target for a directive and the origin of an event from a skill.
error message
The message delivered to a customer when an utterance or technical error occurs during a dialog.
evaluation (NLU)
A test that evaluates the natural langauge understanding (NLU) model built from your skill's interaction model, using a specified annotation set. This can be especially useful for regression testing as you iterate on your interaction model. See Batch Test Your Natural Language Understanding (NLU) Model.
example phrase
A phrase showing customers what they need to say to begin using your custom skill. You'll enter these phrases in the Distribution tab of the developer console. The phrases must also be included in your list of Sample utterances.
exit command
When the customer says a command like exit or stop to end the interaction.
exit message
The message delivered when a customer asks the skill to stop/exit or when the conversation with the skill comes to a natural end.
explicit confirmation
A prompt that repeats back what Alexa heard and explicitly asks the customer to confirm whether they were correct. For example, Alexa, ask Astrology Daily for my horoscope. Alexa would respond with, You wanted a horoscope from Astrology Daily, right?

F

false accept error
When Alexa has mid to high confidence in understanding what the customer said, but actually misunderstands and uses an utterance that doesn't match.
full intent invocation
A customer's request that contains all information Alexa needs to make the request actionable. For example, Alexa, ask History Buff what happened on June 3rd.

H

help message
The message delivered to a customer who either asks the skill for help or reaches an error message too many consecutive times. A high-level help message delivers information about the skill and its features that includes similar information as the first-time welcome message. Contextual help messages are delivered when the customer is trying to use a specific feature or is stuck on a certain task or prompt.
home card
An element displayed in the Alexa app to describe or enhance a voice interaction with a custom skill. See Including a Card in Your Skill's Response.

I

implicit confirmation (landmarking)
A prompt that subtly repeats back what Alexa heard to give the customer assurance that they were correctly understood. In the following example, repeating back the word horoscope is a landmarking technique used to establish trust with the customer but still supports natural dialog.

For example, Alexa, ask Astrology Daily for my horoscope. Alexa would then ask to clarify the request with, Horoscope for what sign?
implicit grant
A grant type for requesting the end user's authorization to access their information in another system. In implicit grant, the authorization server returns the access token once the user logs in. This grant type is limited compared to authorization code grant.
intents
A representation of the action that fulfills a customer's spoken request. Intents can have further arguments called slots that represent variable information. For example, Alexa, ask History Buff what happened on June third. In this statement, …what happened on June third maps to a specific intent that can be handled by a particular Alexa ability. This tells Alexa that the user wants the skill History Buff to get historical information on a specific date.

For details about defining intents, see Create Intents, Utterances, and Slots.
intent schema
A JSON structure which declares the intents that can be handled by the service for a custom skill. This is documented in the Interaction Model Schema. You can also build your intent schema graphically in the developer console.
interaction
An exchange of information in conversational format between the user and Alexa. This may be a single request-response, or a more extended set of turns.
interaction model
See voice interaction model.
interruptions
When the interaction between Alexa and the customer is interrupted by another event. Examples of interruptions are alarms and timers going off while the customer is talking to Alexa.
invocation
The act of beginning an interaction with a particular Alexa ability. For example, if a customer wants to wake Alexa to use the Horoscope skill, Alexa, ask Horoscope for today's reading.
Alexa then follows up after the invocation and asks, What horoscope sign would you like?

Types of invocations include: full intent invocation, partial intent invocation, and no intent invocation.
invocation name
A name that represents the skill that the user wants to use. The user says a supported phrase in combination with the invocation name for a skill to begin interacting with that skill. For example, Alexa, ask History Buff what happened on June third. In this example, History Buff is the invocation name for a skill that retrieves historical events. Note that smart home skills don't have invocation names.

L

Lambda blueprint
An option in the AWS Lambda console that provides sample code and a sample configuration for a new Lambda function. There are multiple blueprints relevant to the Alexa Skills Kit. For example:alexa-smart-home-skill-adapter provides a sample skill for a smart home skill in Node.js. alexa-skills-kit-color-expert and alexa-skills-kit-color-expert-python provide samples of a simple custom skill in both Node.js and Python. See Creating an AWS Lambda Function for a Custom Skill.
Lambda function
See AWS Lambda function.
landmark
See Implicit confirmation.
link account card
A special type of card (LinkAccount) displayed in the Alexa App that tells the user to link their account. The user can start the account linking process right from this card. A custom skill can respond with this card if a user who has not linked their account tries to invoke an intent that requires authentication.
locale
A locale refers to a language and the location (country) in which it's spoken. The country is often represented by two capital letters, such as DE (Deutsch) for Germany or ES (España) for Spain. The language is usually represented by two lower-case letters, such as hi (Hindi) or pt (Portuguese). Some languages correspond to several countries. English, for instance, is associated with the United States (US), Canada (CA), India (IN), Australia (AU), and the United Kingdom (GB). For that reason, language and country codes are combined to form locale codes like es-MX (Spanish language, Mexico) and ar-SA (Arabic language, Saudi Arabia).
low confidence errors
When Alexa has low confidence in understanding what the customer said and proceeds either without requesting clarification or ends in the interaction.

M

marker
Conversational markers, or cues, are words or sentence clauses that indicate the status of a dialog to a customer. For example, “First,” “Next,” “I'll need some information from you,” etc.
max error condition
When consecutive dialogue errors occur, this terminates the interaction and is designed to keep Alexa from making the same mistake repeatedly.
menu style prompt
A prompt that asks the customer a question intended to elicit a response from a small set of possible options (recommended 5 or fewer). For example, Helper for Minecraft. You can ask for a recipe, the ingredients of a potion, or game instructions. Now, which would you like?

N

natural language understanding (NLU)
A technology that helps computers to deduce what speakers actually mean, not just what words they say. NLU makes it possible for Alexa to infer, for example, that you're asking for a local weather forecast when you ask, Alexa, what's it like outside?
no intent invocation
A customer's request with no intent or slot information. For example, Alexa, open History Buff.
notifications
When the customer takes an action that requires Alexa to inform them at a later time that an event is occurring or about to occur. The most common examples of this are alarms and timers. A notification can occur if nothing else is going on at all, or they also can occur in the form of an interruption while the customer is interacting with Alexa. In this case, the notification is delivered between turns during an interaction.

O

one-time purchase
An in-skill purchase (entitlement) that unlocks access to features or content within a skill. One-time purchases do not expire.
open ended prompt
A prompt that asks the customer a question intended to elicit a wide range of responses. For example, What would you like to do?
optional slot
A slot that contains values that refine the user's request, but are not necessary for Alexa to complete the task. For example, Alexa, ask History Buff what happened in history on June third. Here, …June third is optional since History Buff can just give historical events for today if the user does not specify a date. As such, you should not ask the user for optional slot values if they exclude them.

P

partial intent invocation
A customer's request that contains the customer's intent, but is missing a required slot. For example, Alexa, ask Horoscope for today's reading. Here, the required zodiac sign is missing, and Alexa needs to obtain that information from the customer.
pre-built voice interaction models
A predefined set of utterances that users say to interact with your skill. The skill developer simply defines their skill to accept and handle the pre-built requests that correspond to these utterances. ASK offers several pre-built voice interaction models for different skill types. For a complete list of skill types that use pre-built voice interaction models, see Index of Skill Types.
prompt
A string of text that should be spoken to the customer to ask for more information. You include the prompt text in your response to a customer's request. Types of prompts include: Open ended, Menu style, Re-prompt, and Implicit confirmation (Landmarking).

R

redirect URL
An Amazon-provided URL to which the Authorization URI redirects the user after the user is authenticated. The redirect URLs are displayed in the developer portal after you configure account linking.
refresh token
A credential that can be used to obtain an access token. Refresh tokens are supported with the authorization code grant type. A refresh token can be used to request a new access token after the old token expires.
re-prompt
A special kind of prompt used by Alexa when a response is not heard or clearly understandable, usually in the form of a question after a dialog error has occurred. The general purpose of a re-prompt is to help the customer recover from errors. For example, Alexa, open Score Keeper.
Welcome back to Score Keeper. What's your update?

In this case, if the customer doesn't respond, Alexa would continue with helpful tips. For example,
You can add points for a player, ask for the current score, or start a new game. To hear a list of everything you can do, say Help. Now, what would you like to do?
required slot
A slot that contains values that are necessary for Alexa to complete the user's request. For example, Alexa, ask Astrology Daily for the horoscope for Taurus. Without the name of the specific zodiac sign, Astrology Daily cannot provide a horoscope. If the user does not provide a value for a required slot, you must ask the user for that slot value.
resource (APL)
In Alexa Presentation Language (APL), a named constant that you can use to specify a value instead of hardcoding values. For example, you can create a resource called myRed that defines a particular shade of red. In your APL document, you can then use @myRed for any property that accepts a color. A resource can have conditional logic, so it can resolve to different values based on criteria such as the viewport characteristics. To use the resource, prefix the resource name with the @ sign, as shown in the @myRed example.
resource owner
The user of your skill who can grant permission to access a protected resource (such as, but not limited to, account information) to connect your skill with their user account in another system (resource server). This is one of the four roles defined by OAuth 2.0, used in account linking.
resource server
The server hosting the resources the skill wants to access on behalf of the resource owner. One of the four roles defined by OAuth 2.0, used in account linking.
For example, if your skill connects to a service for ordering rides (Car Hailer), the resource server might be a database containing profiles for Car Hailer users. If your skill is a smart home skill for controlling lighting (My Lights), the resource server is the part of your device cloud containing information about each user's smart devices that the service controls.
responsive component
An APL layout that combines components into modular, responsive elements. You can use these as building blocks in your document, similar to how you would use components. For example, Button displays a button that works on all different types of devices and handles different button states automatically. A standard set of responsive components are available in the alexa-layouts package.
responsive template
An APL layout that provides a complete viewport design that combines components and responsive components. The template fills the entire viewport and includes the background, header, and content. For example, the Text List template presents a scrolling list of text items with a background and header. A standard set of responsive templates are available in the alexa-layouts package.

S

sample utterance
A structured string of text that connects a specific intent to a likely utterance. You provide a set of sample utterances as part of your interaction model for a custom skill. When customers say one of these utterances, the Alexa service sends a request to your service that includes the corresponding intent.
service
A cloud-based service you create to support a skill. This service takes requests from Alexa and returns responses. For a custom skill, the service accepts requests with intents and returns responses with the text to speak back to the user. For a smart home skill, the service takes device directives, communicates with the device cloud to control devices such as lights and thermostats and sends device events back to Alexa.

You can deploy the service for a custom skill either as an AWS Lambda function or a web service. Smart home skills can only be hosted using Lambda.
skill
A set of actions or tasks that are accomplished by Alexa. Skills are like apps for Alexa, helping customers perform everyday tasks or engage with your content naturally with voice. Alexa provides built-in functionality, such as timers and alarms. You can use the Alexa Skills Kit to create skills for Alexa. A skill includes both the code, in the form of a cloud-based service, and the configuration provided on the developer console.
slot
An argument to an intent that gives Alexa more information about that request. For example, Alexa, ask History Buff what happened on June third. In this statement, …June third is the value of a date slot that refines the request. For a given intent, slots can be required or optional. To designate slots as required and let Alexa manage the conversation to collect the slot values, create a dialog model and then delegate the dialog to Alexa.
Smart Home Skill API
An API to create skills that give Alexa the ability to control smart home devices such as lights and switches. The Smart Home Skill API translates utterances such as turn on the lights into device directives that it routes to a Lambda function that can control a cloud-enabled device.
smart home endpoint
An endpoint identifies the target for a smart home directive and the origin of an event from a smart home skill. A smart home endpoint can represent a physical device, virtual device, group or cluster of devices, or a software component.
smart home skill
A skill intended to control smart home devices such as lights and thermostats. When using the Smart Home Skill API, the API defines the requests the skill can handle, such as device directives, and the words the users say to make those requests.

A complete smart home skill includes the code hosted as an AWS Lambda function and a configuration that provides the information the Alexa service needs to route requests to the Lambda function. The code for the skill must be able to control the device (such as a light) using the cloud.
Speech Synthesis Markup Language (SSML)
A markup language that provides a standard way to mark up text to generate synthetic speech. The Alexa Skills Kit supports a subset of tags defined in the SSML specification.
subscription
An in-skill purchase that offers access to premium content or features for a period of time. Users are charged on a recurring basis until they cancel their subscription.
system error
Occurs when something unexpected happened, unrelated to the dialogue between the customer and Alexa. For example, the call for a data service used to get the information the customer requested was unable to send Alexa that information.

T

tell
One of the words a user can say to tell Alexa to invoke a particular custom skill. This is used in combination with the invocation name for the skill. For example, Alexa, tell Color Expert that my favorite color is red. There are several phrases users can say to start a conversation with Alexa. See Understanding How Users Invoke Custom Skills.
text-to-speech (TTS)
Converts a string of text to synthesized speech (Alexa's voice). The Alexa service can take plain text for TTS conversion.
timeouts/silence/no response errors
When the customer does not respond to a question Alexa asked. A re-prompt is usually played to encourage the customer to respond.
touch interaction
A touch on an Alexa-enabled device with a screen that produces a specified response, such as touching an item in a list on the screen to see more information about the item.
turn
A single request to or a response from Alexa. Sometimes turn refers to only the request side of a conversation, for example:

Alexa, open Horoscope.
What horoscope sign would you like?
Pisces.
Today's horoscope for Pisces is…

This example might be referred to as a two-turn interaction, rather than the 4 turns that it technically contained.

U

utterance
The words a user says to Alexa to convey what they want to do, or to provide a response to a question Alexa asks. For skills that use one of the pre-built voice interaction models, Alexa provides predefined utterances and associated requests. For skills developed with the custom voice interaction model, you provide a set of sample utterances that map to a request (intent). For details, see About Voice Interaction Models.

V

viewport
On an Alexa-enabled device with a screen, the viewport is the area of the screen that the user can see. A viewport has a shape, orientation, size, and density.
viewport profile
A named resource that represents a range of viewport characteristics. The profile specifies a shape, orientation, range of sizes, and range of densities, so the profile can represent multiple physical devices. For example, the viewport profile hubLandscapeSmall encompasses rectangular, landscape devices where the width is between 960 and 1280 pixels, and the height is less than 600 pixels. Use the provided Alexa viewport profiles in conditional logic to create responsive APL documents.
voice forward
A voice-optimized multimodal concept where the GUI is optimized for voice. This means that buttons, links, and other touch affordances are replaced by voice-friendly affordances like action hints.
voice interaction model
The words and phrases that users can say to communicate with a skill. This model determines how users interact with a skill and what requests the skill must handle. Alexa supports two types of interaction models, pre-built and custom.
voice user interface (VUI)
A method for people to use voice input to interact with and control computers and devices. For a custom skill, the voice interface consists of a mapping between users' spoken utterances and the intents your cloud-based service can handle. See Interaction Model Schemas.

W

wake word
A command that the customer says to start speaking with Alexa. For example, Alexa, open History Buff. Here, Alexa is the wake word. Alexa customers can select from a defined set of wake words: Alexa, Amazon, Echo, and Computer.
web service
In the context of the Alexa Skills Kit, an internet-accessible service that can accept requests from the Alexa service and return responses. You can use a web service as the cloud-based service for a custom skill. For the requirements your service must meet, see Host a Custom Skill as a Web Service.
welcome message
The message delivered when a customer invokes a skill without a request. For example, Alexa, open Horoscope. Alexa would respond with a welcome message, such as: Welcome back to Horoscope. Which sign would you like to hear a daily horoscope for?

A first time welcome message introduces the customer to the skill and provides a few commands the customer can use in that skill. A return welcome message greets the customer and prompts for a widely used task or required piece of information to continue the conversation.


Back to top


Was this page helpful?

Last updated: Nov 23, 2023