RetailCRM
Управление заказами, клиентами и товарами в RetailCRM — ведущей российской CRM для e-commerce
re
RetailCRM — это the ведущий русский CRM system для e-commerce businesses, offering order management, customer segmentation, marketing automation, и logistics integrations. Its API v5 предоставляет full CRUD access to orders, customers, и product catalogs.
С помощью RetailCRM интеграции в AACFlow можно:
- Создать orders: Register new orders с all details
- Получить orders: Получить specific order от ID
- Список orders: Enumerate orders с optional filters
- Обновить orders: Modify order status, fields, и delivery details
- Удалить orders: Remove orders from the system
- Список customers: Browse the customer database
- Создать customers: Добавить new customer records
- Список products: Browse the product catalog
- Создать products: Добавить new products to the catalog
Эта интеграция позволяет automated order processing, CRM synchronization, и e-commerce workflow automation.
Инструкции по использованию
Интегрируйте RetailCRM в рабочий процесс. Требуется RetailCRM domain (your subdomain on retailcrm.ru) и an API ключ from Settings → Integration → API in your RetailCRM account.
Инструменты
retailcrm_create_order
Создать новый order
Входные параметры
| Параметр | Тип | Обязательный | Описание |
|---|---|---|---|
domain | string | Да | RetailCRM domain (e.g. yourstore from yourstore.retailcrm.ru) |
apiKey | string | Да | RetailCRM API key |
firstName | string | Нет | Customer first name |
lastName | string | Нет | Customer last name |
email | string | Нет | Customer email |
phone | string | Нет | Customer phone |
status | string | Нет | Order status code |
Выходные данные
| Параметр | Тип | Описание |
|---|---|---|
id | number | Created order ID |
externalId | string | External order ID |
success | boolean | Произошла ли order was created |
retailcrm_get_order
Получить an order от ID
Входные параметры
| Параметр | Тип | Обязательный | Описание |
|---|---|---|---|
domain | string | Да | RetailCRM domain |
apiKey | string | Да | RetailCRM API key |
orderId | number | Да | Order ID |
Выходные данные
| Параметр | Тип | Описание |
|---|---|---|
order | object | Full order object |
retailcrm_list_orders
Список orders
Входные параметры
| Параметр | Тип | Обязательный | Описание |
|---|---|---|---|
domain | string | Да | RetailCRM domain |
apiKey | string | Да | RetailCRM API key |
status | string | Нет | Filter by order status |
limit | number | Нет | Maximum orders to return |
page | number | Нет | Page number |
Выходные данные
| Параметр | Тип | Описание |
|---|---|---|
orders | array | Массив order objects |
totalCount | number | Total orders count |
Ссылки
- Official API: https://docs.retailcrm.ru/api/version-5
- AACFlow block source: apps/aacflow/blocks/blocks/retailcrm.ts

