Link Search Menu Expand Document

Type: InputPeer

Back to types index

You can directly provide the Update or Message object here, MadelineProto will automatically extract the destination chat id.

The following syntaxes can also be used:

$InputPeer = '@username'; // Username

$InputPeer = $update; // Update objects received in the event handler

$InputPeer = 'me'; // The currently logged-in user

$InputPeer = 44700; // bot API id (users)
$InputPeer = -492772765; // bot API id (chats)
$InputPeer = -10038575794; // bot API id (channels)

$InputPeer = 'https://t.me/danogentili'; // t.me URLs
$InputPeer = 'https://t.me/joinchat/asfln1-21fa_'; // t.me invite links

You can also provide one of the following objects, instead, MadelineProto will handle conversion automatically:

Possible values (constructors):

inputPeerEmpty

inputPeerSelf

inputPeerChat

inputPeerUser

inputPeerChannel

inputPeerUserFromMessage

inputPeerChannelFromMessage

Methods that return an object of this type (methods):