1C-Bitrix CMS
Access products, orders, and sections from 1C-Bitrix CMS via REST API
bi
1C-Bitrix CMS is Russia's leading content management system for e-commerce and corporate websites. Its REST API provides access to product catalogs (iblock), orders, and section structures.
With the 1C-Bitrix CMS integration in AACFlow, you can:
- Get products: Retrieve products from information blocks with optional filters
- Get orders: Retrieve customer orders with status and customer details
- Get sections: List catalog sections and subcategories
This integration enables automated content synchronization and order management for 1C-Bitrix website owners.
Usage Instructions
Integrate 1C-Bitrix CMS into the workflow. Requires the base URL of your Bitrix site, an administrator login, and password. Basic authentication is used. Enable REST API in Settings → Services → REST API in your Bitrix admin panel.
Tools
bitrix_cms_get_products
Get products from an information block
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
baseUrl | string | Yes | 1C-Bitrix site base URL |
login | string | Yes | Administrator login |
password | string | Yes | Administrator password |
iblockId | string | No | Information block ID |
limit | number | No | Maximum products to return |
offset | number | No | Pagination offset |
filter | string | No | Filter JSON expression |
Output
| Parameter | Type | Description |
|---|---|---|
products | array | Array of product objects |
total | number | Total product count |
bitrix_cms_get_orders
Get orders from the store
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
baseUrl | string | Yes | 1C-Bitrix site base URL |
login | string | Yes | Administrator login |
password | string | Yes | Administrator password |
limit | number | No | Maximum orders to return |
offset | number | No | Pagination offset |
Output
| Parameter | Type | Description |
|---|---|---|
orders | array | Array of order objects |
total | number | Total orders count |
bitrix_cms_get_sections
Get catalog sections
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
baseUrl | string | Yes | 1C-Bitrix site base URL |
login | string | Yes | Administrator login |
password | string | Yes | Administrator password |
iblockId | string | No | Information block ID |
Output
| Parameter | Type | Description |
|---|---|---|
sections | array | Array of section objects |
Links
- Official API: https://dev.1c-bitrix.ru/rest_help/
- AACFlow block source: apps/aacflow/blocks/blocks/bitrix_cms.ts

