(Created page with "シナリオに関する一般情報については、 シナリオビルダー概要をご覧ください。") |
(Created page with "== シナリオフロー == このシナリオの目的は、音声対話から顧客満足度のフィードバックを求め、報告目的でこの情報を収集するこ...") |
||
Line 13: | Line 13: | ||
シナリオに関する一般情報については、 [[Scenario-builder-reference-guide/ScenarioBuilderOverview|シナリオビルダー概要]]をご覧ください。 | シナリオに関する一般情報については、 [[Scenario-builder-reference-guide/ScenarioBuilderOverview|シナリオビルダー概要]]をご覧ください。 | ||
− | == | + | == シナリオフロー == |
− | + | このシナリオの目的は、音声対話から顧客満足度のフィードバックを求め、報告目的でこの情報を収集することです。それを行うには、次のシナリオブロックを使います: | |
− | * [[Scenario-builder-reference-guide/Menu| | + | * [[Scenario-builder-reference-guide/Menu|メニュー]] |
− | * [[Scenario-builder-reference-guide/SetVariable| | + | * [[Scenario-builder-reference-guide/SetVariable|変数の設定]] |
− | * [[Scenario-builder-reference-guide/CollectDigits| | + | * [[Scenario-builder-reference-guide/CollectDigits|数字の取得]] |
− | * [[Scenario-builder-reference-guide/SaveSurveyResponse| | + | * [[Scenario-builder-reference-guide/SaveSurveyResponse|調査回答の保存]] |
'''Designer's note''': This scenario is triggered when the [[Scenario-builder-reference-guide/StartAnotherScenario|Start Another Scenario]] block is invoked from the [[Scenario-builder-reference-guide/ConnectCall#Conditional_Exits|Target Disconnected]] conditional exit of a [[Scenario-builder-reference-guide/ConnectCall|Connect Call]] block in a different scenario. That is, the agent '''must''' be the one who ends the call, so it is advisable to have her ask the caller if they would like to participate in a survey and then instruct the caller to stay on the line. | '''Designer's note''': This scenario is triggered when the [[Scenario-builder-reference-guide/StartAnotherScenario|Start Another Scenario]] block is invoked from the [[Scenario-builder-reference-guide/ConnectCall#Conditional_Exits|Target Disconnected]] conditional exit of a [[Scenario-builder-reference-guide/ConnectCall|Connect Call]] block in a different scenario. That is, the agent '''must''' be the one who ends the call, so it is advisable to have her ask the caller if they would like to participate in a survey and then instruct the caller to stay on the line. |
Revision as of 16:12, 6 November 2019
音声シナリオの調査作成
調査は、会社、対象のトピックなどについてお客様からフィードバックを得るのに役立つツールです。
ここでは、顧客満足度に関するデータを収集する目的で音声シナリオ調査を作成する方法について説明します。このシナリオとコンタクトセンター管理者アプリケーションにある顧客調査テンプレートとは多少異なっています。
シナリオの例
音声シナリオの例(コメント付バージョン)をダウンロードするには、次のリンクをクリックしてください。
File:App Voice Scenario Survey.zip
このファイルをコンタクトセンターにインポートする方法については、コンタクトセンター管理者ガイドの
シナリオ概要 > シナリオのエクスポートとインポートをご覧ください。
シナリオに関する一般情報については、 シナリオビルダー概要をご覧ください。
シナリオフロー
このシナリオの目的は、音声対話から顧客満足度のフィードバックを求め、報告目的でこの情報を収集することです。それを行うには、次のシナリオブロックを使います:
Designer's note: This scenario is triggered when the Start Another Scenario block is invoked from the Target Disconnected conditional exit of a Connect Call block in a different scenario. That is, the agent must be the one who ends the call, so it is advisable to have her ask the caller if they would like to participate in a survey and then instruct the caller to stay on the line.
Please note this is an example scenario only and not intended for production use. All conditional exits should be defined with actions for production use.
Scenario Overview
The diagram shown illustrates what the complete scenario looks like when designed in the Scenario Builder application.
Action 1: Tell the Customer They Are Taking a Survey
This scenario begins after interaction with the agent ends, so you will want to inform the customer they have been directed to take a survey. In our example, the survey contains three questions, and we use the Play Prompt block to convey this point.
Action 2: Begin Collecting Information with the Menu Block
Next, you will configure a Menu block. In our example, we first configure the Prompt to play, which asks the customer if the problem they experienced was resolved and then instructs them to press a telephone key for their answer.
Next, we configure the telephone key valid options, which are actually conditional exits. In our example, we configure 1 to mean Resolved and 2 to be Not resolved.
Finally, we configure an Input timeout for 15 seconds, and the number of Retries to three. Doing this allows the scenario to proceed to the Exit block that follows the Menu block in the flow if no input happens within 45 seconds (i.e., the scenario will end).
Action 2a: Use the Set Variable Block to Pass Menu Values
If the customer has pressed either of the telephone key valid options, we want two things to happen:
- We want to collect the information about which key was pressed.
- We want the customer to answer the remaining two questions from our three-question survey.
In order to collect key information for each of the valid options, we use the Set Variable block. In both instances, we create a variable named first_call. On valid option 1, we set the value of first_call to 1, and on valid option 2, we set the value to 2. The variable first_call ultimately is passed to the Save Survey Response block and will collect the value corresponding to the option the customer choses.
After collecting the key information, we want the scenario to progress to the remaining two questions. This is accomplished by using Goto blocks to jump past the Exit block to the first of the two Collect Digits blocks.
Action 4: Use Collect Digits to Gather More Feedback
You will configure the remaining two questions in two separate Collect Digits blocks; in the scenario flow, these blocks execute consecutively.
Each Collect Digits block plays a prompt that asks a different question. In our example, the first Collect Digits block prompt asks the customer about the helpfulness of the agent and the second asks how likely they are to recommend our service.
Both blocks instruct the customer to enter numbers ranging from zero to 10 in order to answer the questions, so for each block, we configure the Max number of digits to expect to 2. Then, for the first block, we configure the Name of the variable to store the result as contact_satisfaction; for the second block, we configure the Name of the variable to store the result as NPS_raw.
Depending on the numbers the customer enters, both the contact_satisfaction variable and the NPS_raw variable pass the values to the Save Survey Response block.
Although the Collect Digits block does not allow you to configure conditional exits per configured option, like with the Menu block, it does contain regular conditional exits and timeout options that you can adjust to your liking.
Action 5: Collect All Responses in a Save Survey Response Block
Before ending the scenario, you will want all values collected in the variables you created to be saved; this is accomplished by entering the variable names in a Save Survey Response block. In our example, we enter the variables as follows:
- In the Issue was resolved field, we enter the variable from the Menu block, first_call.
- In the Contact satisfaction field, we enter the variable from the first Collect Digits block, contact_satisfaction.
- In the Net Promoter Score data field, we enter the variable from the second Collect Digits block, NPS_raw.
From here, the numbers the customer entered will be available for reports.
Action 6: Play a Prompt to Thank the Customer
Finally, after the customer answers all questions and the answers are recorded in the Save Survey Response block, we use the Play Prompt to thank them for participating in the survey then end the scenario with an Exit block.
Suggested Reading
In order to better understand the blocks and variables used in this scenario, we recommend reading the following articles:
- Scenario Builder Basics
- How to Create a Basic Scenario
- How to Create a Voice Scenario That Distributes Surveys to a Percentage of Random Customers
And finally, don't forget to save your work early and often!