channels.GetFullChannel

class pyrogram.raw.functions.channels.GetFullChannel

Get full info about a supergroup, gigagroup or channel

Details:
  • Layer: 223

  • ID: 8736A09

Parameters:

channel (InputChannel) – The channel, supergroup or gigagroup to get info about

Returns:

messages.ChatFull

TL Schema

channels.getFullChannel#8736a09
channel:InputChannel

= messages.ChatFull

Parameter Tree

GetFullChannel
└── channelInputChannel
├── InputChannel
│ ├── channel_idlong
│ └── access_hashlong
├── peerInputPeer
│ ├── InputPeerEmpty
│ ├── InputPeerSelf
│ ├── InputPeerChat
│ ├── InputPeerUser
│ ├── InputPeerChannel
├── msg_idint
└── channel_idlong

Example

await app.invoke(
    GetFullChannel(
        channel=await app.resolve_channel(chat_id),
    )
)