Data Storage Sections: Overview of Methods

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.

Data storage sections help group elements within the application and build a hierarchy.

The group of methods entity.section.* allows you to create sections, retrieve their list, modify parameters, and delete unnecessary ones.

Quick Navigation: All Methods

Section methods only work in the context of the application.

Getting Started

  1. Obtain the storage identifier using the entity.get method.
  2. If a hierarchy is needed in the storage, create the first section using the entity.section.add method.
  3. Retrieve the list of sections and their identifiers using the entity.section.get method.
  4. Modify the section parameters using the entity.section.update method.
  5. Delete the unnecessary section using the entity.section.delete method.

Relationship with Other Objects

Data Storage. Each method in the group works with a specific data storage of the application. For this, the ENTITY parameter is passed to the methods — the identifier of the storage. You can obtain it using the entity.get method.

Storage Elements. Sections are used to group elements. To work with elements, use the entity.item.* methods.

Parent Section. In the entity.section.add and entity.section.update methods, you can specify the SECTION parameter to create a nested section or move a section inside another.

Overview of Methods

Scope: entity

Who can execute the method: depending on the method

Method

Description

entity.section.add

Adds a data storage section

entity.section.update

Updates a data storage section

entity.section.get

Retrieves the list of data storage sections

entity.section.delete

Deletes a data storage section