phone.ToggleGroupCallStartSubscription

class pyrogram.raw.functions.phone.ToggleGroupCallStartSubscription

Subscribe or unsubscribe to a scheduled group call

Details:
  • Layer: 223

  • ID: 219C34E6

Parameters:
  • call (InputGroupCall) – Scheduled group call

  • subscribed (bool) – Enable or disable subscription

Returns:

Updates

TL Schema

phone.toggleGroupCallStartSubscription#219c34e6
call:InputGroupCall
subscribed:Bool

= Updates

Parameter Tree

ToggleGroupCallStartSubscription
├── callInputGroupCall
│ ├── InputGroupCall
│ │ ├── idlong
│ │ └── access_hashlong
│ ├── InputGroupCallSlug
│ │ └── slugstring
│ └── msg_idint
└── subscribedBool

Example

await app.invoke(
    ToggleGroupCallStartSubscription(
        call=InputGroupCall(
            id=0,
            access_hash=0
        ),
        subscribed=True,
    )
)