Bitrix24 Data Storage API

The Data Storage API from Bitrix24 — 17 operation(s) for data storage.

Operations 17

POST /entity.add Create a Data Storage entity.add #
POST /entity.delete Delete Data Store entity.delete #
POST /entity.get Get Storage Parameters or List of Storages entity.get #
POST /entity.item.add Add Item to the Storage entity.item.add #
POST /entity.item.delete Delete Entity Storage Method: entity.item.delete #
POST /entity.item.get Get a List of Storage Items: entity.item.get #
POST /entity.item.property.add Add Property to Data Storage Elements entity.item.property.add #
POST /entity.item.property.delete Delete Property of Storage Elements entity.item.property.delete #
POST /entity.item.property.get Get Properties of Storage Elements entity.item.property.get #
POST /entity.item.property.update Update Property of Storage Elements entity.item.property.update #
POST /entity.item.update Update Entity Storage entity.item.update #
POST /entity.rights Get or Modify Access Permissions for entity.rights #
POST /entity.section.add Add Section to the entity.section.add Storage #
POST /entity.section.delete Delete the entity.section.delete method #
POST /entity.section.get Get a List of Sections with entity.section.get #
POST /entity.section.update Update the entity.section.update method #
POST /entity.update Change Parameters of entity.update #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/bitrix24-data-storage-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

bitrix24-data-storage-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Bitrix24 REST BIconnector Data Storage API
  version: 1.0.0
  description: 'Bitrix24 REST API provides access to CRM, tasks, drive, chats, telephony, e-commerce, automation, and other modules. Documentation: https://apidocs.bitrix24.com'
  contact:
    name: Bitrix24 Developer Support
    url: https://apidocs.bitrix24.com/support.html
  license:
    name: MIT
    url: https://github.com/bitrix-tools/b24-rest-docs/blob/main/LICENSE
  x-logo:
    url: https://apidocs.bitrix24.com/_images/bitrix24logo.svg
servers:
- url: https://{portal}.bitrix24.com/rest
  description: Your Bitrix24 portal (cloud)
  variables:
    portal:
      default: your-portal
      description: Subdomain of your Bitrix24 portal
- url: https://{host}/rest
  description: On-Premise Bitrix24 installation
  variables:
    host:
      default: your-bitrix24.example.com
      description: Host of your on-premise installation
