Skip to main content

chatlists.getExportedInvites

List all chat folder deep links » associated to a folder

func (c *Client) ChatlistsGetExportedInvites(ctx context.Context, chatlist InputChatlistDialogFilter) (*ChatlistsExportedInvites, error)

Calling this method

client.Run(ctx, func(ctx context.Context) error {
api := client.API()

res, err := api.ChatlistsGetExportedInvites(ctx, chatlist)
if err != nil {
return err
}
_ = res // *ChatlistsExportedInvites
return nil
})

Parameters

NameTypeRequiredDescription
ChatlistInputChatlistDialogFilteryesThe folder

Returns

*ChatlistsExportedInvites

Possible errors

CodeTypeDescription
400FILTER_ID_INVALIDThe specified filter ID is invalid.

References