--- sidebar_position: 5 description: Download file and other functions to work with Telegram in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, Telegram] --- import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; # Download file Download file from Telegram servers `Function DownloadFile(Val Token, Val FileID) Export` | Parameter | CLI option | Type | Required | Description | |-|-|-|-|-| | Token | --token | String | ✔ | Token | | FileID | --fileid | String | ✔ | File ID for downloading | Returns: BinaryData - file's binary data
:::tip Method at API documentation: [getFile](https://core.telegram.org/bots/api#getfile) :::
```bsl title="1C:Enterprise/OneScript code example" FileID = "CQACAgIAAx0EcNsaZQACTj1otafA9qOMeepy5tr0PRhcriTDswACt4AAAsO6qUksrgZAK0QmsjYE"; Token = "6129457865:AAFyzNYOAFbu..."; Result = OPI_Telegram.DownloadFile(Token, FileID); ``` ```bash oint telegram DownloadFile \ --token "***" \ --fileid "CQACAgIAAx0EcNsaZQACSsxodoTPLSoyTUCkpeFpEk6bQA7T5QACfHIAAqvHsUsNlCP3ZG_-BzYE" ``` ```batch oint telegram DownloadFile ^ --token "***" ^ --fileid "CQACAgIAAx0EcNsaZQACSsxodoTPLSoyTUCkpeFpEk6bQA7T5QACfHIAAqvHsUsNlCP3ZG_-BzYE" ``` ```json title="Result" NOT JSON: 49 44 33 03 00 00 00 05 1F 76 54 49 54 32 00 00 00 0B 00 00 01 FF FE 44 00 6F 00 67 00 73 00 54 50 45 31 00 00 00 15 00 00 01 FF FE 4D 00 6F 00 74 00 6F 00 72 00 68 00 65 00 61 00 64 00 54 59… ```