FAQs
How to...?
...start a conversation with a welcome / intro message?
You will need behavior rules and an outputset for that.
For the behavior rules, you have three possibilities (ordered by recommendation):
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?
(Think of a form-like behavior, asking a couple of questions and sending these results somewhere.)
Check whether a certain action had been triggered in the previous conversation step.
action had been triggered in the previous conversation step.Have a question that is not covered? Drop us an email at [email protected], we are happy to enhance our documentation!
Last updated
Was this helpful?