Layer 220
ContactsBlock
Adds a peer to a blocklist, see here for more info.
method
Users
contacts.block#2e2e8734 flags:# my_stories_from:flags.0?true id:InputPeer = Bool;
Parameters
| Name | Type | Description |
|---|---|---|
| Flags | # | Flags, see TL conditional fields |
| MyStoriesFrom | flags.0?true | Whether the peer should be added to the story blocklist; if not set, the peer will be added to the main blocklist, see here for more info. |
| Id | InputPeer | Peer |
Returns
BoolPossible Errors
| Code | Type | Description |
|---|---|---|
| 400 | CHANNEL_PRIVATE | You haven't joined this channel/supergroup. |
| 400 | CONTACT_ID_INVALID | The provided contact ID is invalid. |
| 400 | INPUT_USER_DEACTIVATED | The specified user was deleted. |
| 400 | MSG_ID_INVALID | Invalid message ID provided. |
| 400 | PEER_ID_INVALID | The provided peer id is invalid. |
Gogram Example
// ContactsBlock - using Params struct result, err := client.ContactsBlock(&tg.ContactsBlockParams{ Id: &tg.InputPeerUser{UserID: int64(123456789)}, // Optional fields: // MyStoriesFrom: true, }) if err != nil { // handle error } // result is *tg.Bool