bi
1C-Bitrix CMS это ведущая в России content management system для e-commerce и corporate websites. Its REST API предоставляет access to product catalogs (iblock), orders, и section structures.
С помощью 1C-Bitrix CMS интеграции в AACFlow можно:
- Получить products: Получить products from information blocks с optional filters
- Получить orders: Получить customer orders с status и customer details
- Получить sections: Список catalog sections и subcategories
Эта интеграция позволяет automated content synchronization и order management для 1C-Bitrix website owners.
Инструкции по использованию
Интегрируйте 1C-Bitrix CMS в рабочий процесс. Требуется базовый URL вашей Bitrix site, an administrator login, и password. Basic authentication — это used. Enable REST API in Settings → Services → REST API in your Bitrix admin panel.
Инструменты
bitrix_cms_get_products
Получить products from an information block
Входные параметры
| Параметр | Тип | Обязательный | Описание |
|---|---|---|---|
baseUrl | string | Да | 1C-Bitrix site base URL |
login | string | Да | Administrator login |
password | string | Да | Administrator password |
iblockId | string | Нет | Information block ID |
limit | number | Нет | Maximum products to return |
offset | number | Нет | Pagination offset |
filter | string | Нет | Filter JSON expression |
Выходные данные
| Параметр | Тип | Описание |
|---|---|---|
products | array | Массив product objects |
total | number | Total product count |
bitrix_cms_get_orders
Получить orders from the store
Входные параметры
| Параметр | Тип | Обязательный | Описание |
|---|---|---|---|
baseUrl | string | Да | 1C-Bitrix site base URL |
login | string | Да | Administrator login |
password | string | Да | Administrator password |
limit | number | Нет | Maximum orders to return |
offset | number | Нет | Pagination offset |
Выходные данные
| Параметр | Тип | Описание |
|---|---|---|
orders | array | Массив order objects |
total | number | Total orders count |
bitrix_cms_get_sections
Получить catalog sections
Входные параметры
| Параметр | Тип | Обязательный | Описание |
|---|---|---|---|
baseUrl | string | Да | 1C-Bitrix site base URL |
login | string | Да | Administrator login |
password | string | Да | Administrator password |
iblockId | string | Нет | Information block ID |
Выходные данные
| Параметр | Тип | Описание |
|---|---|---|
sections | array | Массив section objects |
Ссылки
- Official API: https://dev.1c-bitrix.ru/rest_help/
- AACFlow block source: apps/aacflow/blocks/blocks/bitrix_cms.ts

