IMAGE Block
If you are developing integrations for Bitrix24 using AI tools (Codex, Claude Code, Cursor), connect to the MCP server so that the assistant can utilize the official REST documentation.
The IMAGE block displays one or more images within an attachment.

Block Parameters
|
Name |
Description |
|
LINK* |
URL of the original image |
|
NAME |
Name of the image |
|
PREVIEW |
URL of the thumbnail version of the image. If not specified, the |
|
WIDTH |
Width of the image in pixels. It is recommended to provide this along with |
|
HEIGHT |
Height of the image in pixels. It is recommended to provide this along with |
Example
How to Use Examples in Documentation
{
IMAGE: [
{
NAME: 'This is Mantis',
LINK: 'https://files.shelenkov.com/bitrix/images/mantis.jpg',
PREVIEW: 'https://files.shelenkov.com/bitrix/images/mantis.jpg',
WIDTH: 1000,
HEIGHT: 638
}
]
}
[
'IMAGE' => [
[
'NAME' => 'This is Mantis',
'LINK' => 'https://files.shelenkov.com/bitrix/images/mantis.jpg',
'PREVIEW' => 'https://files.shelenkov.com/bitrix/images/mantis.jpg',
'WIDTH' => 1000,
'HEIGHT' => 638
]
]
]