Layer 227
method Users Bots
messages.deleteParticipantReaction#e3b7f82c peer:InputPeer msg_id:int participant:InputPeer = Updates;

Parameters

Name Type Description
Peer InputPeer The group or channel where the message is located
MsgId int ID of the message whose reactions should be removed
Participant InputPeer The participant whose reactions should be removed from the message

Returns

Updates

Gogram Example

// MessagesDeleteParticipantReaction - positional arguments
result, err := client.MessagesDeleteParticipantReaction(&tg.InputPeerUser{UserID: int64(777000)}, 42, &tg.InputPeerUser{UserID: int64(777000)})
if err != nil {
    // handle error
}
// result is *tg.Updates

Possible Errors

Code Type Description
400 PEER_ID_INVALID The provided peer id is invalid.