Layer 227
method Users
phone.deleteConferenceCallParticipants#8ca60525 flags:# only_left:flags.0?true kick:flags.1?true call:InputGroupCall ids:Vector<long> block:bytes = Updates;

Parameters

Name Type Description
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 Conference from which to remove participants
Ids Vector < long > User IDs to remove from the conference and E 2 E blockchain
Block bytes Main-chain block removing the specified users and establishing a new shared key, see removing a participant

Returns

Updates

Gogram Example

// PhoneDeleteConferenceCallParticipants - positional arguments
result, err := client.PhoneDeleteConferenceCallParticipants(nil, nil, &tg.InputGroupCall{}, &tg.VectorLong{}, []byte{0x01, 0x02, 0x03})
if err != nil {
    // handle error
}
// result is *tg.Updates

Possible Errors

Code Type Description
400 GROUPCALL_INVALID The specified group call is invalid.