Ozon
Interact with Ozon — one of Russia's largest e-commerce marketplaces
oz
Ozon is one of the largest e-commerce platforms in Russia, offering a full marketplace API for sellers. Ozon Seller API allows merchants to manage products, orders, pricing, promotions, fulfillment, and analytics programmatically.
With the Ozon integration in AACFlow, you can:
- Manage product listings: Create, update, and delete product cards with full attribute sets
- Track inventory: Monitor stock levels across warehouses and automate restocking
- Process orders: Fetch new orders, update statuses, and manage returns and cancellations
- Set pricing and promotions: Configure prices, discounts, and promotional campaigns
- Generate reports: Access sales analytics, financial reports, and product performance data
- Handle fulfillment: Manage FBO (Fulfillment by Ozon) and FBS (Fulfillment by Seller) workflows
This integration provides end-to-end marketplace automation on Ozon, enabling efficient seller operations and data-driven decision making.
Usage Instructions
Integrate Ozon into the workflow. Can manage products, orders, inventory, and pricing. Requires Ozon Seller API credentials (client ID and API key).
Tools
ozon_get_stocks
Get current product stock levels
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
sku | string | Yes | Product SKU or offer ID |
warehouseId | number | No | Warehouse ID filter |
clientId | string | Yes | Ozon client ID |
apiKey | string | Yes | Ozon API key |
Output
| Parameter | Type | Description |
|---|---|---|
stocks | array | Array of stock records with SKU, warehouse, quantity |
total | number | Total stock records |
ozon_get_orders
Retrieve orders from Ozon marketplace
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
dateFrom | string | Yes | Start date (ISO 8601) |
dateTo | string | No | End date (ISO 8601) |
status | string | No | Order status filter |
limit | number | No | Results per page |
clientId | string | Yes | Ozon client ID |
apiKey | string | Yes | Ozon API key |
Output
| Parameter | Type | Description |
|---|---|---|
orders | array | Array of order objects |
total | number | Total order count |
ozon_update_product
Update product information
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
productId | number | Yes | Ozon product ID |
price | number | No | New product price |
discountPrice | number | No | Discount price |
stock | number | No | Updated stock quantity |
clientId | string | Yes | Ozon client ID |
apiKey | string | Yes | Ozon API key |
Output
| Parameter | Type | Description |
|---|---|---|
success | boolean | Whether the update succeeded |
productId | number | Updated product ID |

