Layer 227
PhoneSendGroupCallEncryptedMessage
Send an E 2 E-encrypted message or emoji reaction to all participants of a conference call. This method can only be used with conferences; see here for the serialization and encryption process.
method
Users
phone.sendGroupCallEncryptedMessage#e5afa56d call:InputGroupCall encrypted_message:bytes = Bool;
Parameters
| Name | Type | Description |
|---|---|---|
| Call | InputGroupCall | Conference call that should receive the encrypted message or reaction |
| EncryptedMessage | bytes | Complete encrypted message or reaction packet produced as specified here |
Returns
BoolGogram Example
// PhoneSendGroupCallEncryptedMessage - positional arguments result, err := client.PhoneSendGroupCallEncryptedMessage(&tg.InputGroupCall{}, []byte{0x01, 0x02, 0x03}) if err != nil { // handle error } // result is *tg.Bool
Possible Errors
| Code | Type | Description |
|---|---|---|
| 400 | GROUPCALL_INVALID | The specified group call is invalid. |