Hi,
The issue is that the runMenu action isn't configured properly. You're missing the `mainMenu` property that tells what menu to run first.
%{
instructions: [
%{
name: "say",
text: "Bonjour, passé une agréable journée",
locale: "Gabrielle"
}
],
action: %{
name: "runMenu",
locale: "Gabrielle",
mainMenu: "main",
menus: [
%{
id: "main",
mainPrompt: "Bonjour, passé une agréable journée, faites le 1 ou le 2",
repeats: 3,
options: [
%{dtmf: 1, action: "return(callee_one)"},
%{dtmf: 2, action: "return(callee_two)"}
]
}
]
}
}
Thanks,
... View more