phone.GetGroupCallJoinAs

class pyrogram.raw.functions.phone.GetGroupCallJoinAs

Get a list of peers that can be used to join a group call, presenting yourself as a specific user/channel.

Details:
  • Layer: 223

  • ID: EF7C213A

Parameters:

peer (InputPeer) – The dialog whose group call or livestream we’re trying to join

Returns:

phone.JoinAsPeers

TL Schema

phone.getGroupCallJoinAs#ef7c213a
peer:InputPeer

= phone.JoinAsPeers

Parameter Tree

GetGroupCallJoinAs
└── peerInputPeer
├── InputPeerEmpty
├── InputPeerSelf
├── InputPeerChat
│ └── chat_idlong
├── InputPeerUser
│ ├── user_idlong
│ └── access_hashlong
│ ├── channel_idlong
│ └── access_hashlong
│ ├── peerInputPeer
│ │ ├── InputPeerEmpty
│ │ ├── InputPeerSelf
│ │ ├── InputPeerChat
│ │ ├── InputPeerUser
│ │ ├── InputPeerChannel
│ │ ├── InputPeerUserFromMessage
│ │ └── InputPeerChannelFromMessage
│ ├── msg_idint
│ └── user_idlong
├── peerInputPeer
│ ├── InputPeerEmpty
│ ├── InputPeerSelf
│ ├── InputPeerChat
│ ├── InputPeerUser
│ ├── InputPeerChannel
├── msg_idint
└── channel_idlong

Example

await app.invoke(
    GetGroupCallJoinAs(
        peer=await app.resolve_peer(chat_id),
    )
)