How can I show buttons as options on conversation?

I have a chatbot already made in Automation AI and I would like to make that bot but in the agent platform, there are some processes where the user can choose an option among those they have and I have done this with buttons, for example, if the user has 3 properties, 3 buttons are shown to choose and they do not have to write, how could I show these options if I am using an agentic app?

You should be able to do this via a user prompt in your entity task.

Here is a general example…
var message = {
“type”: “template”,
“payload”: {
“template_type”: “button”,
“text”: “I am unable to find an answer. Please choose one of the following options:”,
“buttons”: [
{
“type”: “postback”,
“title”: “Locate”,
“payload”: “Locator”
},
{
“type”: “postback”,
“title”: “Product”,
“payload”: "Product "
}
]
}
};
print(JSON.stringify(message));

Hope this helps.