ReplyKeyboardMarkup in Telegram

(Роман Кириллов) #1

Hi, help me to make such a keyboard

(Daniel Beckett) #2

@romir

It looks like that is using Telegram’s Inline Keyboard. You can use our Make a Custom Request to add this to your bot, here’s some sample code to help you out:

{
"chat_id": "{{bot_new_message.channel_id}}",
"text": "Hello World",
"reply_markup": {
            "inline_keyboard": [
                    [{
			"text": "test2",
                            "switch_inline_query": "chat"
		}],
                    [{
			"text": "test3",
			"url": "https://community.flowxo.com/t/telegram-inline-button-in-robots/1247/4"
		}]
            ]
}

}