--- sidebar_position: 2 --- # Send image Sends an image to a chat or channel *Function SendImage(Val Token, Val ChatID, Val Text, Val Image, Val Keyboard = "", Val Markup = "Markdown") Export* | Parameter | CLI option | Type | Destination | |-|-|-|-| | Token | --token | String | Bot token | | ChatID | --chat | String, Number | Target chat ID or ChatID*TopicID | | Text | --text | String | Message text | | Image | --picture | BinaryData,String | Image file | | Keyboard | --keyboard | String | Keyboard JSON or path to .json | | Markup | --parsemode | String | Text processing type (HTML, Markdown, MarkdownV2) | Returns: Key-Value Pair - Serialized JSON response from Telegram ```bsl title="Code example" Token = "6129457865:AAFyzNYOAFbu..."; ChatID = "461699897"; ChannelID = "@testsichee"; Text = "String value"; Image = "https://openintegrations.dev/test_data/picture.jpg"; ImagePath = GetTempFileName("png"); CopyFile(Image, ImagePath); ImageDD = New BinaryData(ImagePath); Result = OPI_Telegram.SendImage(Token, ChatID, Text, Image); Result = OPI_Telegram.SendImage(Token, ChannelID, Text, ImagePath); Result = OPI_Telegram.SendImage(Token, ChannelID, Text, ImageDD); ``` ```sh title="CLI command example" oint telegram SendImage --token "6129457865:AAFyzNYOAFbu..." --chat "461699897" --text "String value" --picture "https://openintegrations.dev/test_data/picture.jpg" --keyboard %keyboard% --parsemode %parsemode% ``` ```json title="Result" { "ok": true, "result": { "message_id": 4639, "from": { "id": 6129457865, "is_bot": true, "first_name": "Vitaly The Bot", "username": "sicheebot" }, "chat": { "id": 461699897, "first_name": "Anton", "last_name": "Titowets", "username": "JKIee", "type": "private" }, "date": 1717072364, "photo": [ { "file_id": "AgACAgIAAxkDAAISH2ZYcewv1LaJnVI1E6pdq0EyR0QJAAKa2TEbvv6xSgxyd39G8AuyAQADAgADcwADNQQ", "file_unique_id": "AQADmtkxG77-sUp4", "file_size": 1568, "width": 90, "height": 67 }, { "file_id": "AgACAgIAAxkDAAISH2ZYcewv1LaJnVI1E6pdq0EyR0QJAAKa2TEbvv6xSgxyd39G8AuyAQADAgADbQADNQQ", "file_unique_id": "AQADmtkxG77-sUpy", "file_size": 21633, "width": 320, "height": 240 }, { "file_id": "AgACAgIAAxkDAAISH2ZYcewv1LaJnVI1E6pdq0EyR0QJAAKa2TEbvv6xSgxyd39G8AuyAQADAgADeAADNQQ", "file_unique_id": "AQADmtkxG77-sUp9", "file_size": 99260, "width": 800, "height": 600 }, { "file_id": "AgACAgIAAxkDAAISH2ZYcewv1LaJnVI1E6pdq0EyR0QJAAKa2TEbvv6xSgxyd39G8AuyAQADAgADeQADNQQ", "file_unique_id": "AQADmtkxG77-sUp-", "file_size": 218651, "width": 1280, "height": 960 }, { "file_id": "AgACAgIAAxkDAAISH2ZYcewv1LaJnVI1E6pdq0EyR0QJAAKa2TEbvv6xSgxyd39G8AuyAQADAgADdwADNQQ", "file_unique_id": "AQADmtkxG77-sUp8", "file_size": 650214, "width": 2560, "height": 1920 } ], "caption": "String value" } } ```