Get products prices
Gets products prices with or without filter
Function GetProductsPrices(Val ClientID, Val APIKey, Val Filter = "", Val LastID = 0) Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
ClientID | --clientid | String | ✔ | Client identifier |
APIKey | --apikey | String | ✔ | API key |
Filter | --filter | Structure Of KeyAndValue | ✖ | Product selection filter. See GetProductsFilterStructure |
LastID | --last | String, Number | ✖ | ID of the last value (last_id) from the previous response |
Returns: Map Of KeyAndValue - serialized JSON response from Ozon Seller API
tip
Method at API documentation: post /v5/product/info/prices
1C:Enterprise/OneScript code example
ClientID = "2479669";
APIKey = "09f65e9f-262d-4aca...";
Result = OPI_Ozon.GetProductsPrices(ClientID, APIKey);
- Bash
- CMD/Bat
oint ozon GetProductsPrices \
--clientid "***" \
--apikey "***"
oint ozon GetProductsPrices ^
--clientid "***" ^
--apikey "***"
Result
{
"items": [
{
"acquiring": 30.34,
"offer_id": "4100347961",
"product_id": 1287217882,
"volume_weight": 0.2,
"commissions": {
"fbo_deliv_to_customer_amount": 25,
"fbo_direct_flow_trans_max_amount": 66,
"fbo_direct_flow_trans_min_amount": 66,
"fbo_return_flow_amount": 66,
"fbs_deliv_to_customer_amount": 25,
"fbs_direct_flow_trans_min_amount": 80,
"fbs_direct_flow_trans_max_amount": 80,
"fbs_first_mile_max_amount": 30,
"fbs_first_mile_min_amount": 10,
"fbs_return_flow_amount": 80,
"sales_percent_fbo": 27.5,
"sales_percent_fbs": 29.5,
"sales_percent_rfbs": 27,
"sales_percent_fbp": 27
},
"marketing_actions": {
"current_period_from": null,
"current_period_to": null,
"actions": [],
"ozon_actions_exist": false
},
"price": {
"auto_action_enabled": false,
"currency_code": "RUB",
"marketing_price": 1597,
"marketing_seller_price": 1597,
"min_price": 1438,
"old_price": 1917,
"price": 1597,
"retail_price": 0,
"vat": 0,
"auto_add_to_ozon_actions_list_enabled": true,
"net_price": 833
},
"price_indexes": {
"external_index_data": {
"min_price": 0,
"min_price_currency": "RUB",
"price_index_value": 0
},
"ozon_index_data": {
"min_price": 1832,
"min_price_currency": "RUB",
"price_index_value": 0.87
},
"color_index": "GREEN",
"self_marketplaces_index_data": {
"min_price": 0,
"min_price_currency": "RUB",
"price_index_value": 0
}
}
},
{
"acquiring": 43.68,
"offer_id": "4100347960",
"product_id": 1288360323,
"volume_weight": 0.4,
"commissions": {
"fbo_deliv_to_customer_amount": 25,
"fbo_direct_flow_trans_max_amount": 66,
"fbo_direct_flow_trans_min_amount": 66,
"fbo_return_flow_amount": 66,
"fbs_deliv_to_customer_amount": 25,
"fbs_direct_flow_trans_min_amount": 80,
"fbs_direct_flow_trans_max_amount": 80,
"fbs_first_mile_max_amount": 30,
"fbs_first_mile_min_amount": 10,
"fbs_return_flow_amount": 80,
"sales_percent_fbo": 27.5,
"sales_percent_fbs": 29.5,
"sales_percent_rfbs": 27,
"sales_percent_fbp": 27
},
"marketing_actions": {
"current_period_from": null,
"current_period_to": null,
"actions": [],
"ozon_actions_exist": false
},
"price": {
"auto_action_enabled": false,
"currency_code": "RUB",
"marketing_price": 1849,
"marketing_seller_price": 2299,
"min_price": 2070,
"old_price": 2759,
"price": 2299,
"retail_price": 0,
"vat": 0,
"auto_add_to_ozon_actions_list_enabled": true,
"net_price": 1109
},
"price_indexes": {
"external_index_data": {
"min_price": 515,
"min_price_currency": "RUB",
"price_index_value": 1.71
},
"ozon_index_data": {
"min_price": 0,
"min_price_currency": "RUB",
"price_index_value": 0
},
"color_index": "RED",
"self_marketplaces_index_data": {
"min_price": 0,
"min_price_currency": "RUB",
"price_index_value": 0
}
}
},
{
"acquiring": 42.69,
"offer_id": "4100347962",
"product_id": 1289792530,
"volume_weight": 0.3,
"commissions": {
"fbo_deliv_to_customer_amount": 25,
"fbo_direct_flow_trans_max_amount": 66,
"fbo_direct_flow_trans_min_amount": 66,
"fbo_return_flow_amount": 66,
"fbs_deliv_to_customer_amount": 25,
"fbs_direct_flow_trans_min_amount": 80,
"fbs_direct_flow_trans_max_amount": 80,
"fbs_first_mile_max_amount": 30,
"fbs_first_mile_min_amount": 10,
"fbs_return_flow_amount": 80,
"sales_percent_fbo": 27.5,
"sales_percent_fbs": 29.5,
"sales_percent_rfbs": 27,
"sales_percent_fbp": 27
},
"marketing_actions": {
"current_period_from": null,
"current_period_to": null,
"actions": [],
"ozon_actions_exist": false
},
"price": {
"auto_action_enabled": false,
"currency_code": "RUB",
...