channels.GetLeftChannels

class pyrogram.raw.functions.channels.GetLeftChannels

Get a list of channels/supergroups we left, requires a takeout session, see here » for more info.

Details:
  • Layer: 223

  • ID: 8341ECC0

Parameters:

offset (int 32-bit) – Offset for pagination

Returns:

messages.Chats

TL Schema

channels.getLeftChannels#8341ecc0
offset:int

= messages.Chats

Parameter Tree

GetLeftChannels
└── offsetint

Example

await app.invoke(
    GetLeftChannels(
        offset=0,
    )
)