phone.InviteConferenceCallParticipant

class pyrogram.raw.functions.phone.InviteConferenceCallParticipant

Invite a user to a conference call.

Details:
  • Layer: 223

  • ID: BCF22685

Parameters:
  • call (InputGroupCall) – The conference call.

  • user_id (InputUser) – The user to invite.

  • video (bool, optional) – Invite the user to also turn on their video feed.

Returns:

Updates

TL Schema

phone.inviteConferenceCallParticipant#bcf22685
flags:#
video:flags.0?true
call:InputGroupCall
user_id:InputUser

= Updates

Parameter Tree

InviteConferenceCallParticipant
├── videotrue (optional)
├── callInputGroupCall
│ ├── InputGroupCall
│ │ ├── idlong
│ │ └── access_hashlong
│ ├── InputGroupCallSlug
│ │ └── slugstring
│ └── msg_idint
└── user_idInputUser
├── InputUserEmpty
├── InputUserSelf
├── InputUser
│ ├── user_idlong
│ └── access_hashlong
├── peerInputPeer
│ ├── InputPeerEmpty
│ ├── InputPeerSelf
│ ├── InputPeerChat
│ ├── InputPeerUser
│ ├── InputPeerChannel
├── msg_idint
└── user_idlong

Example

await app.invoke(
    InviteConferenceCallParticipant(
        video=None,
        call=InputGroupCall(
            id=0,
            access_hash=0
        ),
        user_id=await app.resolve_user(chat_id),
    )
)