Missing permission on creating channel

Bot is able to create category but fails when creating channel.
I have give manage Channel permission to bot.
here is apiece of code which i use
await guild.channels.create({
  name: "Online Players: " + details.online,
  type: ChannelType.GuildText,
  parent: catogory.id,
  permissionOverwrites: [
    {
      id: m.guild.id,
      deny: [],
    },
  ],
});
Was this page helpful?