JoinGroupCallPresentationRequest
Only users can use this request. See code examples.
---functions--- phone.joinGroupCallPresentation#cbea6bc4 call:InputGroupCall params:DataJSON = Updates
Returns
Updates |
This type can be an instance of either:
UpdateShort | UpdateShortChatMessage |
UpdateShortMessage | UpdateShortSentMessage |
Updates | UpdatesCombined |
UpdatesTooLong |
Parameters
call | InputGroupCall | |
params | DataJSON |
Known RPC errors
This request can cause 1 known error:
ParticipantJoinMissingError | Trying to enable a presentation, when the user hasn't joined the Video Chat with [phone.joinGroupCall](https://core.telegram.org/method/phone.joinGroupCall). |
You can import these from telethon.errors
.
Example
from telethon.sync import TelegramClient from telethon import functions, types with TelegramClient(name, api_id, api_hash) as client: result = client(functions.phone.JoinGroupCallPresentationRequest( call=types.InputGroupCall( id=-12398745604826, access_hash=-12398745604826 ), params=types.DataJSON( data='some string here' ) )) print(result.stringify())