FAQs
How to...?
...start a conversation with a welcome / intro message?
1) Match for the action CONVERSATION_START
CONVERSATION_START{
"behaviorGroups": [
{
"name": "Onboarding",
"behaviorRules": [
{
"name": "Welcome",
"actions": [
"welcome"
],
"conditions": [
{
"type": "actionmatcher",
"configs": {
"actions": "CONVERSATION_START"
}
}
]
}
]
}
]
}2) check if the triggered action has never be triggered before
3) Check how often this rule has succeeded before.
Outputset:
...say something based on what the bot previously said?
Check whether a certain action had been triggered in the previous conversation step.
action had been triggered in the previous conversation step.Last updated
Was this helpful?