getCallbackQuery(); $callback_data = $callback_query->getData(); return $callback_query->answer([ 'text' => 'Content of the callback data: ' . $callback_data, 'show_alert' => (bool) random_int(0, 1), // Randomly show (or not) as an alert. 'cache_time' => 5, ]); } }