security:
- AccessToken: []
tags:
- name: Data Storage
paths:
  /entity.add:
    post:
      summary: Create a Data Storage entity.add
      description: If you are developing integrations for Bitrix24 using AI tools (Codex, Claude Code, Cursor), connect to the [MCP server](../../../ai-tools/mcp.md) so that the assistant can utilize the official REST documentation. The `entity.add` method creates a new data storage for the application. The method works only in the context of the [application](../../../settings/app-installation/index.md).
      operationId: entity_add
      tags:
      - Data Storage
      externalDocs:
        url: https://apidocs.bitrix24.com/api-reference/entity/entities/entity-add.html
        description: Official Documentation
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                ACCESS:
                  type: object
                  description: '| Access permissions in the format `{"access_code":"permission_level"}`.'
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                ACCESS:
                  type: object
                  description: '| Access permissions in the format `{"access_code":"permission_level"}`.'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixResponse'
        4XX:
          description: Request error (400, 401, 403)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixError'
      security:
      - AccessToken: []
      - OAuth2:
        - entity
  /entity.delete:
    post:
      summary: Delete Data Store entity.delete
      description: If you are developing integrations for Bitrix24 using AI tools (Codex, Claude Code, Cursor), connect to the [MCP server](../../../ai-tools/mcp.md) so that the assistant can utilize the official REST documentation. The `entity.delete` method removes the application's data store. This method only works in the context of the [application](../../../settings/app-installation/index.md).
      operationId: entity_delete
      tags:
      - Data Storage
      externalDocs:
        url: https://apidocs.bitrix24.com/api-reference/entity/entities/entity-delete.html
        description: Official Documentation
      requestBody:
        content:
          application/json:
            schema:
              type: object
          application/x-www-form-urlencoded:
            schema:
              type: object
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixResponse'
        4XX:
          description: Request error (400, 401, 403)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixError'
      security:
      - AccessToken: []
      - OAuth2:
        - entity
  /entity.get:
    post:
      summary: Get Storage Parameters or List of Storages entity.get
      description: If you are developing integrations for Bitrix24 using AI tools (Codex, Claude Code, Cursor), connect to the [MCP server](../../../ai-tools/mcp.md) so that the assistant can utilize the official REST documentation. The `entity.get` method returns the parameters of the specified storage or a list of all storages of the application. The method works only in the context of the [application](../../../settings/app-installation/index.md).
      operationId: entity_get
      tags:
      - Data Storage
      externalDocs:
        url: https://apidocs.bitrix24.com/api-reference/entity/entities/entity-get.html
        description: Official Documentation
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                ENTITY:
                  type: string
                  description: '| Identifier of the application''s data storage. Use the value specified when creating the storage.'
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                ENTITY:
                  type: string
                  description: '| Identifier of the application''s data storage. Use the value specified when creating the storage.'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixResponse'
        4XX:
          description: Request error (400, 401, 403)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixError'
      security:
      - AccessToken: []
      - OAuth2:
        - entity
  /entity.item.add:
    post:
      summary: Add Item to the Storage entity.item.add
      description: If you are developing integrations for Bitrix24 using AI tools (Codex, Claude Code, Cursor), connect to the [MCP server](../../../ai-tools/mcp.md) so that the assistant can utilize the official REST documentation. The method `entity.item.add` adds an item to the application's data storage. The method works only in the context of the [application](../../../settings/app-installation/index.md).
      operationId: entity_item_add
      tags:
      - Data Storage
      externalDocs:
        url: https://apidocs.bitrix24.com/api-reference/entity/items/entity-item-add.html
        description: Official Documentation
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                NAME:
                  type: string
                  description: '| Name of the storage item. ||'
                PROPERTY_VALUES:
                  type: object
                  description: '| Property values of the item in the format `{"PROPERTY_CODE": value}`.'
                SECTION:
                  type: integer
                  description: '| Identifier of the storage section. ||'
                DATE_ACTIVE_FROM:
                  type: string
                  format: date-time
                  description: '| Start date of the item''s activity. ||'
                DATE_ACTIVE_TO:
                  type: string
                  format: date-time
                  description: '| End date of the item''s activity. ||'
                PREVIEW_PICTURE:
                  type: string
                  description: '| Preview image of the item. File format is described in the article How to Upload Files. ||'
                DETAIL_PICTURE:
                  type: string
                  description: '| Detailed image of the item. File format is described in the article How to Upload Files. ||'
                UF_:
                  type: string
                  description: '| Custom fields of the item `UF_*`.'
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                NAME:
                  type: string
                  description: '| Name of the storage item. ||'
                PROPERTY_VALUES:
                  type: object
                  description: '| Property values of the item in the format `{"PROPERTY_CODE": value}`.'
                SECTION:
                  type: integer
                  description: '| Identifier of the storage section. ||'
                DATE_ACTIVE_FROM:
                  type: string
                  format: date-time
                  description: '| Start date of the item''s activity. ||'
                DATE_ACTIVE_TO:
                  type: string
                  format: date-time
                  description: '| End date of the item''s activity. ||'
                PREVIEW_PICTURE:
                  type: string
                  description: '| Preview image of the item. File format is described in the article How to Upload Files. ||'
                DETAIL_PICTURE:
                  type: string
                  description: '| Detailed image of the item. File format is described in the article How to Upload Files. ||'
                UF_:
                  type: string
                  description: '| Custom fields of the item `UF_*`.'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixResponse'
        4XX:
          description: Request error (400, 401, 403)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixError'
      security:
      - AccessToken: []
      - OAuth2:
        - entity
  /entity.item.delete:
    post:
      summary: 'Delete Entity Storage Method: entity.item.delete'
      description: If you are developing integrations for Bitrix24 using AI tools (Codex, Claude Code, Cursor), connect to the [MCP server](../../../ai-tools/mcp.md) so that the assistant can utilize the official REST documentation. The `entity.item.delete` method removes an item from the application's data storage. This method works only within the context of an [application](../../../settings/app-installation/index.md).
      operationId: entity_item_delete
      tags:
      - Data Storage
      externalDocs:
        url: https://apidocs.bitrix24.com/api-reference/entity/items/entity-item-delete.html
        description: Official Documentation
      requestBody:
        content:
          application/json:
            schema:
              type: object
          application/x-www-form-urlencoded:
            schema:
              type: object
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixResponse'
        4XX:
          description: Request error (400, 401, 403)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixError'
      security:
      - AccessToken: []
      - OAuth2:
        - entity
  /entity.item.get:
    post:
      summary: 'Get a List of Storage Items: entity.item.get'
      description: If you are developing integrations for Bitrix24 using AI tools (Codex, Claude Code, Cursor), connect to the [MCP server](../../../ai-tools/mcp.md) so that the assistant can utilize the official REST documentation. The `entity.item.get` method retrieves a list of items from the application's data storage. This method works only in the context of an [application](../../../settings/app-installation/index.md).
      operationId: entity_item_get
      tags:
      - Data Storage
      externalDocs:
        url: https://apidocs.bitrix24.com/api-reference/entity/items/entity-item-get.html
        description: Official Documentation
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                SORT:
                  type: object
                  description: '| Object format:'
                FILTER:
                  type: object
                  description: '| Object format:'
                start:
                  type: integer
                  description: '| Pagination parameter.'
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                SORT:
                  type: object
                  description: '| Object format:'
                FILTER:
                  type: object
                  description: '| Object format:'
                start:
                  type: integer
                  description: '| Pagination parameter.'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixResponse'
        4XX:
          description: Request error (400, 401, 403)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixError'
      security:
      - AccessToken: []
      - OAuth2:
        - entity
  /entity.item.property.add:
    post:
      summary: Add Property to Data Storage Elements entity.item.property.add
      description: If you are developing integrations for Bitrix24 using AI tools (Codex, Claude Code, Cursor), connect to the [MCP server](../../../../ai-tools/mcp.md) so that the assistant can utilize the official REST documentation. The method `entity.item.property.add` adds a property to the elements of the application's data storage. The method works only in the context of the [application](../../../../settings/app-installation/index.md).
      operationId: entity_item_property_add
      tags:
      - Data Storage
      externalDocs:
        url: https://apidocs.bitrix24.com/api-reference/entity/items/properties/entity-item-property-add.html
        description: Official Documentation
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                NAME:
                  type: string
                  description: '| Name of the property ||'
                TYPE:
                  type: string
                  description: '| Type of the property:'
                SORT:
                  type: integer
                  description: '| Sorting index of the property ||'
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                NAME:
                  type: string
                  description: '| Name of the property ||'
                TYPE:
                  type: string
                  description: '| Type of the property:'
                SORT:
                  type: integer
                  description: '| Sorting index of the property ||'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixResponse'
        4XX:
          description: Request error (400, 401, 403)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixError'
      security:
      - AccessToken: []
      - OAuth2:
        - entity
  /entity.item.property.delete:
    post:
      summary: Delete Property of Storage Elements entity.item.property.delete
      description: If you are developing integrations for Bitrix24 using AI tools (Codex, Claude Code, Cursor), connect to the [MCP server](../../../../ai-tools/mcp.md) so that the assistant can utilize the official REST documentation. The method `entity.item.property.delete` removes a property from the application's data storage elements. The method works only in the context of the [application](../../../../settings/app-installation/index.md).
      operationId: entity_item_property_delete
      tags:
      - Data Storage
      externalDocs:
        url: https://apidocs.bitrix24.com/api-reference/entity/items/properties/entity-item-property-delete.html
        description: Official Documentation
      requestBody:
        content:
          application/json:
            schema:
              type: object
          application/x-www-form-urlencoded:
            schema:
              type: object
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixResponse'
        4XX:
          description: Request error (400, 401, 403)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixError'
      security:
      - AccessToken: []
      - OAuth2:
        - entity
  /entity.item.property.get:
    post:
      summary: Get Properties of Storage Elements entity.item.property.get
      description: If you are developing integrations for Bitrix24 using AI tools (Codex, Claude Code, Cursor), connect to the [MCP server](../../../../ai-tools/mcp.md) so that the assistant can utilize the official REST documentation. The method `entity.item.property.get` returns the properties of the application's data storage elements. The method works only in the context of the [application](../../../../settings/app-installation/index.md).
      operationId: entity_item_property_get
      tags:
      - Data Storage
      externalDocs:
        url: https://apidocs.bitrix24.com/api-reference/entity/items/properties/entity-item-property-get.html
        description: Official Documentation
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                PROPERTY:
                  type: string
                  description: '| Property code.'
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                PROPERTY:
                  type: string
                  description: '| Property code.'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixResponse'
        4XX:
          description: Request error (400, 401, 403)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixError'
      security:
      - AccessToken: []
      - OAuth2:
        - entity
  /entity.item.property.update:
    post:
      summary: Update Property of Storage Elements entity.item.property.update
      description: If you are developing integrations for Bitrix24 using AI tools (Codex, Claude Code, Cursor), connect to the [MCP server](../../../../ai-tools/mcp.md) so that the assistant can utilize the official REST documentation. The method `entity.item.property.update` modifies the property of elements in the application's data storage. The method works only in the context of the [application](../../../../settings/app-installation/index.md).
      operationId: entity_item_property_update
      tags:
      - Data Storage
      externalDocs:
        url: https://apidocs.bitrix24.com/api-reference/entity/items/properties/entity-item-property-update.html
        description: Official Documentation
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                PROPERTY_NEW:
                  type: string
                  description: '| New property code.'
                NAME:
                  type: string
                  description: '| New property name. ||'
                TYPE:
                  type: string
                  description: '| New property type:'
                SORT:
                  type: integer
                  description: '| Property sort index. ||'
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                PROPERTY_NEW:
                  type: string
                  description: '| New property code.'
                NAME:
                  type: string
                  description: '| New property name. ||'
                TYPE:
                  type: string
                  description: '| New property type:'
                SORT:
                  type: integer
                  description: '| Property sort index. ||'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixResponse'
        4XX:
          description: Request error (400, 401, 403)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixError'
      security:
      - AccessToken: []
      - OAuth2:
        - entity
  /entity.item.update:
    post:
      summary: Update Entity Storage entity.item.update
      description: If you are developing integrations for Bitrix24 using AI tools (Codex, Claude Code, Cursor), connect to the [MCP server](../../../ai-tools/mcp.md) so that the assistant can utilize the official REST documentation. The method works only in the context of the [application](../../../settings/app-installation/index.md).
      operationId: entity_item_update
      tags:
      - Data Storage
      externalDocs:
        url: https://apidocs.bitrix24.com/api-reference/entity/items/entity-item-update.html
        description: Official Documentation
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                NAME:
                  type: string
                  description: '| New name of the storage item ||'
                PROPERTY_VALUES:
                  type: object
                  description: '| Property values of the item in the format `{"PROPERTY_CODE": value}`.'
                SECTION:
                  type: integer
                  description: '| Identifier of the storage section ||'
                DATE_ACTIVE_FROM:
                  type: string
                  format: date-time
                  description: '| Start date of the item''s activity ||'
                DATE_ACTIVE_TO:
                  type: string
                  format: date-time
                  description: '| End date of the item''s activity ||'
                PREVIEW_PICTURE:
                  type: string
                  description: '| Preview image of the item. File format is described in the article How to Upload Files.'
                DETAIL_PICTURE:
                  type: string
                  description: '| Detailed image of the item. File format is described in the article How to Upload Files.'
                UF_:
                  type: string
                  description: '| Custom fields of the item `UF_*`.'
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                NAME:
                  type: string
                  description: '| New name of the storage item ||'
                PROPERTY_VALUES:
                  type: object
                  description: '| Property values of the item in the format `{"PROPERTY_CODE": value}`.'
                SECTION:
                  type: integer
                  description: '| Identifier of the storage section ||'
                DATE_ACTIVE_FROM:
                  type: string
                  format: date-time
                  description: '| Start date of the item''s activity ||'
                DATE_ACTIVE_TO:
                  type: string
                  format: date-time
                  description: '| End date of the item''s activity ||'
                PREVIEW_PICTURE:
                  type: string
                  description: '| Preview image of the item. File format is described in the article How to Upload Files.'
                DETAIL_PICTURE:
                  type: string
                  description: '| Detailed image of the item. File format is described in the article How to Upload Files.'
                UF_:
                  type: string
                  description: '| Custom fields of the item `UF_*`.'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixResponse'
        4XX:
          description: Request error (400, 401, 403)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixError'
      security:
      - AccessToken: []
      - OAuth2:
        - entity
  /entity.rights:
    post:
      summary: Get or Modify Access Permissions for entity.rights
      description: If you are developing integrations for Bitrix24 using AI tools (Codex, Claude Code, Cursor), connect to the [MCP server](../../../ai-tools/mcp.md) so that the assistant can utilize the official REST documentation. The `entity.rights` method retrieves the current set of access permissions for the application's data storage or modifies it. The method works only in the context of the [application](../../../settings/app-installation/index.md).
      operationId: entity_rights
      tags:
      - Data Storage
      externalDocs:
        url: https://apidocs.bitrix24.com/api-reference/entity/entities/entity-rights.html
        description: Official Documentation
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                ACCESS:
                  type: object
                  description: '| A new set of permissions in the format `{"access_code":"access_level"}`.'
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                ACCESS:
                  type: object
                  description: '| A new set of permissions in the format `{"access_code":"access_level"}`.'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixResponse'
        4XX:
          description: Request error (400, 401, 403)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixError'
      security:
      - AccessToken: []
      - OAuth2:
        - entity
  /entity.section.add:
    post:
      summary: Add Section to the entity.section.add Storage
      description: If you are developing integrations for Bitrix24 using AI tools (Codex, Claude Code, Cursor), connect to the [MCP server](../../../ai-tools/mcp.md) so that the assistant can utilize the official REST documentation. The `entity.section.add` method adds a section to the application's data storage. The method works only in the context of the [application](../../../settings/app-installation/index.md).
      operationId: entity_section_add
      tags:
      - Data Storage
      externalDocs:
        url: https://apidocs.bitrix24.com/api-reference/entity/sections/entity-section-add.html
        description: Official Documentation
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                SECTION:
                  type: integer
                  description: '| Identifier of the parent section. ||'
                ACTIVE:
                  type: string
                  description: '| Section activity flag:'
                SORT:
                  type: integer
                  description: '| Section sorting index. ||'
                CODE:
                  type: string
                  description: '| Symbolic code of the section. ||'
                DESCRIPTION:
                  type: string
                  description: '| Description of the section. ||'
                PICTURE:
                  type: string
                  description: '| Section image. File format — as described in How to upload files. ||'
                DETAIL_PICTURE:
                  type: string
                  description: '| Detailed image of the section. File format — as described in How to upload files. ||'
                UF_:
                  type: object
                  description: '| Custom fields of the section `UF_*` in the format `{"UF_CODE": value}` ||'
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                SECTION:
                  type: integer
                  description: '| Identifier of the parent section. ||'
                ACTIVE:
                  type: string
                  description: '| Section activity flag:'
                SORT:
                  type: integer
                  description: '| Section sorting index. ||'
                CODE:
                  type: string
                  description: '| Symbolic code of the section. ||'
                DESCRIPTION:
                  type: string
                  description: '| Description of the section. ||'
                PICTURE:
                  type: string
                  description: '| Section image. File format — as described in How to upload files. ||'
                DETAIL_PICTURE:
                  type: string
                  description: '| Detailed image of the section. File format — as described in How to upload files. ||'
                UF_:
                  type: object
                  description: '| Custom fields of the section `UF_*` in the format `{"UF_CODE": value}` ||'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixResponse'
        4XX:
          description: Request error (400, 401, 403)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixError'
      security:
      - AccessToken: []
      - OAuth2:
        - entity
  /entity.section.delete:
    post:
      summary: Delete the entity.section.delete method
      description: If you are developing integrations for Bitrix24 using AI tools (Codex, Claude Code, Cursor), connect to the [MCP server](../../../ai-tools/mcp.md) so that the assistant can utilize the official REST documentation. The `entity.section.delete` method removes a section from the application's data storage. The method works only in the context of the [application](../../../settings/app-installation/index.md).
      operationId: entity_section_delete
      tags:
      - Data Storage
      externalDocs:
        url: https://apidocs.bitrix24.com/api-reference/entity/sections/entity-section-delete.html
        description: Official Documentation
      requestBody:
        content:
          application/json:
            schema:
              type: object
          application/x-www-form-urlencoded:
            schema:
              type: object
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixResponse'
        4XX:
          description: Request error (400, 401, 403)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BitrixError'
      security:
      - AccessToken: []
      - OAuth2:
        - entity
  /entity.section.get:
    post:
      summary: Get a List of Sections with entity.section.get
      description: If you are developing integrations for Bitrix24 using AI tools (Codex, Claude Code, Cursor), connect to the [MCP server](../../../ai-tools/mcp.md) so the assistant can utilize the official REST documentation. The `entity.section.get` method retrieves a list of sections from the application's data storage. The method works only in the context of an [applicati

# --- truncated at 32 KB (43 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/bitrix24/refs/heads/main/openapi/bitrix24-data-storage-api-openapi.yml