Bitrix24 BIconnector API

The BIconnector API from Bitrix24 — 19 operation(s) for biconnector.

OpenAPI Specification

bitrix24-biconnector-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: Bitrix24 REST BIconnector 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: BIconnector
paths:
  /biconnector.connector.add:
    post:
      summary: Create Connector biconnector.connector.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 `biconnector.connector.add` creates a new connector that allows integrating external data sources into Bitrix24.
      operationId: biconnector_connector_add
      tags:
      - BIconnector
      externalDocs:
        url: https://apidocs.bitrix24.com/api-reference/biconnector/connector/biconnector-connector-add.html
        description: Official Documentation
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                fields:
                  type: object
                  description: '| An object containing data to create a new connector. The object format:'
                title:
                  type: string
                  description: '| Connector name ||'
                logo:
                  type: string
                  description: '| Connector logo. Can be provided as a link to an image or a base64 formatted string, for example `data:image/svg+xml;base64,PHN2ZyB3...` ||'
                description:
                  type: string
                  description: '| Connector description ||'
                urlCheck:
                  type: string
                  description: '| Connector endpoint for availability check, (detailed description) ||'
                urlTableList:
                  type: string
                  description: '| Connector endpoint for retrieving the list of tables, (detailed description) ||'
                urlTableDescription:
                  type: string
                  description: '| Connector endpoint for retrieving the description of a specific table, (detailed description) ||'
                urlData:
                  type: string
                  description: '| Connector endpoint for retrieving data from the selected table, (detailed description) ||'
                settings:
                  type: array
                  items: {}
                  description: '| List of connection parameters, (detailed description) ||'
                sort:
                  type: integer
                  description: '| Connector sorting parameter. Default value is `100` ||'
              required:
              - fields
              - title
              - logo
              - urlCheck
              - urlTableList
              - urlTableDescription
              - urlData
              - settings
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                fields:
                  type: object
                  description: '| An object containing data to create a new connector. The object format:'
                title:
                  type: string
                  description: '| Connector name ||'
                logo:
                  type: string
                  description: '| Connector logo. Can be provided as a link to an image or a base64 formatted string, for example `data:image/svg+xml;base64,PHN2ZyB3...` ||'
                description:
                  type: string
                  description: '| Connector description ||'
                urlCheck:
                  type: string
                  description: '| Connector endpoint for availability check, (detailed description) ||'
                urlTableList:
                  type: string
                  description: '| Connector endpoint for retrieving the list of tables, (detailed description) ||'
                urlTableDescription:
                  type: string
                  description: '| Connector endpoint for retrieving the description of a specific table, (detailed description) ||'
                urlData:
                  type: string
                  description: '| Connector endpoint for retrieving data from the selected table, (detailed description) ||'
                settings:
                  type: array
                  items: {}
                  description: '| List of connection parameters, (detailed description) ||'
                sort:
                  type: integer
                  description: '| Connector sorting parameter. Default value is `100` ||'
              required:
              - fields
              - title
              - logo
              - urlCheck
              - urlTableList
              - urlTableDescription
              - urlData
              - settings
      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:
        - biconnector
  /biconnector.connector.delete:
    post:
      summary: Delete Connector biconnector.connector.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 `biconnector.connector.delete` removes an existing connector. A connector can be deleted if it has no sources.
      operationId: biconnector_connector_delete
      tags:
      - BIconnector
      externalDocs:
        url: https://apidocs.bitrix24.com/api-reference/biconnector/connector/biconnector-connector-delete.html
        description: Official Documentation
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                id:
                  type: integer
                  description: '| Identifier of the connector, can be obtained using the methods biconnector.connector.list and biconnector.connector.add ||'
              required:
              - id
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                id:
                  type: integer
                  description: '| Identifier of the connector, can be obtained using the methods biconnector.connector.list and biconnector.connector.add ||'
              required:
              - id
      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:
        - biconnector
  /biconnector.connector.fields:
    post:
      summary: Get Connector Fields biconnector.connector.fields
      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 `biconnector.connector.fields` returns a description of the connector fields. A table with the description of standard fields can be found in the article [Connector: Overview of Methods](./index.md#fields).'
      operationId: biconnector_connector_fields
      tags:
      - BIconnector
      externalDocs:
        url: https://apidocs.bitrix24.com/api-reference/biconnector/connector/biconnector-connector-fields.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:
        - biconnector
  /biconnector.connector.get:
    post:
      summary: Get Connector by ID biconnector.connector.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 `biconnector.connector.get` returns information about the connector by its identifier.
      operationId: biconnector_connector_get
      tags:
      - BIconnector
      externalDocs:
        url: https://apidocs.bitrix24.com/api-reference/biconnector/connector/biconnector-connector-get.html
        description: Official Documentation
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                id:
                  type: integer
                  description: '| The identifier of the connector, which can be obtained using the methods biconnector.connector.list and biconnector.connector.add ||'
              required:
              - id
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                id:
                  type: integer
                  description: '| The identifier of the connector, which can be obtained using the methods biconnector.connector.list and biconnector.connector.add ||'
              required:
              - id
      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:
        - biconnector
  /biconnector.connector.list:
    post:
      summary: Get the list of connectors biconnector.connector.list
      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 `biconnector.connector.list` returns a list of connectors based on a filter. It is an implementation of the list method for connectors.
      operationId: biconnector_connector_list
      tags:
      - BIconnector
      externalDocs:
        url: https://apidocs.bitrix24.com/api-reference/biconnector/connector/biconnector-connector-list.html
        description: Official Documentation
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                select:
                  type: string
                  description: '| List of fields that must be filled in the connectors in the selection. By default, all fields are taken ||'
                filter:
                  type: object
                  description: '| Filter for selecting connectors. Example format:'
                order:
                  type: object
                  description: '| Sorting parameters. Example format:'
                page:
                  type: integer
                  description: '| Controls pagination. The page size of results is 50 records. To navigate through results, pass the page number'
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                select:
                  type: string
                  description: '| List of fields that must be filled in the connectors in the selection. By default, all fields are taken ||'
                filter:
                  type: object
                  description: '| Filter for selecting connectors. Example format:'
                order:
                  type: object
                  description: '| Sorting parameters. Example format:'
                page:
                  type: integer
                  description: '| Controls pagination. The page size of results is 50 records. To navigate through results, pass the page number'
      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:
        - biconnector
  /biconnector.connector.update:
    post:
      summary: Update the biconnector.connector.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 `biconnector.connector.update` updates an existing connector.
      operationId: biconnector_connector_update
      tags:
      - BIconnector
      externalDocs:
        url: https://apidocs.bitrix24.com/api-reference/biconnector/connector/biconnector-connector-update.html
        description: Official Documentation
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                id:
                  type: integer
                  description: '| Connector identifier, can be obtained using the methods biconnector.connector.list and biconnector.connector.add ||'
                fields:
                  type: object
                  description: '| An object containing the updated data. The object format:'
                title:
                  type: string
                  description: '| New connector name ||'
                logo:
                  type: string
                  description: '| New connector logo. Can be passed as a link to an image or a base64 formatted string, for example `data:image/svg+xml;base64,PHN2ZyB3...` ||'
                description:
                  type: string
                  description: '| New connector description ||'
                urlCheck:
                  type: string
                  description: '| New endpoint for checking the connector''s availability, (detailed description) ||'
                urlTableList:
                  type: string
                  description: '| New endpoint for obtaining the list of tables, (detailed description) ||'
                urlTableDescription:
                  type: string
                  description: '| New endpoint for obtaining the description of a specific table, (detailed description) ||'
                urlData:
                  type: string
                  description: '| New endpoint for obtaining data from the selected table, (detailed description)  ||'
                settings:
                  type: array
                  items: {}
                  description: '| New list of connection parameters, (detailed description) ||'
                sort:
                  type: integer
                  description: '| New sorting parameter for the connector ||'
              required:
              - id
              - fields
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                id:
                  type: integer
                  description: '| Connector identifier, can be obtained using the methods biconnector.connector.list and biconnector.connector.add ||'
                fields:
                  type: object
                  description: '| An object containing the updated data. The object format:'
                title:
                  type: string
                  description: '| New connector name ||'
                logo:
                  type: string
                  description: '| New connector logo. Can be passed as a link to an image or a base64 formatted string, for example `data:image/svg+xml;base64,PHN2ZyB3...` ||'
                description:
                  type: string
                  description: '| New connector description ||'
                urlCheck:
                  type: string
                  description: '| New endpoint for checking the connector''s availability, (detailed description) ||'
                urlTableList:
                  type: string
                  description: '| New endpoint for obtaining the list of tables, (detailed description) ||'
                urlTableDescription:
                  type: string
                  description: '| New endpoint for obtaining the description of a specific table, (detailed description) ||'
                urlData:
                  type: string
                  description: '| New endpoint for obtaining data from the selected table, (detailed description)  ||'
                settings:
                  type: array
                  items: {}
                  description: '| New list of connection parameters, (detailed description) ||'
                sort:
                  type: integer
                  description: '| New sorting parameter for the connector ||'
              required:
              - id
              - fields
      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:
        - biconnector
  /biconnector.dataset.add:
    post:
      summary: Create Dataset biconnector.dataset.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 `biconnector.dataset.add` creates a new dataset associated with a data source.
      operationId: biconnector_dataset_add
      tags:
      - BIconnector
      externalDocs:
        url: https://apidocs.bitrix24.com/api-reference/biconnector/dataset/biconnector-dataset-add.html
        description: Official Documentation
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                fields:
                  type: object
                  description: '| An object containing data to create a new dataset. The object format is:'
                name:
                  type: string
                  description: '| The name of the dataset. The name must start with a letter and can only use lowercase Latin letters `a-z`, numbers, and the underscore `_`. The maximum length of the name is 230 characters. ||'
                externalName:
                  type: string
                  description: '| The name of the dataset in the external source, in the application. ||'
                externalCode:
                  type: string
                  description: '| A unique code for the dataset in the external source, used when retrieving data. ||'
                sourceId:
                  type: integer
                  description: '| The identifier of the source, which can be obtained using the methods biconnector.source.list or biconnector.source.add. ||'
                description:
                  type: string
                  description: '| Description of the dataset. ||'
              required:
              - fields
              - name
              - externalName
              - externalCode
              - sourceId
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                fields:
                  type: object
                  description: '| An object containing data to create a new dataset. The object format is:'
                name:
                  type: string
                  description: '| The name of the dataset. The name must start with a letter and can only use lowercase Latin letters `a-z`, numbers, and the underscore `_`. The maximum length of the name is 230 characters. ||'
                externalName:
                  type: string
                  description: '| The name of the dataset in the external source, in the application. ||'
                externalCode:
                  type: string
                  description: '| A unique code for the dataset in the external source, used when retrieving data. ||'
                sourceId:
                  type: integer
                  description: '| The identifier of the source, which can be obtained using the methods biconnector.source.list or biconnector.source.add. ||'
                description:
                  type: string
                  description: '| Description of the dataset. ||'
              required:
              - fields
              - name
              - externalName
              - externalCode
              - sourceId
      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:
        - biconnector
  /biconnector.dataset.delete:
    post:
      summary: Delete dataset biconnector.dataset.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 `biconnector.dataset.delete` removes an existing dataset.
      operationId: biconnector_dataset_delete
      tags:
      - BIconnector
      externalDocs:
        url: https://apidocs.bitrix24.com/api-reference/biconnector/dataset/biconnector-dataset-delete.html
        description: Official Documentation
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                id:
                  type: integer
                  description: '| Identifier of the dataset, can be obtained using the methods biconnector.dataset.list or biconnector.dataset.add ||'
              required:
              - id
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                id:
                  type: integer
                  description: '| Identifier of the dataset, can be obtained using the methods biconnector.dataset.list or biconnector.dataset.add ||'
              required:
              - id
      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:
        - biconnector
  /biconnector.dataset.fields:
    post:
      summary: Get Fields of the Dataset biconnector.dataset.fields
      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 `biconnector.dataset.fields` returns a description of the dataset fields. A table with descriptions of standard fields can be found in the article [Datasets: Overview of Methods](./index.md#dataset).'
      operationId: biconnector_dataset_fields
      tags:
      - BIconnector
      externalDocs:
        url: https://apidocs.bitrix24.com/api-reference/biconnector/dataset/biconnector-dataset-fields.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:
        - biconnector
  /biconnector.dataset.fields.update:
    post:
      summary: Update Dataset Fields biconnector.dataset.fields.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 `biconnector.dataset.fields.update` updates the fields of an existing dataset.
      operationId: biconnector_dataset_fields_update
      tags:
      - BIconnector
      externalDocs:
        url: https://apidocs.bitrix24.com/api-reference/biconnector/dataset/biconnector-dataset-fields-update.html
        description: Official Documentation
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                id:
                  type: integer
                  description: '| Identifier of the dataset, can be obtained using the methods biconnector.dataset.list or biconnector.dataset.add ||'
                add:
                  type: object
                  description: '| Object containing an array of fields to be added with the following structure:'
                update:
                  type: object
                  description: '| Object containing an array of fields to be updated with the following structure:'
                delete:
                  type: string
                  description: '| Object containing an array of field identifiers for deletion. Field identifiers can be obtained using the method biconnector.dataset.get ||'
              required:
              - id
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                id:
                  type: integer
                  description: '| Identifier of the dataset, can be obtained using the methods biconnector.dataset.list or biconnector.dataset.add ||'
                add:
                  type: object
                  description: '| Object containing an array of fields to be added with the following structure:'
                update:
                  type: object
                  description: '| Object containing an array of fields to be updated with the following structure:'
                delete:
                  type: string
                  description: '| Object containing an array of field identifiers for deletion. Field identifiers can be obtained using the method biconnector.dataset.get ||'
              required:
              - id
      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:
        - biconnector
  /biconnector.dataset.get:
    post:
      summary: Get dataset by id biconnector.dataset.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 `biconnector.dataset.get` returns information about a dataset by its identifier.
      operationId: biconnector_dataset_get
      tags:
      - BIconnector
      externalDocs:
        url: https://apidocs.bitrix24.com/api-reference/biconnector/dataset/biconnector-dataset-get.html
        description: Official Documentation
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                id:
                  type: integer
                  description: '| Identifier of the dataset, which can be obtained using the methods biconnector.dataset.list and biconnector.dataset.add ||'
              required:
              - id
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                id:
                  type: integer
                  description: '| Identifier of the dataset, which can be obtained using the methods biconnector.dataset.list and biconnector.dataset.add ||'
              required:
              - id
      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:
        - biconnector
  /biconnector.dataset.list:
    post:
      summary: Get the list of datasets biconnector.dataset.list
      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 `biconnector.dataset.list` returns a list of datasets based on a filter. It is an implementation of the listing method for datasets.
      operationId: biconnector_dataset_list
      tags:
      - BIconnector
      externalDocs:
        url: https://apidocs.bitrix24.com/api-reference/biconnector/dataset/biconnector-dataset-list.html
        description: Official Documentation
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                select:
           

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