Ozon Performance (Ads)
Ozon-Werbekampagnen verwalten und Leistungsstatistiken über die Ozon Performance API abrufen
Ozon Performance is the advertising management API for Ozon, Russia's leading e-commerce marketplace. It provides programmatic access to advertising campaigns, ad groups, statistics, and budget management.
With the Ozon Performance integration in AACFlow, you can:
- Get campaigns: List all advertising campaigns in the account
- Get statistics: Retrieve performance metrics for campaigns (impressions, clicks, CTR, spend)
- Create campaign: Create a new advertising campaign
This integration enables automated advertising campaign management and performance reporting for Ozon marketplace sellers.
Nutzungsanleitung
Integrate Ozon Performance into the workflow. Requires a Client-Id and Client-Secret from your Ozon Performance API settings. OAuth credentials are configured in the Ozon Seller personal account under Settings → API.
Tools
ozon_performance_get_campaigns
List advertising campaigns
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
clientId | string | Ja | Ozon Performance Client-Id |
clientSecret | string | Ja | Ozon Performance Client-Secret |
state | string | Nein | Campaign state filter (active, inactive, all) |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
campaigns | array | Array of campaign objects |
total | number | Total campaigns count |
ozon_performance_get_stats
Get campaign performance statistics
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
clientId | string | Ja | Ozon Performance Client-Id |
clientSecret | string | Ja | Ozon Performance Client-Secret |
campaignId | string | Ja | Campaign ID |
dateFrom | string | Ja | Start date (YYYY-MM-DD) |
dateTo | string | Ja | End date (YYYY-MM-DD) |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
statistics | array | Array of daily statistics records |
totals | object | Aggregated totals |
ozon_performance_create_campaign
Create a new advertising campaign
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
clientId | string | Ja | Ozon Performance Client-Id |
clientSecret | string | Ja | Ozon Performance Client-Secret |
title | string | Ja | Campaign name |
startDate | string | Ja | Campaign start date (YYYY-MM-DD) |
endDate | string | Nein | Campaign end date (YYYY-MM-DD) |
dailyBudget | number | Nein | Daily budget in rubles |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
campaignId | string | Created campaign ID |
success | boolean | Whether the campaign was created |
Links
- Official API: https://docs.ozon.ru/api/performance/
- AACFlow block source: apps/aacflow/blocks/blocks/ozon_performance.ts

