Data Storage Elements: 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 elements hold application information. They can store core fields, property values, and links to sections.
The group of methods entity.item.* allows you to create elements, retrieve their list, modify parameters, and delete unnecessary ones.
Quick navigation: all methods
Methods in this section work only in the context of the application.
Getting Started
-
Obtain the storage identifier using the entity.get method.
-
If sections are used in the storage, get the section identifier using the entity.section.get method.
-
If additional fields are needed for the elements, create properties or retrieve a list of existing properties and their codes using the entity.item.property.* methods.
-
Create the first element using the entity.item.add method.
-
Retrieve the list of elements and their identifiers using the entity.item.get method.
-
Modify the element parameters using the entity.item.update method.
-
Delete the unnecessary element using the entity.item.delete method.
Relationship with Other Objects
Data Storage. Each method in the group works with a specific data storage of the application. To work with storages, use the entity.* methods.
Storage Sections. An element can be linked to a section via the SECTION parameter. To work with sections, use the entity.section.* methods.
Element Properties. Additional data for the element is passed in the PROPERTY_VALUES parameter. To work with properties, use the entity.item.property.* methods.
Overview of Methods
Scope:
entityWho can execute the method: depending on the method
|
Method |
Description |
|
Adds a data storage element |
|
|
Updates a data storage element |
|
|
Retrieves a list of data storage elements |
|
|
Deletes a data storage element |