1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-02 22:05:37 +02:00
Vitaly the Alpaca (bot) 00dfbc52ee Main build (Jenkins)
2024-10-12 15:46:40 +03:00

957 B

sidebar_position
9

Get file block

Make file block for SendMessage method

Function GetFileBlock(Val Name, Val URL) Export

Parameter CLI option Type Description
Name --title String Picture name
URL --url String File URL

Returns: Structure - FileBlock


:::tip Blocks at API documentation: Link :::

    Name = "Image";
    URL  = "https://api.athenaeum.digital/test_data/document.docx";

    Result = OPI_Bitrix24.GetFileBlock(Name, URL);
    
  oint bitrix24 GetFileBlock --title %title% --url %url%

{
 "FILE": {
  "NAME": "Image",
  "LINK": "https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/document.docx"
 }
}