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 | Required | Description | 
|---|---|---|---|---|
| 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, Structure Of KeyAndValue | ✖ | Keyboard. See FormKeyboardFromButtonArray | 
| Markup | --parsemode | String | ✖ | Text processing type (HTML, Markdown, MarkdownV2) | 
Returns: Map Of KeyAndValue - serialized JSON response from Telegram
tip
Method at API documentation: sendPhoto
Parameters with Binary data type can also accept file paths on disk and URLs
1C:Enterprise/OneScript code example
    Token     = "6129457865:AAFyzNYOAFbu...";
    ChatID    = "461699897";
    ChannelID = "@testsichee";
    Text      = "Строковое значение";
    Image     = "https://hut.openintegrations.dev/test_data/picture.jpg";
    ImagePath = GetTempFileName("png");
    CopyFile(Image, ImagePath);
    ImageDD = New BinaryData(ImagePath);
    // In chat, by URL
    Result = OPI_Telegram.SendImage(Token, ChatID, Text, Image);
    // To channel, on disk
    Result = OPI_Telegram.SendImage(Token, ChannelID, Text, ImagePath);
    // To channel, from binary data
    Result = OPI_Telegram.SendImage(Token, ChannelID, Text, ImageDD);
- Bash
- CMD/Bat
    # JSON data can also be passed as a path to a .json file
    
    oint telegram SendImage \
     --token "***" \
     --chat "@testsichee" \
     --text "Строковое значение" \
     --picture "https://hut.openintegrations.dev/test_data/picture.jpg" \
     --keyboard "{'inline_keyboard':[[{'text':'Button1','callback_data':'Button1'}],[{'text':'Button2','callback_data':'Button2'}],[{'text':'Button3','callback_data':'Button3'}]],'rows':'1'}"
    :: JSON data can also be passed as a path to a .json file
    
    oint telegram SendImage ^
     --token "***" ^
     --chat "@testsichee" ^
     --text "Строковое значение" ^
     --picture "https://hut.openintegrations.dev/test_data/picture.jpg" ^
     --keyboard "{'inline_keyboard':[[{'text':'Button1','callback_data':'Button1'}],[{'text':'Button2','callback_data':'Button2'}],[{'text':'Button3','callback_data':'Button3'}]],'rows':'1'}"
Result
{
 "ok": true,
 "result": {
  "message_id": 17744,
  "from": {
   "id": 6129457865,
   "is_bot": true,
   "first_name": "Бот Виталий",
   "username": "sicheebot"
  },
  "chat": {
   "id": 461699897,
   "first_name": "Anton",
   "last_name": "Titovets",
   "username": "bayselonarrend",
   "type": "private"
  },
  "date": 1761909042,
  "photo": [
   {
    "file_id": "AgACAgIAAxkDAAJDlGj8qc1B91BiqhJhGAJrM2u0yJmDAALw9zEborvpS7N-L5L1PXT9AQADAgADcwADNgQ",
    "file_unique_id": "AQAD8PcxG6K76Ut4",
    "file_size": 1568,
    "width": 90,
    "height": 67
   },
   {
    "file_id": "AgACAgIAAxkDAAJDlGj8qc1B91BiqhJhGAJrM2u0yJmDAALw9zEborvpS7N-L5L1PXT9AQADAgADbQADNgQ",
    "file_unique_id": "AQAD8PcxG6K76Uty",
    "file_size": 21633,
    "width": 320,
    "height": 240
   },
   {
    "file_id": "AgACAgIAAxkDAAJDlGj8qc1B91BiqhJhGAJrM2u0yJmDAALw9zEborvpS7N-L5L1PXT9AQADAgADeAADNgQ",
    "file_unique_id": "AQAD8PcxG6K76Ut9",
    "file_size": 99260,
    "width": 800,
    "height": 600
   },
   {
    "file_id": "AgACAgIAAxkDAAJDlGj8qc1B91BiqhJhGAJrM2u0yJmDAALw9zEborvpS7N-L5L1PXT9AQADAgADeQADNgQ",
    "file_unique_id": "AQAD8PcxG6K76Ut-",
    "file_size": 218651,
    "width": 1280,
    "height": 960
   },
   {
    "file_id": "AgACAgIAAxkDAAJDlGj8qc1B91BiqhJhGAJrM2u0yJmDAALw9zEborvpS7N-L5L1PXT9AQADAgADdwADNgQ",
    "file_unique_id": "AQAD8PcxG6K76Ut8",
    "file_size": 650214,
    "width": 2560,
    "height": 1920
   }
  ],
  "caption": "Строковое значение"
 }
}