phone.InviteConferenceCallParticipant
- class pyrogram.raw.functions.phone.InviteConferenceCallParticipant
Invite a user to a conference call.
- Details:
Layer:
223ID:
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:
TL Schema
phone.inviteConferenceCallParticipant#bcf22685
flags:#
video:flags.0?true
call:InputGroupCall
user_id:InputUser
= Updates
Parameter Tree
InviteConferenceCallParticipant
├── video →
true (optional)├── call →
InputGroupCall│ ├──
InputGroupCall│ │ ├── id →
long│ │ └── access_hash →
long│ ├──
InputGroupCallSlug│ │ └── slug →
string│ └── msg_id →
int└── user_id →
InputUser├──
InputUserEmpty├──
InputUserSelf├──
InputUser│ ├── user_id →
long│ └── access_hash →
long├── peer →
InputPeer│ ├──
InputPeerEmpty│ ├──
InputPeerSelf│ ├──
InputPeerChat│ ├──
InputPeerUser│ ├──
InputPeerChannel│ ├──
InputPeerUserFromMessage├── msg_id →
int└── user_id →
longExample
await app.invoke(
InviteConferenceCallParticipant(
video=None,
call=InputGroupCall(
id=0,
access_hash=0
),
user_id=await app.resolve_user(chat_id),
)
)