phone.GetGroupCall

class pyrogram.raw.functions.phone.GetGroupCall

Get info about a group call

Details:
  • Layer: 223

  • ID: 41845DB

Parameters:
  • call (InputGroupCall) – The group call

  • limit (int 32-bit) – Maximum number of results to return, see pagination

Returns:

phone.GroupCall

TL Schema

phone.getGroupCall#41845db
call:InputGroupCall
limit:int

= phone.GroupCall

Parameter Tree

GetGroupCall
├── callInputGroupCall
│ ├── InputGroupCall
│ │ ├── idlong
│ │ └── access_hashlong
│ ├── InputGroupCallSlug
│ │ └── slugstring
│ └── msg_idint
└── limitint

Example

await app.invoke(
    GetGroupCall(
        call=InputGroupCall(
            id=0,
            access_hash=0
        ),
        limit=0,
    )
)