How do I create custom commands such as /catalog, /pricing, or /support so that when a user types them, the bot opens a specific flow?
Scenarios & Nodes
September 07, 2026
How do I create custom bot commands like /catalog or /help?
Best answer
You can define custom commands in two ways:
Method 1: Using the Command Node in Scenarios (Recommended)
- In your scenario canvas, drag a Command trigger node from the left palette.
- Click the Command node and specify the command name without the leading slash (e.g.,
catalogorhelp). - Connect the output port of the Command node to the Message or Action node you want to trigger.
- Click Publish. Whenever a user sends
/catalog, this scenario flow will execute.
Method 2: Registering Commands in Telegram's Menu
- Go to Bot Settings → Commands.
- Click Add Command, enter the command name (e.g.,
catalog) and a short description (e.g., "Browse our product catalog"). - Save changes. TeleGo will automatically synchronize the command list with Telegram, making it visible in the user's
/popup menu next to the chat input field.
Your answer
You need to log in to ask a question.
Log in