MadelineProtoDocs/docs/getPwrChat.md

27 lines
1.0 KiB
Markdown
Raw Permalink Normal View History

2024-05-01 14:53:46 +02:00
---
title: getPwrChat
description: getPwrChat parameters, return type and example
redirect_from: /get_pwr_chat.html
grand_parent: "Telegram RPC API"
parent: "Methods"
---
## Method: getPwrChat
### Parameters:
| Name | Type |
|----------|---------------|
2024-05-23 18:25:50 +02:00
|id| A username, a bot API chat id, a [Chat](API_docs/types/Chat.html), a [User](API_docs/types/User.html), an [InputPeer](API_docs/types/InputPeer.html), an [InputUser](API_docs/types/InputUser.html), an [InputChannel](API_docs/types/InputChannel.html), a [Peer](API_docs/types/Peer.html), or a [Chat](API_docs/types/Chat.html) object|
2024-05-01 14:53:46 +02:00
|fullfetch| Optional, a boolean that if set to true (the default) fetches full info (chat photo, invite link, bot info, common_chats_count, phone_calls_available, phone_calls_private, can_set_username, can_view_participants, participants)|
### Return type: [PWRTelegram Chat](Chat.html)
### Example ([now fully async!](https://docs.madelineproto.xyz/docs/ASYNC.html)):
```php
$Chat = $MadelineProto->getPwrChat($id);
```