diff --git a/includes/CategoriesFilter.php b/includes/CategoriesFilter.php
index ca1bb69..6495d29 100644
--- a/includes/CategoriesFilter.php
+++ b/includes/CategoriesFilter.php
@@ -2,80 +2,104 @@
namespace WooMS;
-if (!defined('ABSPATH')) {
- exit; // Exit if accessed directly
+if ( ! defined( 'ABSPATH' ) ) {
+ exit; // Exit if accessed directly
}
/**
* Import Product Categories from MoySklad
*/
-class CategoriesFilter
-{
-
- /**
- * WooMS_Import_Product_Categories constructor.
- */
- public static function init()
- {
-
- add_action('admin_init', array(__CLASS__, 'settings_init'), 50);
- add_filter('wooms_url_get_products_filters', array(__CLASS__, 'product_add_filter_by_folder'), 10);
- add_filter('wooms_url_get_bundle_filter', array(__CLASS__, 'product_add_filter_by_folder'), 10);
- add_filter('wooms_url_get_service_filter', array(__CLASS__, 'product_add_filter_by_folder'), 10);
-
- }
-
-
- /**
- * Добавляем фильтр по папке
- * Если выбрана группа для синка
- * Use $url_api = apply_filters('wooms_url_get_products', $url);
- */
- public static function product_add_filter_by_folder($filters)
- {
- if ( ! $groups = get_option('wooms_set_folders')) {
- return $filters;
- }
-
- $groups = explode(',', $groups);
-
- if(empty($groups)){
- return $filters;
- }
-
- foreach($groups as $group){
- $filters[] = 'pathName~=' . trim($group);
- }
-
- return $filters;
- }
-
-
- /**
- * Settings UI
- */
- public static function settings_init()
- {
-
- register_setting('mss-settings', 'wooms_set_folders');
- add_settings_field(
- $name = 'wooms_set_folders',
- $title = 'Группы товаров для фильтрации',
- $render = function($args){
- printf('', $args['key'], $args['value']);
- printf('
%s
',
- 'Тут можно указать группы для фильтрации товаров через запятую. Например: "Мебель/Диваны,Пицца,Одежда/Обувь/Ботинки"'
- );
- },
- $setings = 'mss-settings',
- $group = 'wooms_product_cat',
- $arts = [
- 'key' => 'wooms_set_folders',
- 'value' => get_option('wooms_set_folders'),
- ]
- );
-
- }
+class CategoriesFilter {
+
+ public static $groups = [];
+ /**
+ * WooMS_Import_Product_Categories constructor.
+ */
+ public static function init() {
+ add_action( 'admin_init', array( __CLASS__, 'add_settings' ), 50 );
+
+ $groups = get_option( 'wooms_set_folders' );
+
+ if ( $groups ) {
+ self::$groups = explode( ',', $groups );
+ }
+
+ if ( empty( self::$groups ) ) {
+ return;
+ }
+
+ add_filter( 'wooms_url_get_products_filters', array( __CLASS__, 'product_add_filter_by_folder' ), 10 );
+ add_filter( 'wooms_url_get_bundle_filter', array( __CLASS__, 'product_add_filter_by_folder' ), 10 );
+ add_filter( 'wooms_url_get_service_filter', array( __CLASS__, 'product_add_filter_by_folder' ), 10 );
+ add_filter( 'wooms_productfolder', array( __CLASS__, 'filter_folders' ), 10 );
+ }
+
+ public static function filter_folders( $filter_folders ) {
+
+ $new_folders = [];
+ foreach ( $filter_folders as $folder ) {
+
+ if(empty($folder['pathName'])){
+ foreach(self::$groups as $group){
+ if(str_starts_with($folder['name'], $group)) {
+ $new_folders[] = $folder;
+ }
+ }
+ } else {
+ foreach(self::$groups as $group){
+ if(str_starts_with($folder['pathName'], $group)){
+ $new_folders[] = $folder;
+ }
+ }
+
+ }
+ }
+
+ if ( $new_folders ) {
+ return $new_folders;
+ }
+
+ return $filter_folders;
+ }
+
+ /**
+ * Добавляем фильтр по папке
+ * Если выбрана группа для синка
+ * Use $url_api = apply_filters('wooms_url_get_products', $url);
+ */
+ public static function product_add_filter_by_folder( $filters ) {
+
+ foreach ( self::$groups as $group ) {
+ $filters[] = 'pathName~=' . trim( $group );
+ }
+ return $filters;
+ }
+
+
+ /**
+ * Settings UI
+ */
+ public static function add_settings() {
+
+ register_setting( 'mss-settings', 'wooms_set_folders' );
+ add_settings_field(
+ $name = 'wooms_set_folders',
+ $title = 'Группы товаров для фильтрации',
+ $render = function ($args) {
+ printf( '', $args['key'], $args['value'] );
+ printf( '%s
',
+ 'Тут можно указать группы для фильтрации товаров через запятую. Например: "Мебель/Диваны,Пицца,Одежда/Обувь/Ботинки"'
+ );
+ },
+ $setings = 'mss-settings',
+ $group = 'wooms_product_cat',
+ $arts = [
+ 'key' => 'wooms_set_folders',
+ 'value' => get_option( 'wooms_set_folders' ),
+ ]
+ );
+
+ }
}
diff --git a/includes/CurrencyConverter.php b/includes/CurrencyConverter.php
index ac81dea..68a1215 100644
--- a/includes/CurrencyConverter.php
+++ b/includes/CurrencyConverter.php
@@ -6,6 +6,8 @@
/**
* Additional notes for send order
+ *
+ * @todo need refactoring after https://github.com/wpcraft-ru/wooms/issues/516
*/
class CurrencyConverter
{
@@ -17,10 +19,12 @@ public static function init()
add_filter('wooms_product_price', [__CLASS__, 'chg_price'], 33, 4);
add_filter('wooms_sale_price', [__CLASS__, 'chg_price'], 32, 4);
+ add_action('wooms_main_walker_started', [__CLASS__, 'cache_data']);
+
add_action('admin_init', array(__CLASS__, 'add_settings'), 50);
}
- public static function chg_price($price, $data_api, $product_id, $price_meta)
+ public static function chg_price($price, $data_api, $product_id, $price_meta)
{
if (!self::is_enable()) {
return $price;
@@ -30,23 +34,9 @@ public static function chg_price($price, $data_api, $product_id, $price_meta)
return $price;
}
- if (!$currency = get_transient('wooms_currency_api')) {
- $currency = request('entity/currency/');
- set_transient('wooms_currency_api', $currency, HOUR_IN_SECONDS);
- }
+ $currency_ms = self::get_currency();
- $woocommerce_currency = get_woocommerce_currency();
- $api_currency = self::get_currency_code_price_meta($price_meta);
-
- if(empty($api_currency)){
- return $price;
- }
-
- if ($woocommerce_currency == $api_currency) {
- return $price;
- }
-
- $price_by_rate = self::update_price_by_rate($price, $api_currency);
+ $price_by_rate = self::get_price_converted($price_meta, $currency_ms);
do_action(
'wooms_logger',
@@ -55,24 +45,52 @@ public static function chg_price($price, $data_api, $product_id, $price_meta)
[
'цена исходная' => $price,
'цена после конвертации' => $price_by_rate,
- 'валюта сайта' => $woocommerce_currency,
- 'валюта api' => $api_currency,
]
);
- // if ($product_id == 26226) {
- // dd($api_currency, $woocommerce_currency, $price, $currency, $price_meta);
- // }
return $price_by_rate;
}
+ public static function get_price_converted($price_meta, $currency_ms){
- public static function update_price_by_rate($price = 0, $api_currency = 'RUB'){
- if (!$currency = get_transient('wooms_currency_api')) {
- $currency = request('entity/currency');
- set_transient('wooms_currency_api', $currency, HOUR_IN_SECONDS);
+ $woocommerce_currency = get_woocommerce_currency();
+
+ $rate = 1;
+
+ foreach($currency_ms['rows'] as $currency_row){
+ if($currency_row['meta']['href'] == $price_meta['currency']['meta']['href']){
+ $rate = $currency_row['rate'];
+
+ }
}
+ $price = $price_meta['value'] * $rate;
+ return $price;
+
+ }
+
+ public static function get_currency(){
+ $currency = get_transient('wooms_currency_api');
+ if($currency){
+ return $currency;
+ }
+
+ $currency = request('entity/currency/');
+ set_transient('wooms_currency_api', $currency, DAY_IN_SECONDS);
+ return $currency;
+ }
+
+ public static function cache_data(){
+ delete_transient('wooms_currency_api');
+ $currency = request('entity/currency/');
+ set_transient('wooms_currency_api', $currency, DAY_IN_SECONDS);
+ }
+
+
+ public static function update_price_by_rate($price = 0, $api_currency = 'RUB'){
+
+ $currency = self::get_currency();
+
$rate = 1;
foreach($currency['rows'] as $currency_row){
@@ -95,10 +113,7 @@ public static function get_currency_code_price_meta($price_meta = [])
$price_currency_href = $price_meta['currency']['meta']['href'];
- if (!$currency = get_transient('wooms_currency_api')) {
- $currency = request('entity/currency');
- set_transient('wooms_currency_api', $currency, HOUR_IN_SECONDS);
- }
+ $currency = self::get_currency();
if (empty($currency['rows'])) {
return false;
diff --git a/includes/ProductVariable.php b/includes/ProductVariable.php
index 35b4c96..8e4648e 100644
--- a/includes/ProductVariable.php
+++ b/includes/ProductVariable.php
@@ -353,12 +353,24 @@ public static function update_variation( $row ) {
}
if(empty($row['product']['meta']['href'])){
- ddcli($row);
throw new \Error('empty $row[product][meta][href]');
}
+
$product_href = $row['product']['meta']['href'];
$product_id = self::get_product_id_by_uuid( $product_href );
$product_parent = wc_get_product( $product_id );
+
+ if(empty($product_parent)){
+ do_action(
+ 'wooms_logger_error',
+ __CLASS__,
+ sprintf( 'Нет базового продукта для вариации. %s', json_encode( ['product_id' => $product_id, '$row id' => $row ] ) )
+ );
+
+ return null;
+
+ }
+
if ( ! $product_parent->is_type( 'variable' ) ) {
$product_parent = new \WC_Product_Variable( $product_parent );
$product_parent->save();
@@ -645,8 +657,6 @@ public static function display_state() {
$strings[] = sprintf( 'Журнал обработки: открыть', admin_url( 'admin.php?page=wc-status&tab=logs' ) );
}
- $strings[] = sprintf( 'Количество обработанных записей: %s', empty( self::get_state( 'count' ) ) ? 0 : self::get_state( 'count' ) );
-
?>
getMessage() );
+
+ $message = sprintf("wooms process fails: %s, ids: %s, code: %s", $e->getMessage(), json_encode($ids), $e->getCode());
+ do_action( 'wooms_logger_error', __NAMESPACE__, $message );
+ error_log($message);
+
return false;
}
@@ -266,8 +274,6 @@ function product_update( array $row, array $data = [] ) {
*/
$product = apply_filters( 'wooms_product_save', $product, $data_api, $product_id );
-
-
//save data of source
if ( apply_filters( 'wooms_logger_enable', false ) ) {
$product->update_meta_data( 'wooms_data_api', json_encode( $data_api, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE ) );
@@ -341,14 +347,8 @@ function product_update( array $row, array $data = [] ) {
$product = apply_filters( 'wooms_product_update', $product, $row, $data );
- // return $product;
-
$product_id = $product->save();
- if(empty(intval($product_id))){
- throw new Error('$product_id is broke');
- }
-
do_action(
'wooms_logger',
__NAMESPACE__,
diff --git a/includes/ProductsCategories.php b/includes/ProductsCategories.php
index 2170d9c..b2799e9 100644
--- a/includes/ProductsCategories.php
+++ b/includes/ProductsCategories.php
@@ -12,14 +12,19 @@
class ProductsCategories {
public static function init() {
+ add_action( 'admin_init', array( __CLASS__, 'add_settings' ), 50 );
+ add_action( 'product_cat_edit_form_fields', array( __CLASS__, 'display_data_category' ), 30 );
+
+ if ( self::is_disable() ) {
+ return;
+ }
add_action( 'wooms_main_walker_started', array( __CLASS__, 'reset' ) );
add_filter( 'wooms_product_update', [ __CLASS__, 'update' ], 10, 3 );
add_filter( 'wooms_product_update', [ __CLASS__, 'add_ancestors' ], 15, 3 );
+ add_filter( 'wooms_main_walker_finish', [ __CLASS__, 'recount' ], 15, 3 );
- add_action( 'admin_init', array( __CLASS__, 'add_settings' ), 50 );
- add_action( 'product_cat_edit_form_fields', array( __CLASS__, 'display_data_category' ), 30 );
}
@@ -32,7 +37,8 @@ public static function update( $product, $row, $data ) {
$term_id = self::check_term_by_ms_uuid( $row['productFolder']['meta']['href'] );
if ( empty( $term_id ) ) {
- throw new Error( 'ProductsCategories - update - empty($term_id)' );
+
+ do_action( 'wooms_logger_error', __NAMESPACE__, 'ProductsCategories - update - empty($term_id)', $row['id'] );
}
$product->set_category_ids( array( $term_id ) );
@@ -77,27 +83,36 @@ public static function product_categories_update( $productfolder ) {
throw new Error( 'No categories for products', 500 );
}
+ $rows = apply_filters('wooms_productfolder', $productfolder['rows']);
- if ( count( $productfolder['rows'] ) < 1 ) {
- throw new Error( 'No categories for products', 500 );
+ $ids = [];
+ foreach ( $rows as $row ) {
+ $ids[] = self::product_category_update( $row, $rows );
}
-
- $list = [];
- foreach ( $productfolder['rows'] as $row ) {
- $list[] = self::product_category_update( $row, $productfolder );
- }
-
- if ( empty( $list ) ) {
+ if ( empty( $ids ) ) {
throw new Error( 'product_category_update = empty $list[]' );
}
+ //delete categories not about current iteration
+ $categories = get_categories( [
+ 'taxonomy' => 'product_cat',
+ 'hide_empty' => false,
+ ] );
+ if($categories){
+ foreach($categories as $term){
+ if(in_array($term->term_id, $ids)){
+ continue;
+ }
+ wp_delete_term($term->term_id, 'product_cat');
+ }
+ }
- return $list;
+ return $ids;
}
- public static function product_category_update( $row, $productfolder ) {
+ public static function product_category_update( $row, $rows ) {
if ( empty( $row['id'] ) ) {
throw new Error( 'product_category_update = no $row[id]' );
@@ -113,9 +128,9 @@ public static function product_category_update( $row, $productfolder ) {
if ( isset( $row['productFolder']['meta']['href'] ) ) {
$url_parent = $row['productFolder']['meta']['href'];
- foreach ( $productfolder['rows'] as $parent_row ) {
+ foreach ( $rows as $parent_row ) {
if ( $parent_row['meta']['href'] == $url_parent ) {
- $term_id_parent = self::product_category_update( $parent_row, $productfolder );
+ $term_id_parent = self::product_category_update( $parent_row, $rows );
$args['parent'] = $term_id_parent;
break;
}
@@ -129,8 +144,6 @@ public static function product_category_update( $row, $productfolder ) {
return $term_id;
} else {
- $args = array();
-
$term_new = array(
'wooms_id' => $row['id'],
'name' => $row['name'],
@@ -139,56 +152,17 @@ public static function product_category_update( $row, $productfolder ) {
if ( isset( $row['productFolder']['meta']['href'] ) ) {
$url_parent = $row['productFolder']['meta']['href'];
- foreach ( $productfolder['rows'] as $parent_row ) {
+
+ foreach ( $rows as $parent_row ) {
if ( $parent_row['meta']['href'] == $url_parent ) {
- $term_id_parent = self::product_category_update( $parent_row, $productfolder );
- $args['parent'] = $term_id_parent;
+ $term_id_parent = self::product_category_update( $parent_row, $rows );
+ $term_new['parent'] = $term_id_parent;
break;
}
}
}
- $url_parent = isset( $row['productFolder']['meta']['href'] ) ? $row['productFolder']['meta']['href'] : '';
- $path_name = isset( $row['pathName'] ) ? $row['pathName'] : null;
-
- if ( apply_filters( 'wooms_skip_categories', true, $url_parent, $path_name ) ) {
-
- $term = wp_insert_term( $term_new['name'], $taxonomy = 'product_cat', $args );
- if ( is_wp_error( $term ) ) {
-
- if ( isset( $term->error_data['term_exists'] ) ) {
- $msg = $term->get_error_message();
- $msg .= PHP_EOL . sprintf( 'Имя указанное при создании термина: %s', $term_new['name'] );
- $msg .= PHP_EOL . sprintf( 'Существующий термин: %s', $term->error_data['term_exists'] );
- $msg .= PHP_EOL . sprintf( 'Аргументы создания термина: %s', print_r( $args, true ) );
-
- } else {
- $msg = $term->get_error_message();
- $msg .= PHP_EOL . print_r( $args, true );
- }
- do_action( 'wooms_logger_error', __CLASS__, $term->get_error_code(), $msg );
- } else {
- do_action(
- 'wooms_logger',
- __CLASS__,
- sprintf( 'Добавлен термин %s', $term_new['name'] ),
- sprintf( 'Результат обработки %s', PHP_EOL . print_r( $term, true ) )
- );
- }
- }
-
- if ( isset( $term->errors["term_exists"] ) ) {
- $term_id = intval( $term->error_data['term_exists'] );
- if ( empty( $term_id ) ) {
- return false;
- }
- } elseif ( isset( $term->term_id ) ) {
- $term_id = $term->term_id;
- } elseif ( is_array( $term ) && ! empty( $term["term_id"] ) ) {
- $term_id = $term["term_id"];
- } else {
- return false;
- }
+ $term_id = wp_insert_term($row['name'], 'product_cat', $term_new)['term_id'] ?? null;
update_term_meta( $term_id, 'wooms_id', $row['id'] );
@@ -198,7 +172,7 @@ public static function product_category_update( $row, $productfolder ) {
update_term_meta( $term_id, 'wooms_session_id', $session_id );
}
- do_action( 'wooms_add_category', $term, $url_parent, $path_name );
+ do_action( 'wooms_add_category', $term_id, $row, $rows );
return $term_id;
}
@@ -391,6 +365,12 @@ public static function add_setting_categories_sync_enabled() {
]
);
}
+
+
+ public static function recount( ) {
+ wc_recount_all_terms();
+ }
+
}
ProductsCategories::init();
diff --git a/includes/ProductsExclusion.php b/includes/ProductsExclusion.php
index b69ec11..7cb9aa8 100644
--- a/includes/ProductsExclusion.php
+++ b/includes/ProductsExclusion.php
@@ -2,7 +2,7 @@
/**
* Исключение отмеченных в МойСклад товаров из синхронизации с сайтом
*
- * @package WooMS XT (Extra)
+ * @todo - need to auto test
*/
namespace WooMS\ProductsExclusion;
diff --git a/readme.txt b/readme.txt
index 21c172a..51c251c 100644
--- a/readme.txt
+++ b/readme.txt
@@ -76,6 +76,12 @@ PHP 7.0
== Changelog ==
+= 9.7 =
+- Исправлено: похоже конвертация валюты сломалась... https://github.com/wpcraft-ru/wooms/issues/516
+- Исправлено: улучшена работа с группами и категориями при наличии фильтрации https://github.com/wpcraft-ru/wooms/issues/520
+- Исправлено: Перестала работать синхронизация на версии 9.6 https://github.com/wpcraft-ru/wooms/issues/522
+
+
= 9.6 =
- Исправлено: После обновления не работает синхронизация https://github.com/wpcraft-ru/wooms/issues/518
- Исправлено: Плагин перестанет работать после 1 декабря 2023? https://github.com/wpcraft-ru/wooms/issues/509
diff --git a/tests/data/currency.json b/tests/data/currency.json
new file mode 100644
index 0000000..0d19db0
--- /dev/null
+++ b/tests/data/currency.json
@@ -0,0 +1,116 @@
+Array
+(
+ [context] => Array
+ (
+ [employee] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/employee
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata
+ [type] => employee
+ [mediaType] => application/json
+ )
+
+ )
+
+ )
+
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/
+ [type] => currency
+ [mediaType] => application/json
+ [size] => 2
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ [rows] => Array
+ (
+ [0] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ [id] => 1f3ac651-9192-11e7-7a69-97110016a959
+ [system] => 1
+ [name] => руб
+ [fullName] => Российский рубль
+ [rate] => 1
+ [multiplicity] => 1
+ [indirect] =>
+ [rateUpdateType] => manual
+ [code] => 643
+ [isoCode] => RUB
+ [majorUnit] => Array
+ (
+ [gender] => masculine
+ [s1] => рубль
+ [s2] => рубля
+ [s5] => рублей
+ )
+
+ [minorUnit] => Array
+ (
+ [gender] => feminine
+ [s1] => копейка
+ [s2] => копейки
+ [s5] => копеек
+ )
+
+ [archived] =>
+ [default] => 1
+ )
+
+ [1] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/c2404754-ed3c-11e9-0a80-043d00056ac5
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=c2404754-ed3c-11e9-0a80-043d00056ac5
+ )
+
+ [id] => c2404754-ed3c-11e9-0a80-043d00056ac5
+ [system] => 1
+ [name] => доллар
+ [fullName] => Доллар США
+ [rate] => 93.2174
+ [multiplicity] => 1
+ [indirect] =>
+ [rateUpdateType] => auto
+ [code] => 840
+ [isoCode] => USD
+ [majorUnit] => Array
+ (
+ [gender] => masculine
+ [s1] => доллар
+ [s2] => доллара
+ [s5] => долларов
+ )
+
+ [minorUnit] => Array
+ (
+ [gender] => masculine
+ [s1] => цент
+ [s2] => цента
+ [s5] => центов
+ )
+
+ [archived] =>
+ [default] =>
+ )
+
+ )
+
+)
+
diff --git a/tests/data/products.json b/tests/data/products.json
index d7f70d5..cab0b02 100644
--- a/tests/data/products.json
+++ b/tests/data/products.json
@@ -1,6275 +1,6277 @@
{
- "context": {
- "employee": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/employee",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json"
- }
- }
- },
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product",
- "type": "product",
- "mediaType": "application/json",
- "size": 35,
- "limit": 1000,
- "offset": 0
- },
- "rows": [
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/05f86f2e-9194-11e7-7a34-5acf002dc79f",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=05f86585-9194-11e7-7a34-5acf002dc79d"
- },
- "id": "05f86f2e-9194-11e7-7a34-5acf002dc79f",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2017-09-04 20:10:59.986",
- "name": "Резиновые полусапоги Tommy Hilfiger",
- "code": "00012",
- "externalCode": "MqC9xSSSgPK2Q7JmdYB1j1",
- "archived": false,
- "pathName": "Одежда/Обувь",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/e5fc4aab-9192-11e7-7a31-d0fd002d3e90",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=e5fc4aab-9192-11e7-7a31-d0fd002d3e90"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/05f86f2e-9194-11e7-7a34-5acf002dc79f/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 799000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000000145"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 0,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/05f86f2e-9194-11e7-7a34-5acf002dc79f/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/070ffbb6-ada6-11ea-0a80-02ee0026116c",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=070fed16-ada6-11ea-0a80-02ee0026116a"
- },
- "id": "070ffbb6-ada6-11ea-0a80-02ee0026116c",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2022-03-18 21:05:49.866",
- "name": "Audi SQ8",
- "code": "00052",
- "externalCode": "ib8xrPPggb6BtO4ReQgqz3",
- "archived": false,
- "pathName": "Авто",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/1bbc413b-ada5-11ea-0a80-030c00217297",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=1bbc413b-ada5-11ea-0a80-030c00217297"
- }
- },
- "effectiveVat": 20,
- "effectiveVatEnabled": true,
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/070ffbb6-ada6-11ea-0a80-02ee0026116c/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 710000000,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 510000000,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000004372"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 0,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/070ffbb6-ada6-11ea-0a80-02ee0026116c/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/1e5fef97-9194-11e7-7a31-d0fd002d4d1d",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=1e5fe5a7-9194-11e7-7a31-d0fd002d4d1b"
- },
- "id": "1e5fef97-9194-11e7-7a31-d0fd002d4d1d",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2017-09-04 20:11:41.884",
- "name": "Футболка Modis",
- "code": "00013",
- "externalCode": "bnyxcL5HjK5TewhsFNlSv0",
- "archived": false,
- "pathName": "Одежда/Футболки",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/ddb0ca35-9192-11e7-7a6c-d2a9002da7de",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=ddb0ca35-9192-11e7-7a6c-d2a9002da7de"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/1e5fef97-9194-11e7-7a31-d0fd002d4d1d/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 45500.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000000152"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 0,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/1e5fef97-9194-11e7-7a31-d0fd002d4d1d/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/25942b3a-ada6-11ea-0a80-04ad0020922a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=25941c4d-ada6-11ea-0a80-04ad00209228"
- },
- "id": "25942b3a-ada6-11ea-0a80-04ad0020922a",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2020-06-13 21:47:28.072",
- "name": "KIA Sorento 2020",
- "code": "00053",
- "externalCode": "kBJUJOBrieslk8ogsF4rm0",
- "archived": false,
- "pathName": "Авто",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/1bbc413b-ada5-11ea-0a80-030c00217297",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=1bbc413b-ada5-11ea-0a80-030c00217297"
- }
- },
- "effectiveVat": 20,
- "effectiveVatEnabled": true,
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/25942b3a-ada6-11ea-0a80-04ad0020922a/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 3,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 303490000,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 203490000,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000004389"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 0,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/25942b3a-ada6-11ea-0a80-04ad0020922a/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/27998481-9193-11e7-6b01-4b1d003bf072",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=27997e52-9193-11e7-6b01-4b1d003bf070"
- },
- "id": "27998481-9193-11e7-6b01-4b1d003bf072",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2022-03-18 22:23:25.811",
- "name": "Диван ЛИКСЕЛЕ МУРБО",
- "code": "00003",
- "externalCode": "7DXOk9xxgKBpWO-rdJrMM1",
- "archived": false,
- "pathName": "Мебель/Диваны",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/ca733750-9192-11e7-7a31-d0fd002d3da1",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=ca733750-9192-11e7-7a31-d0fd002d3da1"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/27998481-9193-11e7-6b01-4b1d003bf072/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 4,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 550000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000000053"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "article": "112",
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 0,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/27998481-9193-11e7-6b01-4b1d003bf072/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/2d0310cd-9194-11e7-7a6c-d2a9002dc49e",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=2d030a5c-9194-11e7-7a6c-d2a9002dc49c"
- },
- "id": "2d0310cd-9194-11e7-7a6c-d2a9002dc49e",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2019-04-28 19:56:17.088",
- "name": "Футболка ТВОЕ",
- "code": "00014",
- "externalCode": "gP8FJExUh21zp1JNLZkya3",
- "archived": false,
- "pathName": "Одежда/Футболки",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/ddb0ca35-9192-11e7-7a6c-d2a9002da7de",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=ddb0ca35-9192-11e7-7a6c-d2a9002da7de"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/2d0310cd-9194-11e7-7a6c-d2a9002dc49e/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 35000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 30000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000000169"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "country": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/country/e8098539-d624-4d2f-b0a6-9f73544806fa",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/country/metadata",
- "type": "country",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#country/edit?id=e8098539-d624-4d2f-b0a6-9f73544806fa"
- }
- },
- "weight": 12.0,
- "volume": 0.0,
- "variantsCount": 15,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/2d0310cd-9194-11e7-7a6c-d2a9002dc49e/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/3d957525-9194-11e7-7a6c-d2a9002ddbfe",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=3d956c28-9194-11e7-7a6c-d2a9002ddbfc"
- },
- "id": "3d957525-9194-11e7-7a6c-d2a9002ddbfe",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2019-03-02 23:19:21.927",
- "name": "Футболка Morgan",
- "code": "00015",
- "externalCode": "5ij7KARHgRc1XIw18WtGx3",
- "archived": false,
- "pathName": "Одежда/Футболки",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/ddb0ca35-9192-11e7-7a6c-d2a9002da7de",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=ddb0ca35-9192-11e7-7a6c-d2a9002da7de"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/3d957525-9194-11e7-7a6c-d2a9002ddbfe/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 70000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 90000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 75000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000000176"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 0,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/3d957525-9194-11e7-7a6c-d2a9002ddbfe/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/4dc138a7-d532-11e7-7a69-8f55000890d1",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=4dc12d87-d532-11e7-7a69-8f55000890cf"
- },
- "id": "4dc138a7-d532-11e7-7a69-8f55000890d1",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2019-02-24 17:06:19.224",
- "name": "Ботинки мужские RINGO",
- "code": "00026",
- "externalCode": "Lt-6EDVBjlPAtc5Hr7LV72",
- "archived": false,
- "pathName": "Одежда/Обувь/Ботинки",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/380c02c8-d532-11e7-7a6c-d2a90010eb13",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=380c02c8-d532-11e7-7a6c-d2a90010eb13"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/4dc138a7-d532-11e7-7a69-8f55000890d1/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 670000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 300000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000000282"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "country": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/country/9df7c2c3-7782-4c5c-a8ed-1102af611608",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/country/metadata",
- "type": "country",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#country/edit?id=9df7c2c3-7782-4c5c-a8ed-1102af611608"
- }
- },
- "article": "98765",
- "weight": 333.0,
- "volume": 55.0,
- "variantsCount": 5,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/4dc138a7-d532-11e7-7a69-8f55000890d1/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/5b91e8ab-9194-11e7-7a69-8f550016dbc9",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=5b91e066-9194-11e7-7a69-8f550016dbc7"
- },
- "id": "5b91e8ab-9194-11e7-7a69-8f550016dbc9",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2021-04-24 13:54:21.164",
- "name": "Брюки спортивные ESS No.1 Sweat Pants, FL, cl Puma",
- "code": "00016",
- "externalCode": "yaqRSVYlggOj3EFvYY7Jb1",
- "archived": false,
- "pathName": "Одежда/Штаны",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/e9caa413-9192-11e7-7a69-8f550016d504",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=e9caa413-9192-11e7-7a69-8f550016d504"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/5b91e8ab-9194-11e7-7a69-8f550016dbc9/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 300000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 200000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000000183"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 3,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/5b91e8ab-9194-11e7-7a69-8f550016dbc9/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/5f020c7c-9193-11e7-7a6c-d2a9002dadbf",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=5f020701-9193-11e7-7a6c-d2a9002dadbd"
- },
- "id": "5f020c7c-9193-11e7-7a6c-d2a9002dadbf",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2017-09-04 20:06:19.852",
- "name": "Кресло ЛИКСЕЛЕ ЛЁВОС",
- "code": "00004",
- "externalCode": "DLqdzz4siAKcFKjFx4eyM3",
- "archived": false,
- "pathName": "Мебель/Кресла",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/d150c807-9192-11e7-7a31-d0fd002d3dd7",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=d150c807-9192-11e7-7a31-d0fd002d3dd7"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/5f020c7c-9193-11e7-7a6c-d2a9002dadbf/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 999900.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000000060"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 0,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/5f020c7c-9193-11e7-7a6c-d2a9002dadbf/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/6176b71b-d532-11e7-6b01-4b1d00127e56",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=6176b195-d532-11e7-6b01-4b1d00127e54"
- },
- "id": "6176b71b-d532-11e7-6b01-4b1d00127e56",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2017-11-30 21:42:10.408",
- "name": "Ботинки мужские STREAM",
- "code": "00027",
- "externalCode": "0GpGTPN-iUz0eAGEW4dAm3",
- "archived": false,
- "pathName": "Одежда/Обувь/Ботинки",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/380c02c8-d532-11e7-7a6c-d2a90010eb13",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=380c02c8-d532-11e7-7a6c-d2a90010eb13"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/6176b71b-d532-11e7-6b01-4b1d00127e56/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 750000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000000299"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 5,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/6176b71b-d532-11e7-6b01-4b1d00127e56/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/68d488c2-ada5-11ea-0a80-04ae00221705",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=68d47c51-ada5-11ea-0a80-04ae00221703"
- },
- "id": "68d488c2-ada5-11ea-0a80-04ae00221705",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2020-06-13 21:43:37.583",
- "name": "KIA K900 Premium 5.0",
- "code": "00050",
- "externalCode": "oQUcYmk3jRXcSEQZYTkk30",
- "archived": false,
- "pathName": "Авто",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/1bbc413b-ada5-11ea-0a80-030c00217297",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=1bbc413b-ada5-11ea-0a80-030c00217297"
- }
- },
- "effectiveVat": 20,
- "effectiveVatEnabled": true,
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/68d488c2-ada5-11ea-0a80-04ae00221705/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 509490000,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 300000000,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000004358"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "country": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/country/851806bf-6440-42c3-b6cd-b8fc8abab3f2",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/country/metadata",
- "type": "country",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#country/edit?id=851806bf-6440-42c3-b6cd-b8fc8abab3f2"
- }
- },
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 0,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/68d488c2-ada5-11ea-0a80-04ae00221705/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/6ac21c71-9192-11e7-6b01-4b1d003be450",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=6ac21533-9192-11e7-6b01-4b1d003be44e"
- },
- "id": "6ac21c71-9192-11e7-6b01-4b1d003be450",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2022-04-08 22:04:30.639",
- "name": "Диван Альфа",
- "description": "мчмсмчсмчсмчсм\nаавпвапвапвапы\nываыва",
- "code": "00001",
- "externalCode": "DGDVPAkwiqhSv-ZKi9dxC1",
- "archived": false,
- "pathName": "Мебель/Диваны",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/ca733750-9192-11e7-7a31-d0fd002d3da1",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=ca733750-9192-11e7-7a31-d0fd002d3da1"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/6ac21c71-9192-11e7-6b01-4b1d003be450/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 1000000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000000039"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "country": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/country/9df7c2c3-7782-4c5c-a8ed-1102af611608",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/country/metadata",
- "type": "country",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#country/edit?id=9df7c2c3-7782-4c5c-a8ed-1102af611608"
- }
- },
- "article": "113",
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 0,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/6ac21c71-9192-11e7-6b01-4b1d003be450/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/7429e6fb-9193-11e7-7a31-d0fd002d4683",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=7429dded-9193-11e7-7a31-d0fd002d4681"
- },
- "id": "7429e6fb-9193-11e7-7a31-d0fd002d4683",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2017-09-04 20:06:55.353",
- "name": "Кресло ТУЛЬСТА",
- "code": "00005",
- "externalCode": "njyUK4D5ii5pILiRThxPq1",
- "archived": false,
- "pathName": "Мебель/Кресла",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/d150c807-9192-11e7-7a31-d0fd002d3dd7",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=d150c807-9192-11e7-7a31-d0fd002d3dd7"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/7429e6fb-9193-11e7-7a31-d0fd002d4683/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 599900.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000000077"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 0,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/7429e6fb-9193-11e7-7a31-d0fd002d4683/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/842736b8-9193-11e7-6b01-4b1d003bf57d",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=84273241-9193-11e7-6b01-4b1d003bf57b"
- },
- "id": "842736b8-9193-11e7-6b01-4b1d003bf57d",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2017-09-04 20:07:22.175",
- "name": "Кресло ПЕЛЛО",
- "code": "00006",
- "externalCode": "GNVBkzOCg4CaB8EBnvjVX2",
- "archived": false,
- "pathName": "Мебель/Кресла",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/d150c807-9192-11e7-7a31-d0fd002d3dd7",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=d150c807-9192-11e7-7a31-d0fd002d3dd7"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/842736b8-9193-11e7-6b01-4b1d003bf57d/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 459900.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000000084"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 0,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/842736b8-9193-11e7-6b01-4b1d003bf57d/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/8cbf00e4-d532-11e7-7a31-d0fd001107b3",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=8cbef8e7-d532-11e7-7a31-d0fd001107b1"
- },
- "id": "8cbf00e4-d532-11e7-7a31-d0fd001107b3",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2017-11-29 21:24:34.498",
- "name": "Полуботинки мужские STELS",
- "code": "00029",
- "externalCode": "AI61pobLho7wX-lLo7I2O3",
- "archived": false,
- "pathName": "Одежда/Обувь/Полуботинки",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/7d637021-d532-11e7-7a34-5acf001098aa",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=7d637021-d532-11e7-7a34-5acf001098aa"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/8cbf00e4-d532-11e7-7a31-d0fd001107b3/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 650000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000000312"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 0,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/8cbf00e4-d532-11e7-7a31-d0fd001107b3/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/99b623dd-9194-11e7-7a34-5acf002dccdf",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=99b61eb9-9194-11e7-7a34-5acf002dccdd"
- },
- "id": "99b623dd-9194-11e7-7a34-5acf002dccdf",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2018-04-23 11:11:17.187",
- "name": "Пицца Чикаго",
- "code": "00019",
- "externalCode": "wkjURlzEh1bD-mWihR1eu0",
- "archived": false,
- "pathName": "Пицца",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/bd78f771-9192-11e7-6b01-4b1d003beb61",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=bd78f771-9192-11e7-6b01-4b1d003beb61"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/99b623dd-9194-11e7-7a34-5acf002dccdf/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 35000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000000213"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "weight": 0.333,
- "volume": 0.0,
- "variantsCount": 6,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/99b623dd-9194-11e7-7a34-5acf002dccdf/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/99e68868-d532-11e7-6b01-4b1d00128082",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=99e681be-d532-11e7-6b01-4b1d00128080"
- },
- "id": "99e68868-d532-11e7-6b01-4b1d00128082",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2017-11-29 21:24:56.547",
- "name": "Полуботинки мужские PAT",
- "code": "00030",
- "externalCode": "-3l8w357ggKMJATxtl3y91",
- "archived": false,
- "pathName": "Одежда/Обувь/Полуботинки",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/7d637021-d532-11e7-7a34-5acf001098aa",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=7d637021-d532-11e7-7a34-5acf001098aa"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/99e68868-d532-11e7-6b01-4b1d00128082/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 520000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000000329"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 0,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/99e68868-d532-11e7-6b01-4b1d00128082/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/9d3a1d6c-2f3c-11eb-0a80-04610022bbdd",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=9d3a1399-2f3c-11eb-0a80-04610022bbdb"
- },
- "id": "9d3a1d6c-2f3c-11eb-0a80-04610022bbdd",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2020-11-25 19:40:57.205",
- "name": "Geely Tugella",
- "code": "00054",
- "externalCode": "yq3GkFgJjJwB5393J5WKz3",
- "archived": false,
- "pathName": "Авто",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/1bbc413b-ada5-11ea-0a80-030c00217297",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=1bbc413b-ada5-11ea-0a80-030c00217297"
- }
- },
- "effectiveVat": 20,
- "effectiveVatEnabled": true,
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/9d3a1d6c-2f3c-11eb-0a80-04610022bbdd/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 3,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 250000000,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 200000000,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000004396"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "article": "gt",
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 0,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/9d3a1d6c-2f3c-11eb-0a80-04610022bbdd/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/9f88ac50-9193-11e7-7a69-97110016bc89",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=9f88a497-9193-11e7-7a69-97110016bc87"
- },
- "id": "9f88ac50-9193-11e7-7a69-97110016bc89",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2017-09-04 20:08:08.118",
- "name": "Стол Маррен",
- "code": "00007",
- "externalCode": "QZfylYzVhKhjOyqCXhh6n2",
- "archived": false,
- "pathName": "Мебель/Столы",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/d7c8bd44-9192-11e7-7a6c-d2a9002da5c5",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=d7c8bd44-9192-11e7-7a6c-d2a9002da5c5"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/9f88ac50-9193-11e7-7a69-97110016bc89/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 59900.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000000091"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 0,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/9f88ac50-9193-11e7-7a69-97110016bc89/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/a90dcdca-d532-11e7-7a6c-d2a90010f132",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=a90dc4ca-d532-11e7-7a6c-d2a90010f130"
- },
- "id": "a90dcdca-d532-11e7-7a6c-d2a90010f132",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2017-11-29 21:25:21.985",
- "name": "Полуботинки мужские POLO",
- "code": "00031",
- "externalCode": "qqTwEawohouUjeuTYlg232",
- "archived": false,
- "pathName": "Одежда/Обувь/Полуботинки",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/7d637021-d532-11e7-7a34-5acf001098aa",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=7d637021-d532-11e7-7a34-5acf001098aa"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/a90dcdca-d532-11e7-7a6c-d2a90010f132/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 570000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000000336"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 0,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/a90dcdca-d532-11e7-7a6c-d2a90010f132/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/ad12bd15-9193-11e7-7a6c-d2a9002db03b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=ad12b742-9193-11e7-7a6c-d2a9002db039"
- },
- "id": "ad12bd15-9193-11e7-7a6c-d2a9002db03b",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2017-09-04 20:08:30.833",
- "name": "Стол МИККЕ",
- "code": "00008",
- "externalCode": "I7x15k3vizq4jppSCq7321",
- "archived": false,
- "pathName": "Мебель/Столы",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/d7c8bd44-9192-11e7-7a6c-d2a9002da5c5",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=d7c8bd44-9192-11e7-7a6c-d2a9002da5c5"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/ad12bd15-9193-11e7-7a6c-d2a9002db03b/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 599900.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000000107"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 0,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/ad12bd15-9193-11e7-7a6c-d2a9002db03b/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/ae11fae0-9194-11e7-7a69-97110016c358",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=ae11f49b-9194-11e7-7a69-97110016c356"
- },
- "id": "ae11fae0-9194-11e7-7a69-97110016c358",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2021-04-09 10:25:16.259",
- "name": "Пицца Пепперони барбекю",
- "description": "Если код проходит валидацию, значит с вашим нетбинсом что-то не так.длавдлповадлповад 2",
- "code": "00020",
- "externalCode": "22YIwsdIj50dN0toXot2H2",
- "archived": false,
- "pathName": "Пицца",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/bd78f771-9192-11e7-6b01-4b1d003beb61",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=bd78f771-9192-11e7-6b01-4b1d003beb61"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/ae11fae0-9194-11e7-7a69-97110016c358/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 35000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000000220"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "article": "hj8766",
- "weight": 0.444,
- "volume": 0.0,
- "variantsCount": 6,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/ae11fae0-9194-11e7-7a69-97110016c358/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/b5b38056-9193-11e7-6b01-4b1d003bfad5",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=b5b37c0d-9193-11e7-6b01-4b1d003bfad3"
- },
- "id": "b5b38056-9193-11e7-6b01-4b1d003bfad5",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2017-12-10 17:27:33.049",
- "name": "Стол ЛИННМОН",
- "code": "00009",
- "externalCode": "aSePPiVLgN85DMA6XOdD03",
- "archived": false,
- "pathName": "Мебель/Столы",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/d7c8bd44-9192-11e7-7a6c-d2a9002da5c5",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=d7c8bd44-9192-11e7-7a6c-d2a9002da5c5"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/b5b38056-9193-11e7-6b01-4b1d003bfad5/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 199900.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000000114"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 0,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/b5b38056-9193-11e7-6b01-4b1d003bfad5/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/be74c5b7-9194-11e7-7a69-8f550016debb",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=be74b8a9-9194-11e7-7a69-8f550016deb9"
- },
- "id": "be74c5b7-9194-11e7-7a69-8f550016debb",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2020-05-24 22:11:59.746",
- "name": "Пицца Студенческая",
- "code": "00021",
- "externalCode": "-6yi0vwthYTYZfGKeZLIs0",
- "archived": false,
- "pathName": "Пицца",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/bd78f771-9192-11e7-6b01-4b1d003beb61",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=bd78f771-9192-11e7-6b01-4b1d003beb61"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/be74c5b7-9194-11e7-7a69-8f550016debb/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 35000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 20000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000000237"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "weight": 0.555,
- "volume": 0.0,
- "variantsCount": 6,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/be74c5b7-9194-11e7-7a69-8f550016debb/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/bf685d96-145e-11ea-0a80-02b80018dbff",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=bf684d1c-145e-11ea-0a80-02b80018dbfd"
- },
- "id": "bf685d96-145e-11ea-0a80-02b80018dbff",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2019-12-01 20:20:33.872",
- "name": "Тест товар для тестов",
- "code": "00046",
- "externalCode": "ksMHMMPIio7TH9N1EGXbS0",
- "archived": false,
- "pathName": "Доп группа для тестов",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/aa89ac9c-145e-11ea-0a80-064d00191137",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=aa89ac9c-145e-11ea-0a80-064d00191137"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/bf685d96-145e-11ea-0a80-02b80018dbff/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 7700.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 11100.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 5500.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000004273"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 0,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/bf685d96-145e-11ea-0a80-02b80018dbff/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/c9b7a019-d532-11e7-7a6c-d2a90010f1e4",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=c9b798f8-d532-11e7-7a6c-d2a90010f1e2"
- },
- "id": "c9b7a019-d532-11e7-7a6c-d2a90010f1e4",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2017-11-29 21:26:16.775",
- "name": "Лоферы мужские PAT",
- "code": "00033",
- "externalCode": "RKVVj-Sghzq0L0pOwO1Hk0",
- "archived": false,
- "pathName": "Одежда/Обувь/Лоферы",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/af65012d-d532-11e7-7a69-8f5500089258",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=af65012d-d532-11e7-7a69-8f5500089258"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/c9b7a019-d532-11e7-7a6c-d2a90010f1e4/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 550000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000000350"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 0,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/c9b7a019-d532-11e7-7a6c-d2a90010f1e4/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/d7fee6a9-d532-11e7-7a6c-d2a90010f27e",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=d7fee0d0-d532-11e7-7a6c-d2a90010f27c"
- },
- "id": "d7fee6a9-d532-11e7-7a6c-d2a90010f27e",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2017-11-29 21:26:40.728",
- "name": "Лоферы мужские KEVIN",
- "code": "00034",
- "externalCode": "Nfje0Qr0hneIU-4-wTVWN0",
- "archived": false,
- "pathName": "Одежда/Обувь/Лоферы",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/af65012d-d532-11e7-7a69-8f5500089258",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=af65012d-d532-11e7-7a69-8f5500089258"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/d7fee6a9-d532-11e7-7a6c-d2a90010f27e/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 599000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000000367"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 0,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/d7fee6a9-d532-11e7-7a6c-d2a90010f27e/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/da162424-9193-11e7-7a6c-d2a9002dbfed",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=da161ce5-9193-11e7-7a6c-d2a9002dbfeb"
- },
- "id": "da162424-9193-11e7-7a6c-d2a9002dbfed",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2017-09-04 20:09:46.369",
- "name": "Кроссовки WMNS NIKE AIR MAX INVIGOR Nike",
- "code": "00010",
- "externalCode": "htEXnsbxgMWidNmkslREN3",
- "archived": false,
- "pathName": "Одежда/Обувь",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/e5fc4aab-9192-11e7-7a31-d0fd002d3e90",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=e5fc4aab-9192-11e7-7a31-d0fd002d3e90"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/da162424-9193-11e7-7a6c-d2a9002dbfed/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 359000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000000121"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 0,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/da162424-9193-11e7-7a6c-d2a9002dbfed/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/e8837883-ada5-11ea-0a80-030c002174c6",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=e883718a-ada5-11ea-0a80-030c002174c4"
- },
- "id": "e8837883-ada5-11ea-0a80-030c002174c6",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2021-04-19 11:29:49.378",
- "name": "Mercedes-Benz GLS 63 AMG",
- "code": "00051",
- "externalCode": "GNUE1DychTVVRWlFJJG6C1",
- "archived": false,
- "pathName": "Авто",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/1bbc413b-ada5-11ea-0a80-030c00217297",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=1bbc413b-ada5-11ea-0a80-030c00217297"
- }
- },
- "effectiveVat": 20,
- "effectiveVatEnabled": true,
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/e8837883-ada5-11ea-0a80-030c002174c6/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 995000000,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 795000000,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000004365"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 0,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/e8837883-ada5-11ea-0a80-030c002174c6/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/e9068a8f-270c-11e9-9107-5048000e95de",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=e9067a28-270c-11e9-9107-5048000e95dc"
- },
- "id": "e9068a8f-270c-11e9-9107-5048000e95de",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2021-04-19 19:17:24.115",
- "name": "Чехол мешок",
- "description": "Чехол универсальный для телефонов. Must have!",
- "code": "00041",
- "externalCode": "iCZ156cwj8O6wCrpBUJEA0",
- "archived": false,
- "pathName": "Электроника/Аксессуары",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/228c903e-a0ed-11eb-0a80-041000288acb",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=228c903e-a0ed-11eb-0a80-041000288acb"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/e9068a8f-270c-11e9-9107-5048000e95de/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 3,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 50000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 20000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 20000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000004099"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "article": "00041",
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 9,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/e9068a8f-270c-11e9-9107-5048000e95de/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/ef72edb0-9193-11e7-7a6c-d2a9002dc0e0",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=ef72e5d1-9193-11e7-7a6c-d2a9002dc0de"
- },
- "id": "ef72edb0-9193-11e7-7a6c-d2a9002dc0e0",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2017-09-04 20:10:26.812",
- "name": "Ботильоны Sweet Shoes",
- "code": "00011",
- "externalCode": "NFFEMQ2whnagd01di0Kwt1",
- "archived": false,
- "pathName": "Одежда/Обувь",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/e5fc4aab-9192-11e7-7a31-d0fd002d3e90",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=e5fc4aab-9192-11e7-7a31-d0fd002d3e90"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/ef72edb0-9193-11e7-7a6c-d2a9002dc0e0/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 330000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000000138"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 0,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/ef72edb0-9193-11e7-7a6c-d2a9002dc0e0/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/f156243d-9194-11e7-7a69-8f550016df53",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=f1561b5d-9194-11e7-7a69-8f550016df51"
- },
- "id": "f156243d-9194-11e7-7a69-8f550016df53",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2020-09-08 20:30:11.645",
- "name": "LED телевизор SONY KDL-43WD752",
- "code": "00023",
- "externalCode": "Cm14YZLbjtomh7OtPTLU01",
- "archived": false,
- "pathName": "Электроника",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/b3f6975e-9192-11e7-7a34-5acf002db9a8",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=b3f6975e-9192-11e7-7a34-5acf002db9a8"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/f156243d-9194-11e7-7a69-8f550016df53/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 3,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 4500000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 3500000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 4000000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000000251"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 0,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/f156243d-9194-11e7-7a69-8f550016df53/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/fe478ccf-70ce-11e8-9ff4-31500018ac0a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=fe478018-70ce-11e8-9ff4-31500018ac08"
- },
- "id": "fe478ccf-70ce-11e8-9ff4-31500018ac0a",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2019-02-13 23:14:34.075",
- "name": "Смартфон Samsung Galaxy S9",
- "code": "00039",
- "externalCode": "QhT5WDZxjVENlcl4NWUX20",
- "archived": false,
- "pathName": "Электроника",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/b3f6975e-9192-11e7-7a34-5acf002db9a8",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=b3f6975e-9192-11e7-7a34-5acf002db9a8"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/fe478ccf-70ce-11e8-9ff4-31500018ac0a/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 1,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 5400000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 4000000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 2000000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 1000000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000004013"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "article": "telSams",
- "weight": 0.5,
- "volume": 0.0,
- "variantsCount": 4,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/fe478ccf-70ce-11e8-9ff4-31500018ac0a/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- },
- {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/ffbeca32-1424-11ea-0a80-054600159b23",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/product/metadata",
- "type": "product",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=ffbec29f-1424-11ea-0a80-054600159b21"
- },
- "id": "ffbeca32-1424-11ea-0a80-054600159b23",
- "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
- "owner": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata",
- "type": "employee",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
- }
- },
- "shared": true,
- "group": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/group/metadata",
- "type": "group",
- "mediaType": "application/json"
- }
- },
- "updated": "2021-06-02 19:48:46.392",
- "name": "Яндекс.Станция",
- "description": "Маленькая и умная станция",
- "code": "00045",
- "externalCode": "Wvwt5aOmhkCzW5ST7rQSR3",
- "archived": false,
- "pathName": "Электроника",
- "productFolder": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/b3f6975e-9192-11e7-7a34-5acf002db9a8",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata",
- "type": "productfolder",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#good/edit?id=b3f6975e-9192-11e7-7a34-5acf002db9a8"
- }
- },
- "useParentVat": true,
- "uom": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata",
- "type": "uom",
- "mediaType": "application/json"
- }
- },
- "images": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/ffbeca32-1424-11ea-0a80-054600159b23/images",
- "type": "image",
- "mediaType": "application/json",
- "size": 4,
- "limit": 1000,
- "offset": 0
- }
- },
- "minPrice": {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "salePrices": [
- {
- "value": 1100000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
- "name": "Цена продажи",
- "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
- "name": "Опт",
- "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
- }
- },
- {
- "value": 0.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- },
- "priceType": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "type": "pricetype",
- "mediaType": "application/json"
- },
- "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
- "name": "Распродажа",
- "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
- }
- }
- ],
- "buyPrice": {
- "value": 800000.0,
- "currency": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959",
- "metadataHref": "https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata",
- "type": "currency",
- "mediaType": "application/json",
- "uuidHref": "https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
- }
- }
- },
- "barcodes": [
- {
- "ean13": "2000000004266"
- }
- ],
- "paymentItemType": "GOOD",
- "discountProhibited": false,
- "article": "ya-st",
- "weight": 0.0,
- "volume": 0.0,
- "variantsCount": 1,
- "isSerialTrackable": false,
- "trackingType": "NOT_TRACKED",
- "files": {
- "meta": {
- "href": "https://api.moysklad.ru/api/remap/1.2/entity/product/ffbeca32-1424-11ea-0a80-054600159b23/files",
- "type": "files",
- "mediaType": "application/json",
- "size": 0,
- "limit": 1000,
- "offset": 0
- }
- }
- }
- ]
+ "context": {
+ "employee": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/employee",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json"
+ }
+ }
+ },
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product",
+ "type": "product",
+ "mediaType": "application\/json",
+ "size": 35,
+ "limit": 1000,
+ "offset": 0
+ },
+ "rows": [
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/05f86f2e-9194-11e7-7a34-5acf002dc79f",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=05f86585-9194-11e7-7a34-5acf002dc79d"
+ },
+ "id": "05f86f2e-9194-11e7-7a34-5acf002dc79f",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2017-09-04 20:10:59.986",
+ "name": "Резиновые полусапоги Tommy Hilfiger",
+ "code": "00012",
+ "externalCode": "MqC9xSSSgPK2Q7JmdYB1j1",
+ "archived": false,
+ "pathName": "Одежда\/Обувь",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/e5fc4aab-9192-11e7-7a31-d0fd002d3e90",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=e5fc4aab-9192-11e7-7a31-d0fd002d3e90"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/05f86f2e-9194-11e7-7a34-5acf002dc79f\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 799000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000000145"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 0,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/05f86f2e-9194-11e7-7a34-5acf002dc79f\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/070ffbb6-ada6-11ea-0a80-02ee0026116c",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=070fed16-ada6-11ea-0a80-02ee0026116a"
+ },
+ "id": "070ffbb6-ada6-11ea-0a80-02ee0026116c",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2022-03-18 21:05:49.866",
+ "name": "Audi SQ8",
+ "code": "00052",
+ "externalCode": "ib8xrPPggb6BtO4ReQgqz3",
+ "archived": false,
+ "pathName": "Авто",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/1bbc413b-ada5-11ea-0a80-030c00217297",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=1bbc413b-ada5-11ea-0a80-030c00217297"
+ }
+ },
+ "effectiveVat": 20,
+ "effectiveVatEnabled": true,
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/070ffbb6-ada6-11ea-0a80-02ee0026116c\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 710000000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 510000000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000004372"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 0,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/070ffbb6-ada6-11ea-0a80-02ee0026116c\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/1e5fef97-9194-11e7-7a31-d0fd002d4d1d",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=1e5fe5a7-9194-11e7-7a31-d0fd002d4d1b"
+ },
+ "id": "1e5fef97-9194-11e7-7a31-d0fd002d4d1d",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2017-09-04 20:11:41.884",
+ "name": "Футболка Modis",
+ "code": "00013",
+ "externalCode": "bnyxcL5HjK5TewhsFNlSv0",
+ "archived": false,
+ "pathName": "Одежда\/Футболки",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/ddb0ca35-9192-11e7-7a6c-d2a9002da7de",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=ddb0ca35-9192-11e7-7a6c-d2a9002da7de"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/1e5fef97-9194-11e7-7a31-d0fd002d4d1d\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 45500,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000000152"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 0,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/1e5fef97-9194-11e7-7a31-d0fd002d4d1d\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/25942b3a-ada6-11ea-0a80-04ad0020922a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=25941c4d-ada6-11ea-0a80-04ad00209228"
+ },
+ "id": "25942b3a-ada6-11ea-0a80-04ad0020922a",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2020-06-13 21:47:28.072",
+ "name": "KIA Sorento 2020",
+ "code": "00053",
+ "externalCode": "kBJUJOBrieslk8ogsF4rm0",
+ "archived": false,
+ "pathName": "Авто",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/1bbc413b-ada5-11ea-0a80-030c00217297",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=1bbc413b-ada5-11ea-0a80-030c00217297"
+ }
+ },
+ "effectiveVat": 20,
+ "effectiveVatEnabled": true,
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/25942b3a-ada6-11ea-0a80-04ad0020922a\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 3,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 303490000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 203490000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000004389"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 0,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/25942b3a-ada6-11ea-0a80-04ad0020922a\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/27998481-9193-11e7-6b01-4b1d003bf072",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=27997e52-9193-11e7-6b01-4b1d003bf070"
+ },
+ "id": "27998481-9193-11e7-6b01-4b1d003bf072",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2022-03-18 22:23:25.811",
+ "name": "Диван ЛИКСЕЛЕ МУРБО",
+ "code": "00003",
+ "externalCode": "7DXOk9xxgKBpWO-rdJrMM1",
+ "archived": false,
+ "pathName": "Мебель\/Диваны",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/ca733750-9192-11e7-7a31-d0fd002d3da1",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=ca733750-9192-11e7-7a31-d0fd002d3da1"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/27998481-9193-11e7-6b01-4b1d003bf072\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 4,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 550000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000000053"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "article": "112",
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 0,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/27998481-9193-11e7-6b01-4b1d003bf072\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/2d0310cd-9194-11e7-7a6c-d2a9002dc49e",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=2d030a5c-9194-11e7-7a6c-d2a9002dc49c"
+ },
+ "id": "2d0310cd-9194-11e7-7a6c-d2a9002dc49e",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2019-04-28 19:56:17.088",
+ "name": "Футболка ТВОЕ",
+ "code": "00014",
+ "externalCode": "gP8FJExUh21zp1JNLZkya3",
+ "archived": false,
+ "pathName": "Одежда\/Футболки",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/ddb0ca35-9192-11e7-7a6c-d2a9002da7de",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=ddb0ca35-9192-11e7-7a6c-d2a9002da7de"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/2d0310cd-9194-11e7-7a6c-d2a9002dc49e\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 35000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 30000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000000169"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "country": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/country\/e8098539-d624-4d2f-b0a6-9f73544806fa",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/country\/metadata",
+ "type": "country",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#country\/edit?id=e8098539-d624-4d2f-b0a6-9f73544806fa"
+ }
+ },
+ "weight": 12,
+ "volume": 0,
+ "variantsCount": 15,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/2d0310cd-9194-11e7-7a6c-d2a9002dc49e\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/3d957525-9194-11e7-7a6c-d2a9002ddbfe",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=3d956c28-9194-11e7-7a6c-d2a9002ddbfc"
+ },
+ "id": "3d957525-9194-11e7-7a6c-d2a9002ddbfe",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2019-03-02 23:19:21.927",
+ "name": "Футболка Morgan",
+ "code": "00015",
+ "externalCode": "5ij7KARHgRc1XIw18WtGx3",
+ "archived": false,
+ "pathName": "Одежда\/Футболки",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/ddb0ca35-9192-11e7-7a6c-d2a9002da7de",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=ddb0ca35-9192-11e7-7a6c-d2a9002da7de"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/3d957525-9194-11e7-7a6c-d2a9002ddbfe\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 70000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 90000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 75000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000000176"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 0,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/3d957525-9194-11e7-7a6c-d2a9002ddbfe\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/4dc138a7-d532-11e7-7a69-8f55000890d1",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=4dc12d87-d532-11e7-7a69-8f55000890cf"
+ },
+ "id": "4dc138a7-d532-11e7-7a69-8f55000890d1",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2019-02-24 17:06:19.224",
+ "name": "Ботинки мужские RINGO",
+ "code": "00026",
+ "externalCode": "Lt-6EDVBjlPAtc5Hr7LV72",
+ "archived": false,
+ "pathName": "Одежда\/Обувь\/Ботинки",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/380c02c8-d532-11e7-7a6c-d2a90010eb13",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=380c02c8-d532-11e7-7a6c-d2a90010eb13"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/4dc138a7-d532-11e7-7a69-8f55000890d1\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 670000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 300000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000000282"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "country": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/country\/9df7c2c3-7782-4c5c-a8ed-1102af611608",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/country\/metadata",
+ "type": "country",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#country\/edit?id=9df7c2c3-7782-4c5c-a8ed-1102af611608"
+ }
+ },
+ "article": "98765",
+ "weight": 333,
+ "volume": 55,
+ "variantsCount": 5,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/4dc138a7-d532-11e7-7a69-8f55000890d1\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/5b91e8ab-9194-11e7-7a69-8f550016dbc9",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=5b91e066-9194-11e7-7a69-8f550016dbc7"
+ },
+ "id": "5b91e8ab-9194-11e7-7a69-8f550016dbc9",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2021-04-24 13:54:21.164",
+ "name": "Брюки спортивные ESS No.1 Sweat Pants, FL, cl Puma",
+ "code": "00016",
+ "externalCode": "yaqRSVYlggOj3EFvYY7Jb1",
+ "archived": false,
+ "pathName": "Одежда\/Штаны",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/e9caa413-9192-11e7-7a69-8f550016d504",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=e9caa413-9192-11e7-7a69-8f550016d504"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/5b91e8ab-9194-11e7-7a69-8f550016dbc9\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 300000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 200000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000000183"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 3,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/5b91e8ab-9194-11e7-7a69-8f550016dbc9\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/5f020c7c-9193-11e7-7a6c-d2a9002dadbf",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=5f020701-9193-11e7-7a6c-d2a9002dadbd"
+ },
+ "id": "5f020c7c-9193-11e7-7a6c-d2a9002dadbf",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2017-09-04 20:06:19.852",
+ "name": "Кресло ЛИКСЕЛЕ ЛЁВОС",
+ "code": "00004",
+ "externalCode": "DLqdzz4siAKcFKjFx4eyM3",
+ "archived": false,
+ "pathName": "Мебель\/Кресла",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/d150c807-9192-11e7-7a31-d0fd002d3dd7",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=d150c807-9192-11e7-7a31-d0fd002d3dd7"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/5f020c7c-9193-11e7-7a6c-d2a9002dadbf\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 999900,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000000060"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 0,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/5f020c7c-9193-11e7-7a6c-d2a9002dadbf\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/6176b71b-d532-11e7-6b01-4b1d00127e56",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=6176b195-d532-11e7-6b01-4b1d00127e54"
+ },
+ "id": "6176b71b-d532-11e7-6b01-4b1d00127e56",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2017-11-30 21:42:10.408",
+ "name": "Ботинки мужские STREAM",
+ "code": "00027",
+ "externalCode": "0GpGTPN-iUz0eAGEW4dAm3",
+ "archived": false,
+ "pathName": "Одежда\/Обувь\/Ботинки",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/380c02c8-d532-11e7-7a6c-d2a90010eb13",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=380c02c8-d532-11e7-7a6c-d2a90010eb13"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/6176b71b-d532-11e7-6b01-4b1d00127e56\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 750000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000000299"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 5,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/6176b71b-d532-11e7-6b01-4b1d00127e56\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/68d488c2-ada5-11ea-0a80-04ae00221705",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=68d47c51-ada5-11ea-0a80-04ae00221703"
+ },
+ "id": "68d488c2-ada5-11ea-0a80-04ae00221705",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2020-06-13 21:43:37.583",
+ "name": "KIA K900 Premium 5.0",
+ "code": "00050",
+ "externalCode": "oQUcYmk3jRXcSEQZYTkk30",
+ "archived": false,
+ "pathName": "Авто",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/1bbc413b-ada5-11ea-0a80-030c00217297",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=1bbc413b-ada5-11ea-0a80-030c00217297"
+ }
+ },
+ "effectiveVat": 20,
+ "effectiveVatEnabled": true,
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/68d488c2-ada5-11ea-0a80-04ae00221705\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 509490000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 300000000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000004358"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "country": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/country\/851806bf-6440-42c3-b6cd-b8fc8abab3f2",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/country\/metadata",
+ "type": "country",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#country\/edit?id=851806bf-6440-42c3-b6cd-b8fc8abab3f2"
+ }
+ },
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 0,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/68d488c2-ada5-11ea-0a80-04ae00221705\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/6ac21c71-9192-11e7-6b01-4b1d003be450",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=6ac21533-9192-11e7-6b01-4b1d003be44e"
+ },
+ "id": "6ac21c71-9192-11e7-6b01-4b1d003be450",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2022-04-08 22:04:30.639",
+ "name": "Диван Альфа",
+ "description": "мчмсмчсмчсмчсм\nаавпвапвапвапы\nываыва",
+ "code": "00001",
+ "externalCode": "DGDVPAkwiqhSv-ZKi9dxC1",
+ "archived": false,
+ "pathName": "Мебель\/Диваны",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/ca733750-9192-11e7-7a31-d0fd002d3da1",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=ca733750-9192-11e7-7a31-d0fd002d3da1"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/6ac21c71-9192-11e7-6b01-4b1d003be450\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 1000000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000000039"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "country": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/country\/9df7c2c3-7782-4c5c-a8ed-1102af611608",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/country\/metadata",
+ "type": "country",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#country\/edit?id=9df7c2c3-7782-4c5c-a8ed-1102af611608"
+ }
+ },
+ "article": "113",
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 0,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/6ac21c71-9192-11e7-6b01-4b1d003be450\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/7429e6fb-9193-11e7-7a31-d0fd002d4683",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=7429dded-9193-11e7-7a31-d0fd002d4681"
+ },
+ "id": "7429e6fb-9193-11e7-7a31-d0fd002d4683",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2017-09-04 20:06:55.353",
+ "name": "Кресло ТУЛЬСТА",
+ "code": "00005",
+ "externalCode": "njyUK4D5ii5pILiRThxPq1",
+ "archived": false,
+ "pathName": "Мебель\/Кресла",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/d150c807-9192-11e7-7a31-d0fd002d3dd7",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=d150c807-9192-11e7-7a31-d0fd002d3dd7"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/7429e6fb-9193-11e7-7a31-d0fd002d4683\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 599900,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000000077"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 0,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/7429e6fb-9193-11e7-7a31-d0fd002d4683\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/842736b8-9193-11e7-6b01-4b1d003bf57d",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=84273241-9193-11e7-6b01-4b1d003bf57b"
+ },
+ "id": "842736b8-9193-11e7-6b01-4b1d003bf57d",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2017-09-04 20:07:22.175",
+ "name": "Кресло ПЕЛЛО",
+ "code": "00006",
+ "externalCode": "GNVBkzOCg4CaB8EBnvjVX2",
+ "archived": false,
+ "pathName": "Мебель\/Кресла",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/d150c807-9192-11e7-7a31-d0fd002d3dd7",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=d150c807-9192-11e7-7a31-d0fd002d3dd7"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/842736b8-9193-11e7-6b01-4b1d003bf57d\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 459900,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000000084"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 0,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/842736b8-9193-11e7-6b01-4b1d003bf57d\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/8cbf00e4-d532-11e7-7a31-d0fd001107b3",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=8cbef8e7-d532-11e7-7a31-d0fd001107b1"
+ },
+ "id": "8cbf00e4-d532-11e7-7a31-d0fd001107b3",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2017-11-29 21:24:34.498",
+ "name": "Полуботинки мужские STELS",
+ "code": "00029",
+ "externalCode": "AI61pobLho7wX-lLo7I2O3",
+ "archived": false,
+ "pathName": "Одежда\/Обувь\/Полуботинки",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/7d637021-d532-11e7-7a34-5acf001098aa",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=7d637021-d532-11e7-7a34-5acf001098aa"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/8cbf00e4-d532-11e7-7a31-d0fd001107b3\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 650000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000000312"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 0,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/8cbf00e4-d532-11e7-7a31-d0fd001107b3\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/99b623dd-9194-11e7-7a34-5acf002dccdf",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=99b61eb9-9194-11e7-7a34-5acf002dccdd"
+ },
+ "id": "99b623dd-9194-11e7-7a34-5acf002dccdf",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2018-04-23 11:11:17.187",
+ "name": "Пицца Чикаго",
+ "code": "00019",
+ "externalCode": "wkjURlzEh1bD-mWihR1eu0",
+ "archived": false,
+ "pathName": "Пицца",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/bd78f771-9192-11e7-6b01-4b1d003beb61",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=bd78f771-9192-11e7-6b01-4b1d003beb61"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/99b623dd-9194-11e7-7a34-5acf002dccdf\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 35000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000000213"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "weight": 0.33300000000000002,
+ "volume": 0,
+ "variantsCount": 6,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/99b623dd-9194-11e7-7a34-5acf002dccdf\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/99e68868-d532-11e7-6b01-4b1d00128082",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=99e681be-d532-11e7-6b01-4b1d00128080"
+ },
+ "id": "99e68868-d532-11e7-6b01-4b1d00128082",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2017-11-29 21:24:56.547",
+ "name": "Полуботинки мужские PAT",
+ "code": "00030",
+ "externalCode": "-3l8w357ggKMJATxtl3y91",
+ "archived": false,
+ "pathName": "Одежда\/Обувь\/Полуботинки",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/7d637021-d532-11e7-7a34-5acf001098aa",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=7d637021-d532-11e7-7a34-5acf001098aa"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/99e68868-d532-11e7-6b01-4b1d00128082\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 520000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000000329"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 0,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/99e68868-d532-11e7-6b01-4b1d00128082\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/9d3a1d6c-2f3c-11eb-0a80-04610022bbdd",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=9d3a1399-2f3c-11eb-0a80-04610022bbdb"
+ },
+ "id": "9d3a1d6c-2f3c-11eb-0a80-04610022bbdd",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2020-11-25 19:40:57.205",
+ "name": "Geely Tugella",
+ "code": "00054",
+ "externalCode": "yq3GkFgJjJwB5393J5WKz3",
+ "archived": false,
+ "pathName": "Авто",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/1bbc413b-ada5-11ea-0a80-030c00217297",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=1bbc413b-ada5-11ea-0a80-030c00217297"
+ }
+ },
+ "effectiveVat": 20,
+ "effectiveVatEnabled": true,
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/9d3a1d6c-2f3c-11eb-0a80-04610022bbdd\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 3,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 250000000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 200000000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000004396"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "article": "gt",
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 0,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/9d3a1d6c-2f3c-11eb-0a80-04610022bbdd\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/9f88ac50-9193-11e7-7a69-97110016bc89",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=9f88a497-9193-11e7-7a69-97110016bc87"
+ },
+ "id": "9f88ac50-9193-11e7-7a69-97110016bc89",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2017-09-04 20:08:08.118",
+ "name": "Стол Маррен",
+ "code": "00007",
+ "externalCode": "QZfylYzVhKhjOyqCXhh6n2",
+ "archived": false,
+ "pathName": "Мебель\/Столы",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/d7c8bd44-9192-11e7-7a6c-d2a9002da5c5",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=d7c8bd44-9192-11e7-7a6c-d2a9002da5c5"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/9f88ac50-9193-11e7-7a69-97110016bc89\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 59900,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000000091"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 0,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/9f88ac50-9193-11e7-7a69-97110016bc89\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/a90dcdca-d532-11e7-7a6c-d2a90010f132",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=a90dc4ca-d532-11e7-7a6c-d2a90010f130"
+ },
+ "id": "a90dcdca-d532-11e7-7a6c-d2a90010f132",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2017-11-29 21:25:21.985",
+ "name": "Полуботинки мужские POLO",
+ "code": "00031",
+ "externalCode": "qqTwEawohouUjeuTYlg232",
+ "archived": false,
+ "pathName": "Одежда\/Обувь\/Полуботинки",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/7d637021-d532-11e7-7a34-5acf001098aa",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=7d637021-d532-11e7-7a34-5acf001098aa"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/a90dcdca-d532-11e7-7a6c-d2a90010f132\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 570000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000000336"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 0,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/a90dcdca-d532-11e7-7a6c-d2a90010f132\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/ad12bd15-9193-11e7-7a6c-d2a9002db03b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=ad12b742-9193-11e7-7a6c-d2a9002db039"
+ },
+ "id": "ad12bd15-9193-11e7-7a6c-d2a9002db03b",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2017-09-04 20:08:30.833",
+ "name": "Стол МИККЕ",
+ "code": "00008",
+ "externalCode": "I7x15k3vizq4jppSCq7321",
+ "archived": false,
+ "pathName": "Мебель\/Столы",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/d7c8bd44-9192-11e7-7a6c-d2a9002da5c5",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=d7c8bd44-9192-11e7-7a6c-d2a9002da5c5"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/ad12bd15-9193-11e7-7a6c-d2a9002db03b\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 599900,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000000107"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 0,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/ad12bd15-9193-11e7-7a6c-d2a9002db03b\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/ae11fae0-9194-11e7-7a69-97110016c358",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=ae11f49b-9194-11e7-7a69-97110016c356"
+ },
+ "id": "ae11fae0-9194-11e7-7a69-97110016c358",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2021-04-09 10:25:16.259",
+ "name": "Пицца Пепперони барбекю",
+ "description": "Если код проходит валидацию, значит с вашим нетбинсом что-то не так.длавдлповадлповад 2",
+ "code": "00020",
+ "externalCode": "22YIwsdIj50dN0toXot2H2",
+ "archived": false,
+ "pathName": "Пицца",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/bd78f771-9192-11e7-6b01-4b1d003beb61",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=bd78f771-9192-11e7-6b01-4b1d003beb61"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/ae11fae0-9194-11e7-7a69-97110016c358\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 35000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000000220"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "article": "hj8766",
+ "weight": 0.44400000000000001,
+ "volume": 0,
+ "variantsCount": 6,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/ae11fae0-9194-11e7-7a69-97110016c358\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/b5b38056-9193-11e7-6b01-4b1d003bfad5",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=b5b37c0d-9193-11e7-6b01-4b1d003bfad3"
+ },
+ "id": "b5b38056-9193-11e7-6b01-4b1d003bfad5",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2017-12-10 17:27:33.049",
+ "name": "Стол ЛИННМОН",
+ "code": "00009",
+ "externalCode": "aSePPiVLgN85DMA6XOdD03",
+ "archived": false,
+ "pathName": "Мебель\/Столы",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/d7c8bd44-9192-11e7-7a6c-d2a9002da5c5",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=d7c8bd44-9192-11e7-7a6c-d2a9002da5c5"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/b5b38056-9193-11e7-6b01-4b1d003bfad5\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 199900,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000000114"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 0,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/b5b38056-9193-11e7-6b01-4b1d003bfad5\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/be74c5b7-9194-11e7-7a69-8f550016debb",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=be74b8a9-9194-11e7-7a69-8f550016deb9"
+ },
+ "id": "be74c5b7-9194-11e7-7a69-8f550016debb",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2020-05-24 22:11:59.746",
+ "name": "Пицца Студенческая",
+ "code": "00021",
+ "externalCode": "-6yi0vwthYTYZfGKeZLIs0",
+ "archived": false,
+ "pathName": "Пицца",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/bd78f771-9192-11e7-6b01-4b1d003beb61",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=bd78f771-9192-11e7-6b01-4b1d003beb61"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/be74c5b7-9194-11e7-7a69-8f550016debb\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 35000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 20000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000000237"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "weight": 0.55500000000000005,
+ "volume": 0,
+ "variantsCount": 6,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/be74c5b7-9194-11e7-7a69-8f550016debb\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/c9b7a019-d532-11e7-7a6c-d2a90010f1e4",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=c9b798f8-d532-11e7-7a6c-d2a90010f1e2"
+ },
+ "id": "c9b7a019-d532-11e7-7a6c-d2a90010f1e4",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2017-11-29 21:26:16.775",
+ "name": "Лоферы мужские PAT",
+ "code": "00033",
+ "externalCode": "RKVVj-Sghzq0L0pOwO1Hk0",
+ "archived": false,
+ "pathName": "Одежда\/Обувь\/Лоферы",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/af65012d-d532-11e7-7a69-8f5500089258",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=af65012d-d532-11e7-7a69-8f5500089258"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/c9b7a019-d532-11e7-7a6c-d2a90010f1e4\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 550000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000000350"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 0,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/c9b7a019-d532-11e7-7a6c-d2a90010f1e4\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/d7fee6a9-d532-11e7-7a6c-d2a90010f27e",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=d7fee0d0-d532-11e7-7a6c-d2a90010f27c"
+ },
+ "id": "d7fee6a9-d532-11e7-7a6c-d2a90010f27e",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2017-11-29 21:26:40.728",
+ "name": "Лоферы мужские KEVIN",
+ "code": "00034",
+ "externalCode": "Nfje0Qr0hneIU-4-wTVWN0",
+ "archived": false,
+ "pathName": "Одежда\/Обувь\/Лоферы",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/af65012d-d532-11e7-7a69-8f5500089258",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=af65012d-d532-11e7-7a69-8f5500089258"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/d7fee6a9-d532-11e7-7a6c-d2a90010f27e\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 599000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000000367"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 0,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/d7fee6a9-d532-11e7-7a6c-d2a90010f27e\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/da162424-9193-11e7-7a6c-d2a9002dbfed",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=da161ce5-9193-11e7-7a6c-d2a9002dbfeb"
+ },
+ "id": "da162424-9193-11e7-7a6c-d2a9002dbfed",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2017-09-04 20:09:46.369",
+ "name": "Кроссовки WMNS NIKE AIR MAX INVIGOR Nike",
+ "code": "00010",
+ "externalCode": "htEXnsbxgMWidNmkslREN3",
+ "archived": false,
+ "pathName": "Одежда\/Обувь",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/e5fc4aab-9192-11e7-7a31-d0fd002d3e90",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=e5fc4aab-9192-11e7-7a31-d0fd002d3e90"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/da162424-9193-11e7-7a6c-d2a9002dbfed\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 359000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000000121"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 0,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/da162424-9193-11e7-7a6c-d2a9002dbfed\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/e8837883-ada5-11ea-0a80-030c002174c6",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=e883718a-ada5-11ea-0a80-030c002174c4"
+ },
+ "id": "e8837883-ada5-11ea-0a80-030c002174c6",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2021-04-19 11:29:49.378",
+ "name": "Mercedes-Benz GLS 63 AMG",
+ "code": "00051",
+ "externalCode": "GNUE1DychTVVRWlFJJG6C1",
+ "archived": false,
+ "pathName": "Авто",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/1bbc413b-ada5-11ea-0a80-030c00217297",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=1bbc413b-ada5-11ea-0a80-030c00217297"
+ }
+ },
+ "effectiveVat": 20,
+ "effectiveVatEnabled": true,
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/e8837883-ada5-11ea-0a80-030c002174c6\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 995000000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 795000000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000004365"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 0,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/e8837883-ada5-11ea-0a80-030c002174c6\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/e9068a8f-270c-11e9-9107-5048000e95de",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=e9067a28-270c-11e9-9107-5048000e95dc"
+ },
+ "id": "e9068a8f-270c-11e9-9107-5048000e95de",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2021-04-19 19:17:24.115",
+ "name": "Чехол мешок",
+ "description": "Чехол универсальный для телефонов. Must have!",
+ "code": "00041",
+ "externalCode": "iCZ156cwj8O6wCrpBUJEA0",
+ "archived": false,
+ "pathName": "Аксессуары",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/228c903e-a0ed-11eb-0a80-041000288acb",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=228c903e-a0ed-11eb-0a80-041000288acb"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/e9068a8f-270c-11e9-9107-5048000e95de\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 3,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 50000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 20000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 20000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000004099"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "article": "00041",
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 9,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/e9068a8f-270c-11e9-9107-5048000e95de\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/e94c3184-7644-11ee-0a80-143f001044a3",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=e94c280f-7644-11ee-0a80-143f001044a1"
+ },
+ "id": "e94c3184-7644-11ee-0a80-143f001044a3",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2023-10-29 13:21:23.866",
+ "name": "Чехол для Google Pixel 7 Nillkin Super Frosted Shield Pro Case",
+ "description": "Встречайте версия Pro Case это обновленная версия знаменитого чехла Frosted Shield Case от компании Nillkin\nКачественный чехол от мирового производителя - компании Nillkin. Качество проверенное временем!\nЧехол премиум класса Nillkin Super Frosted Shield Pro Case для Google Pixel 7 , зеленый\nЧехол накладка это комбинация качественных материалов для защиты Вашего смартфона - чехол выполнен основная часть из высококачественного пластика PC, и окантовка из эластичного термополиуретана TPU, внешняя часть имеет рельефный точечный дизайн, поверхность износостойкая, противоскользящая предотвращает выскальзывание телефона из рук, защищенная от отпечатков пальцев и легко моющаяся. Покрытие с защитой от УФ излучения для защиты чехла от выгорания на солнце.\nОкантовка чехла по периметру из эластичного термополиуретана TPU полностью закрывает все боковые грани и защитит при падении.\nУглы чехла усилены бамперами из пластика. Боковые грани чехла с рельефными насечками для уверенного удержания чехла в руке.\nПо периметру тыльной камеры имеется защитный бортик высотой 0.5 мм.\nЭлегантный чехол. Тонкий, легкий, отличный чехол Nillkin!\nВ конструкции предусмотрены необходимые отверстия для доступа к портам, а также повторители аппаратных клавиш, чувствительные к нажатию и не снижающие удобства их использования.\nНовая модель чехла, закрывает все грани смартфона, боковые, верхнюю и нижнюю.\nДля Google Pixel 7",
+ "code": "00055",
+ "externalCode": "E2fwlP2qitXq4cN6cJP5U0",
+ "archived": false,
+ "pathName": "Аксессуары",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/228c903e-a0ed-11eb-0a80-041000288acb",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=228c903e-a0ed-11eb-0a80-041000288acb"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/e94c3184-7644-11ee-0a80-143f001044a3\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 4,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 111100,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 55500,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000004518"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "article": "Frosred-Pixel-7-Green",
+ "weight": 111,
+ "volume": 222,
+ "variantsCount": 0,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/e94c3184-7644-11ee-0a80-143f001044a3\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/ef72edb0-9193-11e7-7a6c-d2a9002dc0e0",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=ef72e5d1-9193-11e7-7a6c-d2a9002dc0de"
+ },
+ "id": "ef72edb0-9193-11e7-7a6c-d2a9002dc0e0",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2017-09-04 20:10:26.812",
+ "name": "Ботильоны Sweet Shoes",
+ "code": "00011",
+ "externalCode": "NFFEMQ2whnagd01di0Kwt1",
+ "archived": false,
+ "pathName": "Одежда\/Обувь",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/e5fc4aab-9192-11e7-7a31-d0fd002d3e90",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=e5fc4aab-9192-11e7-7a31-d0fd002d3e90"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/ef72edb0-9193-11e7-7a6c-d2a9002dc0e0\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 330000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000000138"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 0,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/ef72edb0-9193-11e7-7a6c-d2a9002dc0e0\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/f156243d-9194-11e7-7a69-8f550016df53",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=f1561b5d-9194-11e7-7a69-8f550016df51"
+ },
+ "id": "f156243d-9194-11e7-7a69-8f550016df53",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2020-09-08 20:30:11.645",
+ "name": "LED телевизор SONY KDL-43WD752",
+ "code": "00023",
+ "externalCode": "Cm14YZLbjtomh7OtPTLU01",
+ "archived": false,
+ "pathName": "Электроника",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/b3f6975e-9192-11e7-7a34-5acf002db9a8",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=b3f6975e-9192-11e7-7a34-5acf002db9a8"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/f156243d-9194-11e7-7a69-8f550016df53\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 3,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 4500000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 3500000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 4000000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000000251"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 0,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/f156243d-9194-11e7-7a69-8f550016df53\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/fe478ccf-70ce-11e8-9ff4-31500018ac0a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=fe478018-70ce-11e8-9ff4-31500018ac08"
+ },
+ "id": "fe478ccf-70ce-11e8-9ff4-31500018ac0a",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2019-02-13 23:14:34.075",
+ "name": "Смартфон Samsung Galaxy S9",
+ "code": "00039",
+ "externalCode": "QhT5WDZxjVENlcl4NWUX20",
+ "archived": false,
+ "pathName": "Электроника",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/b3f6975e-9192-11e7-7a34-5acf002db9a8",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=b3f6975e-9192-11e7-7a34-5acf002db9a8"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/fe478ccf-70ce-11e8-9ff4-31500018ac0a\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 1,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 5400000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 4000000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 2000000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 1000000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000004013"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "article": "telSams",
+ "weight": 0.5,
+ "volume": 0,
+ "variantsCount": 4,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/fe478ccf-70ce-11e8-9ff4-31500018ac0a\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ },
+ {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/ffbeca32-1424-11ea-0a80-054600159b23",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/metadata",
+ "type": "product",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=ffbec29f-1424-11ea-0a80-054600159b21"
+ },
+ "id": "ffbeca32-1424-11ea-0a80-054600159b23",
+ "accountId": "1f2036af-9192-11e7-7a69-97110001d249",
+ "owner": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/1f2ec2de-9192-11e7-7a69-97110016a92b",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/employee\/metadata",
+ "type": "employee",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#employee\/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b"
+ }
+ },
+ "shared": true,
+ "group": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/1f206231-9192-11e7-7a69-97110001d24a",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/group\/metadata",
+ "type": "group",
+ "mediaType": "application\/json"
+ }
+ },
+ "updated": "2021-06-02 19:48:46.392",
+ "name": "Яндекс.Станция",
+ "description": "Маленькая и умная станция",
+ "code": "00045",
+ "externalCode": "Wvwt5aOmhkCzW5ST7rQSR3",
+ "archived": false,
+ "pathName": "Электроника",
+ "productFolder": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/b3f6975e-9192-11e7-7a34-5acf002db9a8",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/productfolder\/metadata",
+ "type": "productfolder",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#good\/edit?id=b3f6975e-9192-11e7-7a34-5acf002db9a8"
+ }
+ },
+ "useParentVat": true,
+ "uom": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/19f1edc0-fc42-4001-94cb-c9ec9c62ec10",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/uom\/metadata",
+ "type": "uom",
+ "mediaType": "application\/json"
+ }
+ },
+ "images": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/ffbeca32-1424-11ea-0a80-054600159b23\/images",
+ "type": "image",
+ "mediaType": "application\/json",
+ "size": 4,
+ "limit": 1000,
+ "offset": 0
+ }
+ },
+ "minPrice": {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "salePrices": [
+ {
+ "value": 1100000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/1f3c1593-9192-11e7-7a69-97110016a95a",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "1f3c1593-9192-11e7-7a69-97110016a95a",
+ "name": "Цена продажи",
+ "externalCode": "cbcf493b-55bc-11d9-848a-00112f43529a"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "e9e8d47f-2451-11e8-9ff4-34e80019ace1",
+ "name": "Опт",
+ "externalCode": "a59e79d7-1826-4f1a-a04c-c4e60fc2e07e"
+ }
+ },
+ {
+ "value": 0,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ },
+ "priceType": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/context\/companysettings\/pricetype\/bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "type": "pricetype",
+ "mediaType": "application\/json"
+ },
+ "id": "bcf7a583-6ef3-11e8-9109-f8fc00314515",
+ "name": "Распродажа",
+ "externalCode": "db0eabb7-21c2-42b7-b70f-432505bb4d97"
+ }
+ }
+ ],
+ "buyPrice": {
+ "value": 800000,
+ "currency": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/1f3ac651-9192-11e7-7a69-97110016a959",
+ "metadataHref": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/currency\/metadata",
+ "type": "currency",
+ "mediaType": "application\/json",
+ "uuidHref": "https:\/\/online.moysklad.ru\/app\/#currency\/edit?id=1f3ac651-9192-11e7-7a69-97110016a959"
+ }
+ }
+ },
+ "barcodes": [
+ {
+ "ean13": "2000000004266"
+ }
+ ],
+ "paymentItemType": "GOOD",
+ "discountProhibited": false,
+ "article": "ya-st",
+ "weight": 0,
+ "volume": 0,
+ "variantsCount": 1,
+ "isSerialTrackable": false,
+ "trackingType": "NOT_TRACKED",
+ "files": {
+ "meta": {
+ "href": "https:\/\/api.moysklad.ru\/api\/remap\/1.2\/entity\/product\/ffbeca32-1424-11ea-0a80-054600159b23\/files",
+ "type": "files",
+ "mediaType": "application\/json",
+ "size": 0,
+ "limit": 1000,
+ "offset": 0
+ }
+ }
+ }
+ ]
}
diff --git a/tests/dd.md b/tests/dd.md
new file mode 100644
index 0000000..70c1ead
--- /dev/null
+++ b/tests/dd.md
@@ -0,0 +1,4093 @@
+Array
+(
+ [0] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/05f86f2e-9194-11e7-7a34-5acf002dc79f
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/product/metadata
+ [type] => product
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=05f86585-9194-11e7-7a34-5acf002dc79d
+ )
+
+ [id] => 05f86f2e-9194-11e7-7a34-5acf002dc79f
+ [accountId] => 1f2036af-9192-11e7-7a69-97110001d249
+ [owner] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata
+ [type] => employee
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b
+ )
+
+ )
+
+ [shared] => 1
+ [group] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/group/metadata
+ [type] => group
+ [mediaType] => application/json
+ )
+
+ )
+
+ [updated] => 2017-09-04 20:10:59.986
+ [name] => Резиновые полусапоги Tommy Hilfiger
+ [code] => 00012
+ [externalCode] => MqC9xSSSgPK2Q7JmdYB1j1
+ [archived] =>
+ [pathName] => Одежда/Обувь
+ [productFolder] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/e5fc4aab-9192-11e7-7a31-d0fd002d3e90
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata
+ [type] => productfolder
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=e5fc4aab-9192-11e7-7a31-d0fd002d3e90
+ )
+
+ )
+
+ [useParentVat] => 1
+ [uom] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata
+ [type] => uom
+ [mediaType] => application/json
+ )
+
+ )
+
+ [images] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/05f86f2e-9194-11e7-7a34-5acf002dc79f/images
+ [type] => image
+ [mediaType] => application/json
+ [size] => 1
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ [minPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [salePrices] => Array
+ (
+ [0] => Array
+ (
+ [value] => 799000
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => 1f3c1593-9192-11e7-7a69-97110016a95a
+ [name] => Цена продажи
+ [externalCode] => cbcf493b-55bc-11d9-848a-00112f43529a
+ )
+
+ )
+
+ [1] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [name] => Опт
+ [externalCode] => a59e79d7-1826-4f1a-a04c-c4e60fc2e07e
+ )
+
+ )
+
+ [2] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [name] => Распродажа
+ [externalCode] => db0eabb7-21c2-42b7-b70f-432505bb4d97
+ )
+
+ )
+
+ )
+
+ [buyPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [barcodes] => Array
+ (
+ [0] => Array
+ (
+ [ean13] => 2000000000145
+ )
+
+ )
+
+ [paymentItemType] => GOOD
+ [discountProhibited] =>
+ [weight] => 0
+ [volume] => 0
+ [variantsCount] => 0
+ [isSerialTrackable] =>
+ [trackingType] => NOT_TRACKED
+ [files] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/05f86f2e-9194-11e7-7a34-5acf002dc79f/files
+ [type] => files
+ [mediaType] => application/json
+ [size] => 0
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ )
+
+ [1] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/1e5fef97-9194-11e7-7a31-d0fd002d4d1d
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/product/metadata
+ [type] => product
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=1e5fe5a7-9194-11e7-7a31-d0fd002d4d1b
+ )
+
+ [id] => 1e5fef97-9194-11e7-7a31-d0fd002d4d1d
+ [accountId] => 1f2036af-9192-11e7-7a69-97110001d249
+ [owner] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata
+ [type] => employee
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b
+ )
+
+ )
+
+ [shared] => 1
+ [group] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/group/metadata
+ [type] => group
+ [mediaType] => application/json
+ )
+
+ )
+
+ [updated] => 2017-09-04 20:11:41.884
+ [name] => Футболка Modis
+ [code] => 00013
+ [externalCode] => bnyxcL5HjK5TewhsFNlSv0
+ [archived] =>
+ [pathName] => Одежда/Футболки
+ [productFolder] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/ddb0ca35-9192-11e7-7a6c-d2a9002da7de
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata
+ [type] => productfolder
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=ddb0ca35-9192-11e7-7a6c-d2a9002da7de
+ )
+
+ )
+
+ [useParentVat] => 1
+ [uom] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata
+ [type] => uom
+ [mediaType] => application/json
+ )
+
+ )
+
+ [images] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/1e5fef97-9194-11e7-7a31-d0fd002d4d1d/images
+ [type] => image
+ [mediaType] => application/json
+ [size] => 1
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ [minPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [salePrices] => Array
+ (
+ [0] => Array
+ (
+ [value] => 45500
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => 1f3c1593-9192-11e7-7a69-97110016a95a
+ [name] => Цена продажи
+ [externalCode] => cbcf493b-55bc-11d9-848a-00112f43529a
+ )
+
+ )
+
+ [1] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [name] => Опт
+ [externalCode] => a59e79d7-1826-4f1a-a04c-c4e60fc2e07e
+ )
+
+ )
+
+ [2] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [name] => Распродажа
+ [externalCode] => db0eabb7-21c2-42b7-b70f-432505bb4d97
+ )
+
+ )
+
+ )
+
+ [buyPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [barcodes] => Array
+ (
+ [0] => Array
+ (
+ [ean13] => 2000000000152
+ )
+
+ )
+
+ [paymentItemType] => GOOD
+ [discountProhibited] =>
+ [weight] => 0
+ [volume] => 0
+ [variantsCount] => 0
+ [isSerialTrackable] =>
+ [trackingType] => NOT_TRACKED
+ [files] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/1e5fef97-9194-11e7-7a31-d0fd002d4d1d/files
+ [type] => files
+ [mediaType] => application/json
+ [size] => 0
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ )
+
+ [2] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/2d0310cd-9194-11e7-7a6c-d2a9002dc49e
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/product/metadata
+ [type] => product
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=2d030a5c-9194-11e7-7a6c-d2a9002dc49c
+ )
+
+ [id] => 2d0310cd-9194-11e7-7a6c-d2a9002dc49e
+ [accountId] => 1f2036af-9192-11e7-7a69-97110001d249
+ [owner] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata
+ [type] => employee
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b
+ )
+
+ )
+
+ [shared] => 1
+ [group] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/group/metadata
+ [type] => group
+ [mediaType] => application/json
+ )
+
+ )
+
+ [updated] => 2019-04-28 19:56:17.088
+ [name] => Футболка ТВОЕ
+ [code] => 00014
+ [externalCode] => gP8FJExUh21zp1JNLZkya3
+ [archived] =>
+ [pathName] => Одежда/Футболки
+ [productFolder] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/ddb0ca35-9192-11e7-7a6c-d2a9002da7de
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata
+ [type] => productfolder
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=ddb0ca35-9192-11e7-7a6c-d2a9002da7de
+ )
+
+ )
+
+ [useParentVat] => 1
+ [uom] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata
+ [type] => uom
+ [mediaType] => application/json
+ )
+
+ )
+
+ [images] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/2d0310cd-9194-11e7-7a6c-d2a9002dc49e/images
+ [type] => image
+ [mediaType] => application/json
+ [size] => 1
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ [minPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [salePrices] => Array
+ (
+ [0] => Array
+ (
+ [value] => 35000
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => 1f3c1593-9192-11e7-7a69-97110016a95a
+ [name] => Цена продажи
+ [externalCode] => cbcf493b-55bc-11d9-848a-00112f43529a
+ )
+
+ )
+
+ [1] => Array
+ (
+ [value] => 30000
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [name] => Опт
+ [externalCode] => a59e79d7-1826-4f1a-a04c-c4e60fc2e07e
+ )
+
+ )
+
+ [2] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [name] => Распродажа
+ [externalCode] => db0eabb7-21c2-42b7-b70f-432505bb4d97
+ )
+
+ )
+
+ )
+
+ [buyPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [barcodes] => Array
+ (
+ [0] => Array
+ (
+ [ean13] => 2000000000169
+ )
+
+ )
+
+ [paymentItemType] => GOOD
+ [discountProhibited] =>
+ [country] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/country/e8098539-d624-4d2f-b0a6-9f73544806fa
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/country/metadata
+ [type] => country
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#country/edit?id=e8098539-d624-4d2f-b0a6-9f73544806fa
+ )
+
+ )
+
+ [weight] => 12
+ [volume] => 0
+ [variantsCount] => 15
+ [isSerialTrackable] =>
+ [trackingType] => NOT_TRACKED
+ [files] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/2d0310cd-9194-11e7-7a6c-d2a9002dc49e/files
+ [type] => files
+ [mediaType] => application/json
+ [size] => 0
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ )
+
+ [3] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/3d957525-9194-11e7-7a6c-d2a9002ddbfe
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/product/metadata
+ [type] => product
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=3d956c28-9194-11e7-7a6c-d2a9002ddbfc
+ )
+
+ [id] => 3d957525-9194-11e7-7a6c-d2a9002ddbfe
+ [accountId] => 1f2036af-9192-11e7-7a69-97110001d249
+ [owner] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata
+ [type] => employee
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b
+ )
+
+ )
+
+ [shared] => 1
+ [group] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/group/metadata
+ [type] => group
+ [mediaType] => application/json
+ )
+
+ )
+
+ [updated] => 2019-03-02 23:19:21.927
+ [name] => Футболка Morgan
+ [code] => 00015
+ [externalCode] => 5ij7KARHgRc1XIw18WtGx3
+ [archived] =>
+ [pathName] => Одежда/Футболки
+ [productFolder] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/ddb0ca35-9192-11e7-7a6c-d2a9002da7de
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata
+ [type] => productfolder
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=ddb0ca35-9192-11e7-7a6c-d2a9002da7de
+ )
+
+ )
+
+ [useParentVat] => 1
+ [uom] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata
+ [type] => uom
+ [mediaType] => application/json
+ )
+
+ )
+
+ [images] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/3d957525-9194-11e7-7a6c-d2a9002ddbfe/images
+ [type] => image
+ [mediaType] => application/json
+ [size] => 1
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ [minPrice] => Array
+ (
+ [value] => 70000
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [salePrices] => Array
+ (
+ [0] => Array
+ (
+ [value] => 90000
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => 1f3c1593-9192-11e7-7a69-97110016a95a
+ [name] => Цена продажи
+ [externalCode] => cbcf493b-55bc-11d9-848a-00112f43529a
+ )
+
+ )
+
+ [1] => Array
+ (
+ [value] => 75000
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [name] => Опт
+ [externalCode] => a59e79d7-1826-4f1a-a04c-c4e60fc2e07e
+ )
+
+ )
+
+ [2] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [name] => Распродажа
+ [externalCode] => db0eabb7-21c2-42b7-b70f-432505bb4d97
+ )
+
+ )
+
+ )
+
+ [buyPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [barcodes] => Array
+ (
+ [0] => Array
+ (
+ [ean13] => 2000000000176
+ )
+
+ )
+
+ [paymentItemType] => GOOD
+ [discountProhibited] =>
+ [weight] => 0
+ [volume] => 0
+ [variantsCount] => 0
+ [isSerialTrackable] =>
+ [trackingType] => NOT_TRACKED
+ [files] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/3d957525-9194-11e7-7a6c-d2a9002ddbfe/files
+ [type] => files
+ [mediaType] => application/json
+ [size] => 0
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ )
+
+ [4] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/4dc138a7-d532-11e7-7a69-8f55000890d1
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/product/metadata
+ [type] => product
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=4dc12d87-d532-11e7-7a69-8f55000890cf
+ )
+
+ [id] => 4dc138a7-d532-11e7-7a69-8f55000890d1
+ [accountId] => 1f2036af-9192-11e7-7a69-97110001d249
+ [owner] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata
+ [type] => employee
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b
+ )
+
+ )
+
+ [shared] => 1
+ [group] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/group/metadata
+ [type] => group
+ [mediaType] => application/json
+ )
+
+ )
+
+ [updated] => 2019-02-24 17:06:19.224
+ [name] => Ботинки мужские RINGO
+ [code] => 00026
+ [externalCode] => Lt-6EDVBjlPAtc5Hr7LV72
+ [archived] =>
+ [pathName] => Одежда/Обувь/Ботинки
+ [productFolder] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/380c02c8-d532-11e7-7a6c-d2a90010eb13
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata
+ [type] => productfolder
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=380c02c8-d532-11e7-7a6c-d2a90010eb13
+ )
+
+ )
+
+ [useParentVat] => 1
+ [uom] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata
+ [type] => uom
+ [mediaType] => application/json
+ )
+
+ )
+
+ [images] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/4dc138a7-d532-11e7-7a69-8f55000890d1/images
+ [type] => image
+ [mediaType] => application/json
+ [size] => 1
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ [minPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [salePrices] => Array
+ (
+ [0] => Array
+ (
+ [value] => 670000
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => 1f3c1593-9192-11e7-7a69-97110016a95a
+ [name] => Цена продажи
+ [externalCode] => cbcf493b-55bc-11d9-848a-00112f43529a
+ )
+
+ )
+
+ [1] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [name] => Опт
+ [externalCode] => a59e79d7-1826-4f1a-a04c-c4e60fc2e07e
+ )
+
+ )
+
+ [2] => Array
+ (
+ [value] => 300000
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [name] => Распродажа
+ [externalCode] => db0eabb7-21c2-42b7-b70f-432505bb4d97
+ )
+
+ )
+
+ )
+
+ [buyPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [barcodes] => Array
+ (
+ [0] => Array
+ (
+ [ean13] => 2000000000282
+ )
+
+ )
+
+ [paymentItemType] => GOOD
+ [discountProhibited] =>
+ [country] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/country/9df7c2c3-7782-4c5c-a8ed-1102af611608
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/country/metadata
+ [type] => country
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#country/edit?id=9df7c2c3-7782-4c5c-a8ed-1102af611608
+ )
+
+ )
+
+ [article] => 98765
+ [weight] => 333
+ [volume] => 55
+ [variantsCount] => 5
+ [isSerialTrackable] =>
+ [trackingType] => NOT_TRACKED
+ [files] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/4dc138a7-d532-11e7-7a69-8f55000890d1/files
+ [type] => files
+ [mediaType] => application/json
+ [size] => 0
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ )
+
+ [5] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/5b91e8ab-9194-11e7-7a69-8f550016dbc9
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/product/metadata
+ [type] => product
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=5b91e066-9194-11e7-7a69-8f550016dbc7
+ )
+
+ [id] => 5b91e8ab-9194-11e7-7a69-8f550016dbc9
+ [accountId] => 1f2036af-9192-11e7-7a69-97110001d249
+ [owner] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata
+ [type] => employee
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b
+ )
+
+ )
+
+ [shared] => 1
+ [group] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/group/metadata
+ [type] => group
+ [mediaType] => application/json
+ )
+
+ )
+
+ [updated] => 2021-04-24 13:54:21.164
+ [name] => Брюки спортивные ESS No.1 Sweat Pants, FL, cl Puma
+ [code] => 00016
+ [externalCode] => yaqRSVYlggOj3EFvYY7Jb1
+ [archived] =>
+ [pathName] => Одежда/Штаны
+ [productFolder] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/e9caa413-9192-11e7-7a69-8f550016d504
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata
+ [type] => productfolder
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=e9caa413-9192-11e7-7a69-8f550016d504
+ )
+
+ )
+
+ [useParentVat] => 1
+ [uom] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata
+ [type] => uom
+ [mediaType] => application/json
+ )
+
+ )
+
+ [images] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/5b91e8ab-9194-11e7-7a69-8f550016dbc9/images
+ [type] => image
+ [mediaType] => application/json
+ [size] => 1
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ [minPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [salePrices] => Array
+ (
+ [0] => Array
+ (
+ [value] => 300000
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => 1f3c1593-9192-11e7-7a69-97110016a95a
+ [name] => Цена продажи
+ [externalCode] => cbcf493b-55bc-11d9-848a-00112f43529a
+ )
+
+ )
+
+ [1] => Array
+ (
+ [value] => 200000
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [name] => Опт
+ [externalCode] => a59e79d7-1826-4f1a-a04c-c4e60fc2e07e
+ )
+
+ )
+
+ [2] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [name] => Распродажа
+ [externalCode] => db0eabb7-21c2-42b7-b70f-432505bb4d97
+ )
+
+ )
+
+ )
+
+ [buyPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [barcodes] => Array
+ (
+ [0] => Array
+ (
+ [ean13] => 2000000000183
+ )
+
+ )
+
+ [paymentItemType] => GOOD
+ [discountProhibited] =>
+ [weight] => 0
+ [volume] => 0
+ [variantsCount] => 3
+ [isSerialTrackable] =>
+ [trackingType] => NOT_TRACKED
+ [files] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/5b91e8ab-9194-11e7-7a69-8f550016dbc9/files
+ [type] => files
+ [mediaType] => application/json
+ [size] => 0
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ )
+
+ [6] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/6176b71b-d532-11e7-6b01-4b1d00127e56
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/product/metadata
+ [type] => product
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=6176b195-d532-11e7-6b01-4b1d00127e54
+ )
+
+ [id] => 6176b71b-d532-11e7-6b01-4b1d00127e56
+ [accountId] => 1f2036af-9192-11e7-7a69-97110001d249
+ [owner] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata
+ [type] => employee
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b
+ )
+
+ )
+
+ [shared] => 1
+ [group] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/group/metadata
+ [type] => group
+ [mediaType] => application/json
+ )
+
+ )
+
+ [updated] => 2017-11-30 21:42:10.408
+ [name] => Ботинки мужские STREAM
+ [code] => 00027
+ [externalCode] => 0GpGTPN-iUz0eAGEW4dAm3
+ [archived] =>
+ [pathName] => Одежда/Обувь/Ботинки
+ [productFolder] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/380c02c8-d532-11e7-7a6c-d2a90010eb13
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata
+ [type] => productfolder
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=380c02c8-d532-11e7-7a6c-d2a90010eb13
+ )
+
+ )
+
+ [useParentVat] => 1
+ [uom] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata
+ [type] => uom
+ [mediaType] => application/json
+ )
+
+ )
+
+ [images] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/6176b71b-d532-11e7-6b01-4b1d00127e56/images
+ [type] => image
+ [mediaType] => application/json
+ [size] => 1
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ [minPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [salePrices] => Array
+ (
+ [0] => Array
+ (
+ [value] => 750000
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => 1f3c1593-9192-11e7-7a69-97110016a95a
+ [name] => Цена продажи
+ [externalCode] => cbcf493b-55bc-11d9-848a-00112f43529a
+ )
+
+ )
+
+ [1] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [name] => Опт
+ [externalCode] => a59e79d7-1826-4f1a-a04c-c4e60fc2e07e
+ )
+
+ )
+
+ [2] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [name] => Распродажа
+ [externalCode] => db0eabb7-21c2-42b7-b70f-432505bb4d97
+ )
+
+ )
+
+ )
+
+ [buyPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [barcodes] => Array
+ (
+ [0] => Array
+ (
+ [ean13] => 2000000000299
+ )
+
+ )
+
+ [paymentItemType] => GOOD
+ [discountProhibited] =>
+ [weight] => 0
+ [volume] => 0
+ [variantsCount] => 5
+ [isSerialTrackable] =>
+ [trackingType] => NOT_TRACKED
+ [files] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/6176b71b-d532-11e7-6b01-4b1d00127e56/files
+ [type] => files
+ [mediaType] => application/json
+ [size] => 0
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ )
+
+ [7] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/8cbf00e4-d532-11e7-7a31-d0fd001107b3
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/product/metadata
+ [type] => product
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=8cbef8e7-d532-11e7-7a31-d0fd001107b1
+ )
+
+ [id] => 8cbf00e4-d532-11e7-7a31-d0fd001107b3
+ [accountId] => 1f2036af-9192-11e7-7a69-97110001d249
+ [owner] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata
+ [type] => employee
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b
+ )
+
+ )
+
+ [shared] => 1
+ [group] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/group/metadata
+ [type] => group
+ [mediaType] => application/json
+ )
+
+ )
+
+ [updated] => 2017-11-29 21:24:34.498
+ [name] => Полуботинки мужские STELS
+ [code] => 00029
+ [externalCode] => AI61pobLho7wX-lLo7I2O3
+ [archived] =>
+ [pathName] => Одежда/Обувь/Полуботинки
+ [productFolder] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/7d637021-d532-11e7-7a34-5acf001098aa
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata
+ [type] => productfolder
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=7d637021-d532-11e7-7a34-5acf001098aa
+ )
+
+ )
+
+ [useParentVat] => 1
+ [uom] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata
+ [type] => uom
+ [mediaType] => application/json
+ )
+
+ )
+
+ [images] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/8cbf00e4-d532-11e7-7a31-d0fd001107b3/images
+ [type] => image
+ [mediaType] => application/json
+ [size] => 1
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ [minPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [salePrices] => Array
+ (
+ [0] => Array
+ (
+ [value] => 650000
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => 1f3c1593-9192-11e7-7a69-97110016a95a
+ [name] => Цена продажи
+ [externalCode] => cbcf493b-55bc-11d9-848a-00112f43529a
+ )
+
+ )
+
+ [1] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [name] => Опт
+ [externalCode] => a59e79d7-1826-4f1a-a04c-c4e60fc2e07e
+ )
+
+ )
+
+ [2] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [name] => Распродажа
+ [externalCode] => db0eabb7-21c2-42b7-b70f-432505bb4d97
+ )
+
+ )
+
+ )
+
+ [buyPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [barcodes] => Array
+ (
+ [0] => Array
+ (
+ [ean13] => 2000000000312
+ )
+
+ )
+
+ [paymentItemType] => GOOD
+ [discountProhibited] =>
+ [weight] => 0
+ [volume] => 0
+ [variantsCount] => 0
+ [isSerialTrackable] =>
+ [trackingType] => NOT_TRACKED
+ [files] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/8cbf00e4-d532-11e7-7a31-d0fd001107b3/files
+ [type] => files
+ [mediaType] => application/json
+ [size] => 0
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ )
+
+ [8] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/99e68868-d532-11e7-6b01-4b1d00128082
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/product/metadata
+ [type] => product
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=99e681be-d532-11e7-6b01-4b1d00128080
+ )
+
+ [id] => 99e68868-d532-11e7-6b01-4b1d00128082
+ [accountId] => 1f2036af-9192-11e7-7a69-97110001d249
+ [owner] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata
+ [type] => employee
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b
+ )
+
+ )
+
+ [shared] => 1
+ [group] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/group/metadata
+ [type] => group
+ [mediaType] => application/json
+ )
+
+ )
+
+ [updated] => 2017-11-29 21:24:56.547
+ [name] => Полуботинки мужские PAT
+ [code] => 00030
+ [externalCode] => -3l8w357ggKMJATxtl3y91
+ [archived] =>
+ [pathName] => Одежда/Обувь/Полуботинки
+ [productFolder] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/7d637021-d532-11e7-7a34-5acf001098aa
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata
+ [type] => productfolder
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=7d637021-d532-11e7-7a34-5acf001098aa
+ )
+
+ )
+
+ [useParentVat] => 1
+ [uom] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata
+ [type] => uom
+ [mediaType] => application/json
+ )
+
+ )
+
+ [images] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/99e68868-d532-11e7-6b01-4b1d00128082/images
+ [type] => image
+ [mediaType] => application/json
+ [size] => 1
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ [minPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [salePrices] => Array
+ (
+ [0] => Array
+ (
+ [value] => 520000
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => 1f3c1593-9192-11e7-7a69-97110016a95a
+ [name] => Цена продажи
+ [externalCode] => cbcf493b-55bc-11d9-848a-00112f43529a
+ )
+
+ )
+
+ [1] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [name] => Опт
+ [externalCode] => a59e79d7-1826-4f1a-a04c-c4e60fc2e07e
+ )
+
+ )
+
+ [2] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [name] => Распродажа
+ [externalCode] => db0eabb7-21c2-42b7-b70f-432505bb4d97
+ )
+
+ )
+
+ )
+
+ [buyPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [barcodes] => Array
+ (
+ [0] => Array
+ (
+ [ean13] => 2000000000329
+ )
+
+ )
+
+ [paymentItemType] => GOOD
+ [discountProhibited] =>
+ [weight] => 0
+ [volume] => 0
+ [variantsCount] => 0
+ [isSerialTrackable] =>
+ [trackingType] => NOT_TRACKED
+ [files] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/99e68868-d532-11e7-6b01-4b1d00128082/files
+ [type] => files
+ [mediaType] => application/json
+ [size] => 0
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ )
+
+ [9] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/a90dcdca-d532-11e7-7a6c-d2a90010f132
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/product/metadata
+ [type] => product
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=a90dc4ca-d532-11e7-7a6c-d2a90010f130
+ )
+
+ [id] => a90dcdca-d532-11e7-7a6c-d2a90010f132
+ [accountId] => 1f2036af-9192-11e7-7a69-97110001d249
+ [owner] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata
+ [type] => employee
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b
+ )
+
+ )
+
+ [shared] => 1
+ [group] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/group/metadata
+ [type] => group
+ [mediaType] => application/json
+ )
+
+ )
+
+ [updated] => 2017-11-29 21:25:21.985
+ [name] => Полуботинки мужские POLO
+ [code] => 00031
+ [externalCode] => qqTwEawohouUjeuTYlg232
+ [archived] =>
+ [pathName] => Одежда/Обувь/Полуботинки
+ [productFolder] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/7d637021-d532-11e7-7a34-5acf001098aa
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata
+ [type] => productfolder
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=7d637021-d532-11e7-7a34-5acf001098aa
+ )
+
+ )
+
+ [useParentVat] => 1
+ [uom] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata
+ [type] => uom
+ [mediaType] => application/json
+ )
+
+ )
+
+ [images] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/a90dcdca-d532-11e7-7a6c-d2a90010f132/images
+ [type] => image
+ [mediaType] => application/json
+ [size] => 1
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ [minPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [salePrices] => Array
+ (
+ [0] => Array
+ (
+ [value] => 570000
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => 1f3c1593-9192-11e7-7a69-97110016a95a
+ [name] => Цена продажи
+ [externalCode] => cbcf493b-55bc-11d9-848a-00112f43529a
+ )
+
+ )
+
+ [1] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [name] => Опт
+ [externalCode] => a59e79d7-1826-4f1a-a04c-c4e60fc2e07e
+ )
+
+ )
+
+ [2] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [name] => Распродажа
+ [externalCode] => db0eabb7-21c2-42b7-b70f-432505bb4d97
+ )
+
+ )
+
+ )
+
+ [buyPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [barcodes] => Array
+ (
+ [0] => Array
+ (
+ [ean13] => 2000000000336
+ )
+
+ )
+
+ [paymentItemType] => GOOD
+ [discountProhibited] =>
+ [weight] => 0
+ [volume] => 0
+ [variantsCount] => 0
+ [isSerialTrackable] =>
+ [trackingType] => NOT_TRACKED
+ [files] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/a90dcdca-d532-11e7-7a6c-d2a90010f132/files
+ [type] => files
+ [mediaType] => application/json
+ [size] => 0
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ )
+
+ [10] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/c9b7a019-d532-11e7-7a6c-d2a90010f1e4
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/product/metadata
+ [type] => product
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=c9b798f8-d532-11e7-7a6c-d2a90010f1e2
+ )
+
+ [id] => c9b7a019-d532-11e7-7a6c-d2a90010f1e4
+ [accountId] => 1f2036af-9192-11e7-7a69-97110001d249
+ [owner] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata
+ [type] => employee
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b
+ )
+
+ )
+
+ [shared] => 1
+ [group] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/group/metadata
+ [type] => group
+ [mediaType] => application/json
+ )
+
+ )
+
+ [updated] => 2017-11-29 21:26:16.775
+ [name] => Лоферы мужские PAT
+ [code] => 00033
+ [externalCode] => RKVVj-Sghzq0L0pOwO1Hk0
+ [archived] =>
+ [pathName] => Одежда/Обувь/Лоферы
+ [productFolder] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/af65012d-d532-11e7-7a69-8f5500089258
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata
+ [type] => productfolder
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=af65012d-d532-11e7-7a69-8f5500089258
+ )
+
+ )
+
+ [useParentVat] => 1
+ [uom] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata
+ [type] => uom
+ [mediaType] => application/json
+ )
+
+ )
+
+ [images] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/c9b7a019-d532-11e7-7a6c-d2a90010f1e4/images
+ [type] => image
+ [mediaType] => application/json
+ [size] => 1
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ [minPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [salePrices] => Array
+ (
+ [0] => Array
+ (
+ [value] => 550000
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => 1f3c1593-9192-11e7-7a69-97110016a95a
+ [name] => Цена продажи
+ [externalCode] => cbcf493b-55bc-11d9-848a-00112f43529a
+ )
+
+ )
+
+ [1] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [name] => Опт
+ [externalCode] => a59e79d7-1826-4f1a-a04c-c4e60fc2e07e
+ )
+
+ )
+
+ [2] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [name] => Распродажа
+ [externalCode] => db0eabb7-21c2-42b7-b70f-432505bb4d97
+ )
+
+ )
+
+ )
+
+ [buyPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [barcodes] => Array
+ (
+ [0] => Array
+ (
+ [ean13] => 2000000000350
+ )
+
+ )
+
+ [paymentItemType] => GOOD
+ [discountProhibited] =>
+ [weight] => 0
+ [volume] => 0
+ [variantsCount] => 0
+ [isSerialTrackable] =>
+ [trackingType] => NOT_TRACKED
+ [files] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/c9b7a019-d532-11e7-7a6c-d2a90010f1e4/files
+ [type] => files
+ [mediaType] => application/json
+ [size] => 0
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ )
+
+ [11] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/d7fee6a9-d532-11e7-7a6c-d2a90010f27e
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/product/metadata
+ [type] => product
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=d7fee0d0-d532-11e7-7a6c-d2a90010f27c
+ )
+
+ [id] => d7fee6a9-d532-11e7-7a6c-d2a90010f27e
+ [accountId] => 1f2036af-9192-11e7-7a69-97110001d249
+ [owner] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata
+ [type] => employee
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b
+ )
+
+ )
+
+ [shared] => 1
+ [group] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/group/metadata
+ [type] => group
+ [mediaType] => application/json
+ )
+
+ )
+
+ [updated] => 2017-11-29 21:26:40.728
+ [name] => Лоферы мужские KEVIN
+ [code] => 00034
+ [externalCode] => Nfje0Qr0hneIU-4-wTVWN0
+ [archived] =>
+ [pathName] => Одежда/Обувь/Лоферы
+ [productFolder] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/af65012d-d532-11e7-7a69-8f5500089258
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata
+ [type] => productfolder
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=af65012d-d532-11e7-7a69-8f5500089258
+ )
+
+ )
+
+ [useParentVat] => 1
+ [uom] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata
+ [type] => uom
+ [mediaType] => application/json
+ )
+
+ )
+
+ [images] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/d7fee6a9-d532-11e7-7a6c-d2a90010f27e/images
+ [type] => image
+ [mediaType] => application/json
+ [size] => 1
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ [minPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [salePrices] => Array
+ (
+ [0] => Array
+ (
+ [value] => 599000
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => 1f3c1593-9192-11e7-7a69-97110016a95a
+ [name] => Цена продажи
+ [externalCode] => cbcf493b-55bc-11d9-848a-00112f43529a
+ )
+
+ )
+
+ [1] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [name] => Опт
+ [externalCode] => a59e79d7-1826-4f1a-a04c-c4e60fc2e07e
+ )
+
+ )
+
+ [2] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [name] => Распродажа
+ [externalCode] => db0eabb7-21c2-42b7-b70f-432505bb4d97
+ )
+
+ )
+
+ )
+
+ [buyPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [barcodes] => Array
+ (
+ [0] => Array
+ (
+ [ean13] => 2000000000367
+ )
+
+ )
+
+ [paymentItemType] => GOOD
+ [discountProhibited] =>
+ [weight] => 0
+ [volume] => 0
+ [variantsCount] => 0
+ [isSerialTrackable] =>
+ [trackingType] => NOT_TRACKED
+ [files] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/d7fee6a9-d532-11e7-7a6c-d2a90010f27e/files
+ [type] => files
+ [mediaType] => application/json
+ [size] => 0
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ )
+
+ [12] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/da162424-9193-11e7-7a6c-d2a9002dbfed
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/product/metadata
+ [type] => product
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=da161ce5-9193-11e7-7a6c-d2a9002dbfeb
+ )
+
+ [id] => da162424-9193-11e7-7a6c-d2a9002dbfed
+ [accountId] => 1f2036af-9192-11e7-7a69-97110001d249
+ [owner] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata
+ [type] => employee
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b
+ )
+
+ )
+
+ [shared] => 1
+ [group] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/group/metadata
+ [type] => group
+ [mediaType] => application/json
+ )
+
+ )
+
+ [updated] => 2017-09-04 20:09:46.369
+ [name] => Кроссовки WMNS NIKE AIR MAX INVIGOR Nike
+ [code] => 00010
+ [externalCode] => htEXnsbxgMWidNmkslREN3
+ [archived] =>
+ [pathName] => Одежда/Обувь
+ [productFolder] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/e5fc4aab-9192-11e7-7a31-d0fd002d3e90
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata
+ [type] => productfolder
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=e5fc4aab-9192-11e7-7a31-d0fd002d3e90
+ )
+
+ )
+
+ [useParentVat] => 1
+ [uom] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata
+ [type] => uom
+ [mediaType] => application/json
+ )
+
+ )
+
+ [images] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/da162424-9193-11e7-7a6c-d2a9002dbfed/images
+ [type] => image
+ [mediaType] => application/json
+ [size] => 1
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ [minPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [salePrices] => Array
+ (
+ [0] => Array
+ (
+ [value] => 359000
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => 1f3c1593-9192-11e7-7a69-97110016a95a
+ [name] => Цена продажи
+ [externalCode] => cbcf493b-55bc-11d9-848a-00112f43529a
+ )
+
+ )
+
+ [1] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [name] => Опт
+ [externalCode] => a59e79d7-1826-4f1a-a04c-c4e60fc2e07e
+ )
+
+ )
+
+ [2] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [name] => Распродажа
+ [externalCode] => db0eabb7-21c2-42b7-b70f-432505bb4d97
+ )
+
+ )
+
+ )
+
+ [buyPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [barcodes] => Array
+ (
+ [0] => Array
+ (
+ [ean13] => 2000000000121
+ )
+
+ )
+
+ [paymentItemType] => GOOD
+ [discountProhibited] =>
+ [weight] => 0
+ [volume] => 0
+ [variantsCount] => 0
+ [isSerialTrackable] =>
+ [trackingType] => NOT_TRACKED
+ [files] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/da162424-9193-11e7-7a6c-d2a9002dbfed/files
+ [type] => files
+ [mediaType] => application/json
+ [size] => 0
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ )
+
+ [13] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/e9068a8f-270c-11e9-9107-5048000e95de
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/product/metadata
+ [type] => product
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=e9067a28-270c-11e9-9107-5048000e95dc
+ )
+
+ [id] => e9068a8f-270c-11e9-9107-5048000e95de
+ [accountId] => 1f2036af-9192-11e7-7a69-97110001d249
+ [owner] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata
+ [type] => employee
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b
+ )
+
+ )
+
+ [shared] => 1
+ [group] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/group/metadata
+ [type] => group
+ [mediaType] => application/json
+ )
+
+ )
+
+ [updated] => 2021-04-19 19:17:24.115
+ [name] => Чехол мешок
+ [description] => Чехол универсальный для телефонов. Must have!
+ [code] => 00041
+ [externalCode] => iCZ156cwj8O6wCrpBUJEA0
+ [archived] =>
+ [pathName] => Аксессуары
+ [productFolder] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/228c903e-a0ed-11eb-0a80-041000288acb
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata
+ [type] => productfolder
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=228c903e-a0ed-11eb-0a80-041000288acb
+ )
+
+ )
+
+ [useParentVat] => 1
+ [uom] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata
+ [type] => uom
+ [mediaType] => application/json
+ )
+
+ )
+
+ [images] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/e9068a8f-270c-11e9-9107-5048000e95de/images
+ [type] => image
+ [mediaType] => application/json
+ [size] => 3
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ [minPrice] => Array
+ (
+ [value] => 50000
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [salePrices] => Array
+ (
+ [0] => Array
+ (
+ [value] => 20000
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => 1f3c1593-9192-11e7-7a69-97110016a95a
+ [name] => Цена продажи
+ [externalCode] => cbcf493b-55bc-11d9-848a-00112f43529a
+ )
+
+ )
+
+ [1] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [name] => Опт
+ [externalCode] => a59e79d7-1826-4f1a-a04c-c4e60fc2e07e
+ )
+
+ )
+
+ [2] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [name] => Распродажа
+ [externalCode] => db0eabb7-21c2-42b7-b70f-432505bb4d97
+ )
+
+ )
+
+ )
+
+ [buyPrice] => Array
+ (
+ [value] => 20000
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [barcodes] => Array
+ (
+ [0] => Array
+ (
+ [ean13] => 2000000004099
+ )
+
+ )
+
+ [paymentItemType] => GOOD
+ [discountProhibited] =>
+ [article] => 00041
+ [weight] => 0
+ [volume] => 0
+ [variantsCount] => 9
+ [isSerialTrackable] =>
+ [trackingType] => NOT_TRACKED
+ [files] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/e9068a8f-270c-11e9-9107-5048000e95de/files
+ [type] => files
+ [mediaType] => application/json
+ [size] => 0
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ )
+
+ [14] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/e94c3184-7644-11ee-0a80-143f001044a3
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/product/metadata
+ [type] => product
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=e94c280f-7644-11ee-0a80-143f001044a1
+ )
+
+ [id] => e94c3184-7644-11ee-0a80-143f001044a3
+ [accountId] => 1f2036af-9192-11e7-7a69-97110001d249
+ [owner] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata
+ [type] => employee
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b
+ )
+
+ )
+
+ [shared] => 1
+ [group] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/group/metadata
+ [type] => group
+ [mediaType] => application/json
+ )
+
+ )
+
+ [updated] => 2023-10-29 13:21:23.866
+ [name] => Чехол для Google Pixel 7 Nillkin Super Frosted Shield Pro Case
+ [description] => Встречайте версия Pro Case это обновленная версия знаменитого чехла Frosted Shield Case от компании Nillkin
+Качественный чехол от мирового производителя - компании Nillkin. Качество проверенное временем!
+Чехол премиум класса Nillkin Super Frosted Shield Pro Case для Google Pixel 7 , зеленый
+Чехол накладка это комбинация качественных материалов для защиты Вашего смартфона - чехол выполнен основная часть из высококачественного пластика PC, и окантовка из эластичного термополиуретана TPU, внешняя часть имеет рельефный точечный дизайн, поверхность износостойкая, противоскользящая предотвращает выскальзывание телефона из рук, защищенная от отпечатков пальцев и легко моющаяся. Покрытие с защитой от УФ излучения для защиты чехла от выгорания на солнце.
+Окантовка чехла по периметру из эластичного термополиуретана TPU полностью закрывает все боковые грани и защитит при падении.
+Углы чехла усилены бамперами из пластика. Боковые грани чехла с рельефными насечками для уверенного удержания чехла в руке.
+По периметру тыльной камеры имеется защитный бортик высотой 0.5 мм.
+Элегантный чехол. Тонкий, легкий, отличный чехол Nillkin!
+В конструкции предусмотрены необходимые отверстия для доступа к портам, а также повторители аппаратных клавиш, чувствительные к нажатию и не снижающие удобства их использования.
+Новая модель чехла, закрывает все грани смартфона, боковые, верхнюю и нижнюю.
+Для Google Pixel 7
+ [code] => 00055
+ [externalCode] => E2fwlP2qitXq4cN6cJP5U0
+ [archived] =>
+ [pathName] => Аксессуары
+ [productFolder] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/228c903e-a0ed-11eb-0a80-041000288acb
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata
+ [type] => productfolder
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=228c903e-a0ed-11eb-0a80-041000288acb
+ )
+
+ )
+
+ [useParentVat] => 1
+ [uom] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata
+ [type] => uom
+ [mediaType] => application/json
+ )
+
+ )
+
+ [images] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/e94c3184-7644-11ee-0a80-143f001044a3/images
+ [type] => image
+ [mediaType] => application/json
+ [size] => 4
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ [minPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [salePrices] => Array
+ (
+ [0] => Array
+ (
+ [value] => 111100
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => 1f3c1593-9192-11e7-7a69-97110016a95a
+ [name] => Цена продажи
+ [externalCode] => cbcf493b-55bc-11d9-848a-00112f43529a
+ )
+
+ )
+
+ [1] => Array
+ (
+ [value] => 55500
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [name] => Опт
+ [externalCode] => a59e79d7-1826-4f1a-a04c-c4e60fc2e07e
+ )
+
+ )
+
+ [2] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [name] => Распродажа
+ [externalCode] => db0eabb7-21c2-42b7-b70f-432505bb4d97
+ )
+
+ )
+
+ )
+
+ [buyPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [barcodes] => Array
+ (
+ [0] => Array
+ (
+ [ean13] => 2000000004518
+ )
+
+ )
+
+ [paymentItemType] => GOOD
+ [discountProhibited] =>
+ [article] => Frosred-Pixel-7-Green
+ [weight] => 111
+ [volume] => 222
+ [variantsCount] => 0
+ [isSerialTrackable] =>
+ [trackingType] => NOT_TRACKED
+ [files] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/e94c3184-7644-11ee-0a80-143f001044a3/files
+ [type] => files
+ [mediaType] => application/json
+ [size] => 0
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ )
+
+ [15] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/ef72edb0-9193-11e7-7a6c-d2a9002dc0e0
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/product/metadata
+ [type] => product
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=ef72e5d1-9193-11e7-7a6c-d2a9002dc0de
+ )
+
+ [id] => ef72edb0-9193-11e7-7a6c-d2a9002dc0e0
+ [accountId] => 1f2036af-9192-11e7-7a69-97110001d249
+ [owner] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/employee/1f2ec2de-9192-11e7-7a69-97110016a92b
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/employee/metadata
+ [type] => employee
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#employee/edit?id=1f2ec2de-9192-11e7-7a69-97110016a92b
+ )
+
+ )
+
+ [shared] => 1
+ [group] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/group/1f206231-9192-11e7-7a69-97110001d24a
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/group/metadata
+ [type] => group
+ [mediaType] => application/json
+ )
+
+ )
+
+ [updated] => 2017-09-04 20:10:26.812
+ [name] => Ботильоны Sweet Shoes
+ [code] => 00011
+ [externalCode] => NFFEMQ2whnagd01di0Kwt1
+ [archived] =>
+ [pathName] => Одежда/Обувь
+ [productFolder] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/e5fc4aab-9192-11e7-7a31-d0fd002d3e90
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/productfolder/metadata
+ [type] => productfolder
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#good/edit?id=e5fc4aab-9192-11e7-7a31-d0fd002d3e90
+ )
+
+ )
+
+ [useParentVat] => 1
+ [uom] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/uom/19f1edc0-fc42-4001-94cb-c9ec9c62ec10
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/uom/metadata
+ [type] => uom
+ [mediaType] => application/json
+ )
+
+ )
+
+ [images] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/ef72edb0-9193-11e7-7a6c-d2a9002dc0e0/images
+ [type] => image
+ [mediaType] => application/json
+ [size] => 1
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ [minPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [salePrices] => Array
+ (
+ [0] => Array
+ (
+ [value] => 330000
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/1f3c1593-9192-11e7-7a69-97110016a95a
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => 1f3c1593-9192-11e7-7a69-97110016a95a
+ [name] => Цена продажи
+ [externalCode] => cbcf493b-55bc-11d9-848a-00112f43529a
+ )
+
+ )
+
+ [1] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => e9e8d47f-2451-11e8-9ff4-34e80019ace1
+ [name] => Опт
+ [externalCode] => a59e79d7-1826-4f1a-a04c-c4e60fc2e07e
+ )
+
+ )
+
+ [2] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ [priceType] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/context/companysettings/pricetype/bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [type] => pricetype
+ [mediaType] => application/json
+ )
+
+ [id] => bcf7a583-6ef3-11e8-9109-f8fc00314515
+ [name] => Распродажа
+ [externalCode] => db0eabb7-21c2-42b7-b70f-432505bb4d97
+ )
+
+ )
+
+ )
+
+ [buyPrice] => Array
+ (
+ [value] => 0
+ [currency] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/currency/1f3ac651-9192-11e7-7a69-97110016a959
+ [metadataHref] => https://api.moysklad.ru/api/remap/1.2/entity/currency/metadata
+ [type] => currency
+ [mediaType] => application/json
+ [uuidHref] => https://online.moysklad.ru/app/#currency/edit?id=1f3ac651-9192-11e7-7a69-97110016a959
+ )
+
+ )
+
+ )
+
+ [barcodes] => Array
+ (
+ [0] => Array
+ (
+ [ean13] => 2000000000138
+ )
+
+ )
+
+ [paymentItemType] => GOOD
+ [discountProhibited] =>
+ [weight] => 0
+ [volume] => 0
+ [variantsCount] => 0
+ [isSerialTrackable] =>
+ [trackingType] => NOT_TRACKED
+ [files] => Array
+ (
+ [meta] => Array
+ (
+ [href] => https://api.moysklad.ru/api/remap/1.2/entity/product/ef72edb0-9193-11e7-7a6c-d2a9002dc0e0/files
+ [type] => files
+ [mediaType] => application/json
+ [size] => 0
+ [limit] => 1000
+ [offset] => 0
+ )
+
+ )
+
+ )
+
+)
+
diff --git a/tests/functions.php b/tests/functions.php
index 7283402..9aa40a2 100644
--- a/tests/functions.php
+++ b/tests/functions.php
@@ -2,26 +2,32 @@
namespace WooMS\Tests;
-function getProductsRows(){
- $strJsonFileContents = file_get_contents(__DIR__ . "/data/products.json");
- $data = json_decode($strJsonFileContents, true);
- return $data['rows'];
+function getProductsRows() {
+
+ // $data = \WooMS\request( 'entity/product' );
+ // $data = json_encode($data, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE);
+ // ddcli($data);
+ $json = file_get_contents( __DIR__ . "/data/products.json" );
+ $data = json_decode( $json, true );
+ return $data['rows'];
}
-function get_variant(){
- $strJsonFileContents = file_get_contents(__DIR__ . "/data/variants.json");
- $data = json_decode($strJsonFileContents, true);
- return $data;
+function get_variant() {
+ $strJsonFileContents = file_get_contents( __DIR__ . "/data/variants.json" );
+ $data = json_decode( $strJsonFileContents, true );
+ return $data;
}
-function get_productfolder(){
- $strJsonFileContents = file_get_contents(__DIR__ . "/data/productfolder.json");
- $data = json_decode($strJsonFileContents, true);
- return $data;
+function get_productfolder() {
+
+ // $data = \WooMS\request( 'entity/productfolder' );
+ $strJsonFileContents = file_get_contents( __DIR__ . "/data/productfolder.json" );
+ $data = json_decode( $strJsonFileContents, true );
+ return $data;
}
-function get_assortment(){
- $strJsonFileContents = file_get_contents(__DIR__ . "/data/assortment.json");
- $data = json_decode($strJsonFileContents, true);
+function get_assortment() {
+ $strJsonFileContents = file_get_contents( __DIR__ . "/data/assortment.json" );
+ $data = json_decode( $strJsonFileContents, true );
return $data;
}
diff --git a/tests/includes/Base.php b/tests/includes/Base.php
index ab871d5..736397d 100644
--- a/tests/includes/Base.php
+++ b/tests/includes/Base.php
@@ -3,51 +3,15 @@
namespace WooMS\Tests\Base;
use function Testeroid\{test, transaction_query, ddcli};
-use function WooMS\Products\{get_product_id_by_uuid, process_rows, walker};
+use function WooMS\Products\{get_product_id_by_uuid, process_rows};
-transaction_query('start');
-test('wooms active?', function(){
- $can_start = wooms_can_start();
- return $can_start;
+test( 'wooms active?', function () {
-});
+ transaction_query( 'start' );
+ $can_start = wooms_can_start();
+ return $can_start;
+} );
-/**
- * for this test we have to use REST API MS
- */
-test('Test walker', function(){
-
- $now = $now = date("YmdHis");
-
- $args = [
- 'session_id' => $now,
- 'query_arg' => [
- 'offset' => 10,
- 'limit' => 10,
- ],
- 'rows_in_bunch' => 20,
- 'timestamp' => $now,
- 'end_timestamp' => 0,
- ];
-
- $r = walker($args);
- if('restart' != $r['result']){
- return false;
- }
- if(20 != $r['args_next_iteration']['query_arg']['offset']){
- return false;
- }
-
- if(empty($r['args_next_iteration']['session_id'])){
- return false;
- }
-
- return true;
-
-});
-
-
-transaction_query('rollback');
diff --git a/tests/includes/Categories.php b/tests/includes/Categories.php
index 9a14e8a..3deed86 100644
--- a/tests/includes/Categories.php
+++ b/tests/includes/Categories.php
@@ -7,7 +7,47 @@
use function WooMS\Products\{get_product_id_by_uuid, process_rows};
+test('категории должны синхронизироваться с учетом выбранных в настройках', function(){
+
+ //https://github.com/wpcraft-ru/wooms/issues/520
+
+ transaction_query( 'start' );
+
+ $categories = get_categories( [
+ 'taxonomy' => 'product_cat',
+ 'hide_empty' => false,
+ ] );
+
+ if($categories){
+ foreach($categories as $term){
+ wp_delete_term($term->term_id, 'product_cat');
+ }
+ }
+
+ \WooMS\CategoriesFilter::$groups = [];
+
+ $data = \WooMS\Tests\get_productfolder();
+ $ids1 = \WooMS\ProductsCategories::product_categories_update( $data );
+
+ \WooMS\CategoriesFilter::$groups = ['Одежда', 'Аксессуары'];
+
+ $ids2 = \WooMS\ProductsCategories::product_categories_update( $data );
+
+ wc_recount_all_terms();
+
+ transaction_query('rollback');
+
+ $ids3 = array_diff($ids1, $ids2);
+
+ if(count($ids3) > 0){
+ return true;
+ }
+ return false;
+
+});
+
test( 'если удалили родительскую категорию в МС - на сайте тоже надо удалить', function () {
+ //https://github.com/wpcraft-ru/wooms/issues/520
transaction_query( 'start' );
$args = array(
@@ -35,8 +75,6 @@
}
}
- $parent_term_id = get_term_by('id', $term_id, 'product_cat')->parent;
-
$list = \WooMS\ProductsCategories::product_categories_update( $data );
$parent_term_id_2 = get_term_by('id', $term_id, 'product_cat')->parent;
@@ -55,6 +93,7 @@
test( 'save categories and product', function () {
+ //https://github.com/wpcraft-ru/wooms/issues/520
transaction_query( 'start' );
$args = array(
@@ -301,12 +340,7 @@
wp_delete_category( $type->ID );
}
-
-
$data = \WooMS\Tests\get_productfolder();
- // $data = \WooMS\request('entity/productfolder');
- // $json = json_encode($data, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE);
- // ddcli($json);
$list = \WooMS\ProductsCategories::product_categories_update( $data );
transaction_query('rollback');
diff --git a/tests/includes/CurrencyConverter.php b/tests/includes/CurrencyConverter.php
new file mode 100644
index 0000000..6e9891f
--- /dev/null
+++ b/tests/includes/CurrencyConverter.php
@@ -0,0 +1,49 @@
+get_price();
+
+ transaction_query('rollback');
+
+ if($price > $price_usd){
+ return true;
+ }
+
+ return false;
+
+}, 1);
+
diff --git a/tests/includes/ProductAttributes.php b/tests/includes/ProductAttributes.php
index 9320f3b..588add0 100644
--- a/tests/includes/ProductAttributes.php
+++ b/tests/includes/ProductAttributes.php
@@ -12,7 +12,6 @@
require_once __DIR__ . '/../functions.php';
-
test('ProductAttributes - base test', function(){
transaction_query('start');
diff --git a/tests/tdd/RestApi.php b/tests/tdd/RestApi.php
index 2c6a330..9b7de21 100644
--- a/tests/tdd/RestApi.php
+++ b/tests/tdd/RestApi.php
@@ -7,6 +7,48 @@
+/**
+ * for this test we have to use REST API MS
+ */
+test( 'Test walker', function () {
+
+ transaction_query( 'start' );
+
+ $now = $now = date( "YmdHis" );
+
+ $args = [
+ 'session_id' => $now,
+ 'query_arg' => [
+ 'offset' => 10,
+ 'limit' => 10,
+ ],
+ 'rows_in_bunch' => 20,
+ 'timestamp' => $now,
+ 'end_timestamp' => 0,
+ ];
+
+ $r = \WooMS\Products\walker( $args );
+
+ transaction_query( 'rollback' );
+
+ ddcli($r);
+
+ if ( 'restart' != $r['result'] ) {
+ throw new Error('$r[result] should be restart');
+ }
+ if ( 20 != $r['args_next_iteration']['query_arg']['offset'] ) {
+ return false;
+ }
+
+ if ( empty( $r['args_next_iteration']['session_id'] ) ) {
+ return false;
+ }
+
+ return true;
+
+} );
+
+
test('assotment sync - base test - rest api', function(){
transaction_query('start');
diff --git a/tests/tdd/t.php b/tests/tdd/t.php
index f23ddf8..674497f 100644
--- a/tests/tdd/t.php
+++ b/tests/tdd/t.php
@@ -9,29 +9,25 @@
use function WooMS\{request, set_config};
require_once __DIR__ . '/../functions.php';
-/**
- * wp test tdd/t.php
- */
+// /**
+// * wp test tdd/t.php
+// */
-/**
- * todo - add test for currencies
- */
-test('currency - https://github.com/wpcraft-ru/wooms/issues/516', function(){
- transaction_query('start');
+// test('new', function(){
+// transaction_query('start');
- ddcli(\WooMS\CurrencyConverter::OPTION_KEY);
- transaction_query('rollback');
-}, 0);
+// transaction_query('rollback');
+// return false;
-// transaction_query('rollback');
+// }, 1);
diff --git a/wooms.php b/wooms.php
index fb09f47..cdd256f 100644
--- a/wooms.php
+++ b/wooms.php
@@ -19,7 +19,7 @@
* WC requires at least: 7.0
* WC tested up to: 7.2.2
*
- * Version: 9.6
+ * Version: 9.7
*/
namespace WooMS;