want to send group invitation link to their users .using telegram bot , bot is an admin of a group

*i have a group,and i added a bot in the group .now i want , bot sends the invitation link to the respective users, with phone no. i will provide to the bot . how it is achievable and it is possible or not ?
*

const GROUP_INVITE_LINK = 'https://t.me/ddgef1'; 

const replyWithIntro = async (ctx) => {
  // const chatId = ctx.update.message.chat.id;
  const message = ctx.update.message.text;
  const introductionMessage = `Hello ${ctx.update.message.from.first_name}! I'm a Telegram bot.
          I'm powered by person, the next-generation serverless computing platform.
          Please Enter your query `;
    
  if (message === "/start") {
    ctx.reply(introductionMessage,{
      parse_mode: "HTML",
    });