Layer 220
ChatlistsDeleteExportedInvite
Delete a previously created chat folder deep link.
method
Users
chatlists.deleteExportedInvite#719c5c5e chatlist:InputChatlist slug:string = Bool;
Parameters
| Name | Type | Description |
|---|---|---|
| Chatlist | InputChatlist | The related folder |
| Slug | string | slug obtained from the chat folder deep link. |
Returns
BoolPossible Errors
| Code | Type | Description |
|---|---|---|
| 400 | FILTER_ID_INVALID | The specified filter ID is invalid. |
| 400 | FILTER_NOT_SUPPORTED | The specified filter cannot be used in this context. |
| 400 | INVITE_SLUG_EXPIRED | The specified chat folder link has expired. |
| 400 | INVITE_SLUG_INVALID | The specified invitation slug is invalid. |
Gogram Example
// ChatlistsDeleteExportedInvite - positional arguments result, err := client.ChatlistsDeleteExportedInvite(&tg.InputChatlist{}, "...") if err != nil { // handle error } // result is *tg.Bool