Layer 220
PhoneDeleteConferenceCallParticipants
Remove participants from a conference call.
method
Users
Parameters
| Name | Type | Description |
|---|---|---|
| Flags | # | Flags, see TL conditional fields |
| OnlyLeft | flags.0?true | Whether this is a removal of members that already left the conference call. |
| Kick | flags.1?true | Whether this is a forced removal of active members in a conference call. |
| Call | InputGroupCall | The conference call. |
| Ids | Vector<long> | IDs of users to remove. |
| Block | bytes | The block containing an appropriate e 2 e. chain. change Set Group State event |
Returns
UpdatesPossible Errors
| Code | Type | Description |
|---|---|---|
| 400 | GROUPCALL_INVALID | The specified group call is invalid. |
Gogram Example
// PhoneDeleteConferenceCallParticipants - using Params struct result, err := client.PhoneDeleteConferenceCallParticipants(&tg.PhoneDeleteConferenceCallParticipantsParams{ Call: &tg.InputGroupCall{}, Ids: []long{}, Block: []byte{}, // Optional fields: // OnlyLeft: true, // Kick: true, }) if err != nil { // handle error } // result is *tg.Updates