phone.StartScheduledGroupCall

class pyrogram.raw.functions.phone.StartScheduledGroupCall

Start a scheduled group call.

Details:
  • Layer: 223

  • ID: 5680E342

Parameters:

call (InputGroupCall) – The scheduled group call

Returns:

Updates

TL Schema

phone.startScheduledGroupCall#5680e342
call:InputGroupCall

= Updates

Parameter Tree

StartScheduledGroupCall
└── callInputGroupCall
├── InputGroupCall
│ ├── idlong
│ └── access_hashlong
│ └── slugstring
└── msg_idint

Example

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