25 lines
653 B
Markdown
25 lines
653 B
Markdown
---
|
|
title: request_secret_chat
|
|
description: request_secret_chat parameters, return type and example
|
|
---
|
|
## Method: request_secret_chat
|
|
|
|
|
|
### Parameters:
|
|
|
|
| Name | Type |
|
|
|----------|---------------|
|
|
|id| A username, a bot API chat id, a tg-cli chat id, a [User](API_docs/types/User.md), an [InputPeer](API_docs/types/InputPeer.md), an [InputUser](API_docs/types/InputUser.md), a [Peer](API_docs/types/Peer.md)|
|
|
|
|
### Return type: Number
|
|
|
|
Returns the secret chat ID
|
|
|
|
### Example ([now fully async!](https://docs.madelineproto.xyz/docs/ASYNC.html)):
|
|
|
|
|
|
```php
|
|
$secret_chat_id = yield $MadelineProto->request_secret_chat('@danogentili');
|
|
```
|
|
|