phone.ExportGroupCallInvite

class pyrogram.raw.functions.phone.ExportGroupCallInvite

Get an invite link for a group call or livestream

Details:
  • Layer: 223

  • ID: E6AA647F

Parameters:
  • call (InputGroupCall) – The group call

  • can_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:

phone.ExportedGroupCallInvite

TL Schema

phone.exportGroupCallInvite#e6aa647f
flags:#
can_self_unmute:flags.0?true
call:InputGroupCall

= phone.ExportedGroupCallInvite

Parameter Tree

ExportGroupCallInvite
├── can_self_unmutetrue (optional)
└── callInputGroupCall
├── InputGroupCall
│ ├── idlong
│ └── access_hashlong
│ └── slugstring
└── msg_idint

Example

await app.invoke(
    ExportGroupCallInvite(
        can_self_unmute=None,
        call=InputGroupCall(
            id=0,
            access_hash=0
        ),
    )
)