MadelineProto/old_docs/API_docs_v38/constructors/inputPeerChannel.md

988 B

title description
inputPeerChannel inputPeerChannel attributes, type and example

Constructor: inputPeerChannel

Back to constructors index

Attributes:

Name Type Required
channel_id int Required
access_hash long Required

Type: InputPeer

Example:

$inputPeerChannel = ['_' => 'inputPeerChannel', 'channel_id' => int, 'access_hash' => long, ];

The following syntaxes can also be used:

$inputPeerChannel = '@username'; // Username

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

$inputPeerChannel = 'user#44700'; // tg-cli style id (users)
$inputPeerChannel = 'chat#492772765'; // tg-cli style id (chats)
$inputPeerChannel = 'channel#38575794'; // tg-cli style id (channels)