### Get Returns Information Request Example Source: https://docs.ozon.ru/api/global-returns Example of a GET request to retrieve information about return postings. It includes query parameters for language inclusion. ```http GET /v1/ReturnsToRegister?includeLanguages=Tr&includeLanguages=En ``` -------------------------------- ### Get Campaign Objects Request Example (HTTP) Source: https://docs.ozon.ru/api/performance An example HTTP GET request to retrieve a list of promoted objects within a specific Ozon campaign. It includes host, content type, and authorization headers. ```http GET /api/client/campaign/48852/objects HTTP/1.1 Host: api-performance.ozon.ru:443 Content-Type: application/json Accept: application/json Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.WyJFTWhVVU...qTz2XXZBv41h4 ``` -------------------------------- ### Ozon API GET Request Example Source: https://docs.ozon.ru/api/performance Example of a GET request to the Ozon API for retrieving campaign information. This includes specifying campaign IDs, advertising object type, and campaign state. ```HTTP GET /api/client/campaign?campaignIds=52374&advObjectType=SKU&state=CAMPAIGN_STATE_UNKNOWN HTTP/1.1 Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.WyJFTWhVVU...qTz2XXZBv41h4 Host: api-performance.ozon.ru:443 Content-Type: application/json Accept: application/json ``` -------------------------------- ### GET /statistics/campaign/product and GET /statistics/campaign/media Request Examples Update Source: https://docs.ozon.ru/api/performance This section details updates to the request examples for GET /statistics/campaign/product and GET /statistics/campaign/media endpoints. ```APIDOC ## GET /statistics/campaign/product and GET /statistics/campaign/media Request Examples Update ### Description Updated request examples for retrieving campaign product and media statistics. ### Method GET ### Endpoint - /statistics/campaign/product - /statistics/campaign/media ### Parameters #### Path Parameters None #### Query Parameters None #### Request Body None ### Request Example ```json { "campaignId": "12345", "dateFrom": "2024-08-29", "dateTo": "2024-08-30" } ``` ### Response #### Success Response (200) - **data** (array) - The statistics data. #### Response Example ```json { "data": [ { "metricName": "impressions", "value": 1000 } ] } ``` ``` -------------------------------- ### Get Platform Information (JSON Example) Source: https://docs.ozon.ru/api/ord Example JSON response for retrieving information about a platform. This includes details like appName, URLs, creation and modification timestamps, and creator information. ```json { "platform": [ { "appName": "string", "comment": "string", "createdAt": "2019-08-24T14:15:22Z", "createdBy": { "email": "string", "id": "string", "name": "string", "type": "AUDIT_LOG_TYPE_INVALID" }, "editedAt": "2019-08-24T14:15:22Z", "editedBy": { "email": "string", "id": "string", "name": "string", "type": "AUDIT_LOG_TYPE_INVALID" }, "externalId": "string", "platformId": "string", "platformType": "PLATFORM_TYPE_INVALID", "updatedAt": "2019-08-24T14:15:22Z", "url": "string" } ] } ``` -------------------------------- ### Get Statistics Report - Request Example Source: https://docs.ozon.ru/api/performance This example demonstrates how to make a GET request to the /api/client/statistics/report endpoint. It includes the Host, Authorization header, and a query parameter for the UUID to retrieve a specific report. ```http GET /api/client/statistics/report?UUID=0c159c60-ab92-46d9-9a6b-d225dbf5c7b1 HTTP/1.1 Host: api-performance.ozon.ru:443 Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.WyJFTWhVVU...qTz2XXZBv41h4 ```