phone.ExportGroupCallInvite
- class pyrogram.raw.functions.phone.ExportGroupCallInvite
Get an invite link for a group call or livestream
- Details:
Layer:
223ID:
E6AA647F
- Parameters:
call (
InputGroupCall) – The group callcan_self_unmute (
bool, optional) – For livestreams or muted group chats, if set, users that join using this link will be able to speak without explicitly requesting permission by (for example by raising their hand).
- Returns:
TL Schema
phone.exportGroupCallInvite#e6aa647f
flags:#
can_self_unmute:flags.0?true
call:InputGroupCall
= phone.ExportedGroupCallInvite
Parameter Tree
ExportGroupCallInvite
├── can_self_unmute →
true (optional)└── call →
InputGroupCallExample
await app.invoke(
ExportGroupCallInvite(
can_self_unmute=None,
call=InputGroupCall(
id=0,
access_hash=0
),
)
)