Main Content Area of Configurable Activity

Choose a tool for developing with an AI agent:

  • use Alaio Vibecode to build an app for Bitrix24 from a task description without knowing any programming language. The agent writes the code and deploys the app to a server, with no manual hosting setup
  • use the MCP server to develop a REST API integration in your own project. The agent refers to the official REST documentation

BodyDto is the main content area of the timeline entry.

Parameters of the BodyDto Object

Required parameters are marked with *

Field

Description

logo*
LogoDto

An object describing the logo of the timeline entry

blocks
ContentBlockDto

An associative array of objects describing content blocks

Warning

The array must contain at least one element and no more than 20 elements.

LogoDtoObject

Logo of the timeline entry.

Parameters of the LogoDto Object

Required parameters are marked with *

Field

Description

code*
string

Logo code, for example call. A list of available codes can be obtained using the crm.timeline.logo.list method

action
ActionDto

Action to be taken when the logo is clicked

Example Object (Without Content Blocks)

{
            "body": {
                "logo": {
                    "code": "call-incoming",
                    "action": {
                        "type": "redirect",
                        "uri": "/crm/deal/details/123/"
                    }
                },
                "blocks": {
        
                }
            },
        }
        

Continue Learning