`guildCreate` event doesn't give the discord user ID who added a bot inside guild except super admin

When the guildCreate event is triggered, I am only able to retrieve the ownerId of the guild. However, when a moderator adds the guild, the moderator's ID is not provided. Is there a method available to obtain the Discord user ID of that particular moderator?

  client.on('guildCreate', (guild) => {
    console.log(guild.ownerId) // returned only owner discord id
  });


v14.3.0
Was this page helpful?