var examplesData = [{"section":"\u0412\u0432\u0435\u0434\u0435\u043d\u0438\u0435","name":"\u0412\u0432\u0435\u0434\u0435\u043d\u0438\u0435","description":"

\u0412\u0441\u0435 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0441 API \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u0438\u0442 \u043f\u0443\u0442\u0435\u043c \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0438 \u0437\u0430\u043f\u0440\u043e\u0441\u043e\u0432 \u043a \u0441\u0435\u0440\u0432\u0435\u0440\u0443 \u0441 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0432\u0443\u044e\u0449\u0438\u043c\u0438 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430\u043c\u0438 \u043f\u043e \u0448\u0430\u0431\u043b\u043e\u043d\u0443:https:\/\/{server}<\/b>:{port}<\/b>\/api\/0\/{operation}<\/b>?{parametr1}<\/b>={value1}<\/b>&{parametrN}<\/b>={valueN}<\/b><\/span>\u041d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0431\u043e\u043b\u044c\u0448\u0438\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b (\u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 \u0437\u0430\u043a\u0430\u0437) \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u0435\u0440\u0435\u0434\u0430\u0432\u0430\u0442\u044c \u0447\u0435\u0440\u0435\u0437 POST. \u0411\u043e\u043b\u0435\u0435 \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u044b\u0435 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u044f \u0432\u044b \u043d\u0430\u0439\u0434\u0435\u0442\u0435 \u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438 \u043a API Iiko delivery.<\/p>

\u0412 \u043f\u0440\u0438\u043c\u0435\u0440\u0430\u0445 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f 3 \u043d\u0435\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0445 \u0444\u0443\u043d\u043a\u0446\u0438\u0438, \u0437\u0430\u043d\u0438\u043c\u0430\u044e\u0449\u0438\u0435\u0441\u044f \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u043e\u0439 \u0432\u0441\u0435\u0433\u043e:<\/p>

curl_get()<\/b>

\n\/**\n* http:\/\/www.php.net\/manual\/ru\/function.curl-exec.php\n*\/\n\/**\n* Send a GET request using cURL\n* @param string $url to request\n* @param array $get values to send\n* @param array $options for cURL\n* @return string\n*\/\n\nfunction curl_get($url, array $get = NULL, array $options = array()) {\n    $defaults = array(\n        CURLOPT_URL => $url . (strpos($url, \"?\") === FALSE ? \"?\" : \"\") . http_build_query($get) ,\n        CURLOPT_HEADER => 0,\n        CURLOPT_RETURNTRANSFER => TRUE,\n        CURLOPT_DNS_USE_GLOBAL_CACHE => false,\n        CURLOPT_SSL_VERIFYHOST => 0, \/\/unsafe, but the fastest solution for the error \" SSL certificate problem, verify that the CA cert is OK\"\n        CURLOPT_SSL_VERIFYPEER => 0, \/\/unsafe, but the fastest solution for the error \" SSL certificate problem, verify that the CA cert is OK\"\n    );\n    $ch = curl_init();\n    curl_setopt_array($ch, ($options + $defaults));\n    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);\n    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);\n\n\n    if (!$result = curl_exec($ch)) {\n        trigger_error(curl_error($ch));\n    }\n\n    curl_close($ch);\n    return $result;\n}\n<\/pre>\n<\/p>

curl_post()<\/b>

\n\/**\n* http:\/\/www.php.net\/manual\/ru\/function.curl-exec.php\n*\/\n\/**\n* Send a POST request using cURL\n* @param string $url to request\n* @param array|string $post values to send\n* @param array $options for cURL\n* @internal param array $get\n* @return string\n*\/\nfunction curl_post($url, $post = null, array $options = array()) {\n    $defaults = array(\n                        CURLOPT_POST => 1,\n                        CURLOPT_HEADER => 0,\n                        CURLOPT_URL => $url,\n                        CURLOPT_FRESH_CONNECT => 1,\n                        CURLOPT_RETURNTRANSFER => 1,\n                        CURLOPT_FORBID_REUSE => 1,\n                        CURLOPT_SSL_VERIFYHOST =>0,\/\/unsafe, but the fastest solution for the error \" SSL certificate problem, verify that the CA cert is OK\"\n                        CURLOPT_SSL_VERIFYPEER=>0, \/\/unsafe, but the fastest solution for the error \" SSL certificate problem, verify that the CA cert is OK\"\n                        CURLOPT_POSTFIELDS => $post\n                    );\n    $ch = curl_init();\n    curl_setopt_array($ch, ($options + $defaults));\n    if( ! $result = curl_exec($ch)){\n        trigger_error(curl_error($ch));\n    }\n    curl_close($ch);\n    return $result;\n}\n<\/pre><\/p>

getGUID()<\/b>

\nfunction getGUID(){\n    if (function_exists(\"com_create_guid\")){\n        return com_create_guid();\n    }else{\n        mt_srand((double)microtime()*10000);\/\/optional for php 4.2.0 and up.\n        $charId = md5(uniqid(rand(), true));\n        $hyphen = chr(45);\/\/ \"-\"\n        $uuid =substr($charId, 0, 8).$hyphen\n        .substr($charId, 8, 4).$hyphen\n        .substr($charId,12, 4).$hyphen\n        .substr($charId,16, 4).$hyphen\n        .substr($charId,20,12);\n        return $uuid;\n    }\n}\n<\/pre><\/p>

\u041f\u0440\u0438\u0432\u0435\u0434\u0435\u043d\u043d\u044b\u0439 \u043a\u043e\u0434 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d \u0432 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e \u0441\u043e\u043a\u0440\u0430\u0449\u0435\u043d\u043d\u043e\u043c \u0434\u043b\u044f \u0447\u0438\u0442\u0430\u0431\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u0435, \u043f\u0440\u0438 \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0443 \u0441\u0435\u0431\u044f, \u043d\u0435 \u0437\u0430\u0431\u044b\u0432\u0430\u0439\u0442\u0435 \u0432\u0430\u043b\u0438\u0434\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0432\u0435\u0434\u0435\u043d\u044b\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c \u0434\u0430\u043d\u043d\u044b\u0435, \u043e\u0431\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0442\u044c \u0438\u0441\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0438.\u0442.\u043f.<\/p>","steps":[],"exampleName":"main"},{"section":"\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b","name":"\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u043e\u0439 \u043d\u0430\u043a\u043b\u0430\u0434\u043d\u043e\u0439","description":"","steps":[{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0442\u043e\u043a\u0435\u043d\u0430","use_method":"get_access_token"},{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u043d\u043e\u043c\u0435\u043d\u043a\u043b\u0430\u0442\u0443\u0440\u044b","use_method":"get_products"},{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0441\u043a\u043b\u0430\u0434\u043e\u0432","use_method":"get_stores"},{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u043e\u0432","use_method":"get_suppliers"},{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u043f\u0440\u0430\u0439\u0441-\u043b\u0438\u0441\u0442\u0430 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430","use_method":"get_supplier_pricebooks","customProcess":"process__get_supplier_pricebooks"},{"name":"\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u043e\u0439 \u043d\u0430\u043a\u043b\u0430\u0434\u043d\u043e\u0439","use_method":"documents_import_incomingInvoice","customProcess":"process__documents_import_incomingInvoice"}],"exampleName":"documents_import_incomingInvoice"},{"section":"\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b","name":"\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0440\u0430\u0441\u0445\u043e\u0434\u043d\u043e\u0439 \u043d\u0430\u043a\u043b\u0430\u0434\u043d\u043e\u0439","description":"","steps":[{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0442\u043e\u043a\u0435\u043d\u0430","use_method":"get_access_token"},{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u043d\u043e\u043c\u0435\u043d\u043a\u043b\u0430\u0442\u0443\u0440\u044b","use_method":"get_products"},{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0441\u043a\u043b\u0430\u0434\u043e\u0432","use_method":"get_stores"},{"name":"\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0440\u0430\u0441\u0445\u043e\u0434\u043d\u043e\u0439 \u043d\u0430\u043a\u043b\u0430\u0434\u043d\u043e\u0439","use_method":"documents_import_outgoingInvoice","customProcess":"process__documents_import_outgoingInvoice"}],"exampleName":"documents_import_outgoingInvoice"},{"section":"\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b","name":"\u0412\u044b\u0433\u0440\u0443\u0437\u043a\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u044b\u0445 \u043d\u0430\u043a\u043b\u0430\u0434\u043d\u044b\u0445","description":"","steps":[{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0442\u043e\u043a\u0435\u043d\u0430","use_method":"get_access_token"},{"name":"\u0412\u044b\u0433\u0440\u0443\u0437\u043a\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u044b\u0445 \u043d\u0430\u043a\u043b\u0430\u0434\u043d\u044b\u0445","use_method":"documents_export_incomingInvoice"}],"exampleName":"documents_export_incomingInvoice"},{"section":"\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b","name":"\u0412\u044b\u0433\u0440\u0443\u0437\u043a\u0430 \u0440\u0430\u0441\u0445\u043e\u0434\u043d\u044b\u0445 \u043d\u0430\u043a\u043b\u0430\u0434\u043d\u044b\u0445","description":"","steps":[{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0442\u043e\u043a\u0435\u043d\u0430","use_method":"get_access_token"},{"name":"\u0412\u044b\u0433\u0440\u0443\u0437\u043a\u0430 \u0440\u0430\u0441\u0445\u043e\u0434\u043d\u044b\u0445 \u043d\u0430\u043a\u043b\u0430\u0434\u043d\u044b\u0445","use_method":"documents_export_outgoingInvoice"}],"exampleName":"documents_export_outgoingInvoice"},{"section":"\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b","name":"\u0412\u044b\u0433\u0440\u0443\u0437\u043a\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u043e\u0439 \u043d\u0430\u043a\u043b\u0430\u0434\u043d\u043e\u0439 \u043f\u043e \u0435\u0435 \u043d\u043e\u043c\u0435\u0440\u0443","description":"","steps":[{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0442\u043e\u043a\u0435\u043d\u0430","use_method":"get_access_token"},{"name":"\u0412\u044b\u0433\u0440\u0443\u0437\u043a\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u043e\u0439 \u043d\u0430\u043a\u043b\u0430\u0434\u043d\u043e\u0439 \u043f\u043e \u0435\u0435 \u043d\u043e\u043c\u0435\u0440\u0443","use_method":"documents_export_incomingInvoice_byNumber","customProcess":"process__export_allInvoices_ByNumber"}],"exampleName":"documents_export_incomingInvoice_byNumber"},{"section":"\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b","name":"\u0412\u044b\u0433\u0440\u0443\u0437\u043a\u0430 \u0440\u0430\u0441\u0445\u043e\u0434\u043d\u043e\u0439 \u043d\u0430\u043a\u043b\u0430\u0434\u043d\u043e\u0439 \u043f\u043e \u0435\u0435 \u043d\u043e\u043c\u0435\u0440\u0443","description":"","steps":[{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0442\u043e\u043a\u0435\u043d\u0430","use_method":"get_access_token"},{"name":"\u0412\u044b\u0433\u0440\u0443\u0437\u043a\u0430 \u0440\u0430\u0441\u0445\u043e\u0434\u043d\u043e\u0439 \u043d\u0430\u043a\u043b\u0430\u0434\u043d\u043e\u0439 \u043f\u043e \u0435\u0435 \u043d\u043e\u043c\u0435\u0440\u0443","use_method":"documents_export_outgoingInvoice_byNumber","customProcess":"process__export_allInvoices_ByNumber"}],"exampleName":"documents_export_outgoingInvoice_byNumber"},{"section":"\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b","name":"\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0432\u043e\u0437\u0432\u0440\u0430\u0442\u043d\u043e\u0439 \u043d\u0430\u043a\u043b\u0430\u0434\u043d\u043e\u0439","description":"","steps":[{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0442\u043e\u043a\u0435\u043d\u0430","use_method":"get_access_token"},{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u044b\u0445 \u043d\u0430\u043a\u043b\u0430\u0434\u043d\u044b\u0445","use_method":"documents_export_incomingInvoice"},{"name":"\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0432\u043e\u0437\u0432\u0440\u0430\u0442\u043d\u043e\u0439 \u043d\u0430\u043a\u043b\u0430\u0434\u043d\u043e\u0439","use_method":"documents_import_returnedInvoice","customProcess":"process__documents_import_returnedInvoice"}],"exampleName":"documents_import_returnedInvoice"},{"section":"\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b","name":"\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0430\u043a\u0442\u0430 \u043f\u0440\u0438\u0433\u043e\u0442\u043e\u0432\u043b\u0435\u043d\u0438\u044f","description":"","steps":[{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0442\u043e\u043a\u0435\u043d\u0430","use_method":"get_access_token"},{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u043d\u043e\u043c\u0435\u043d\u043a\u043b\u0430\u0442\u0443\u0440\u044b","use_method":"get_products"},{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0441\u043a\u043b\u0430\u0434\u043e\u0432","use_method":"get_stores"},{"name":"\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0430\u043a\u0442\u0430 \u043f\u0440\u0438\u0433\u043e\u0442\u043e\u0432\u043b\u0435\u043d\u0438\u044f","use_method":"documents_import_productionDocument","customProcess":"process__documents_import_productionDocument"}],"exampleName":"documents_import_productionDocument"},{"section":"\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b","name":"\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0430\u043a\u0442\u0430 \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438","description":"","steps":[{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0442\u043e\u043a\u0435\u043d\u0430","use_method":"get_access_token"},{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u043d\u043e\u043c\u0435\u043d\u043a\u043b\u0430\u0442\u0443\u0440\u044b","use_method":"get_products"},{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0441\u043a\u043b\u0430\u0434\u043e\u0432","use_method":"get_stores"},{"name":"\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0430\u043a\u0442\u0430 \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438","use_method":"documents_import_salesDocument","customProcess":"process__documents_import_salesDocument"}],"exampleName":"documents_import_salesDocument"},{"section":"\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b","name":"\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0438\u043d\u0432\u0435\u043d\u0442\u0430\u0440\u0438\u0437\u0430\u0446\u0438\u0438","description":"","steps":[{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0442\u043e\u043a\u0435\u043d\u0430","use_method":"get_access_token"},{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u043d\u043e\u043c\u0435\u043d\u043a\u043b\u0430\u0442\u0443\u0440\u044b","use_method":"get_products"},{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0441\u043a\u043b\u0430\u0434\u043e\u0432","use_method":"get_stores"},{"name":"\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0438\u043d\u0432\u0435\u043d\u0442\u0430\u0440\u0438\u0437\u0430\u0446\u0438\u0438","use_method":"documents_import_incomingInventory","customProcess":"process__documents_import_incomingInventory"}],"exampleName":"documents_import_incomingInventory"},{"section":"\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b","name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u0438\u043d\u0432\u0435\u043d\u0442\u0430\u0440\u0438\u0437\u0430\u0446\u0438\u0438 \u0434\u043e \u0435\u0435 \u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u044f","description":"","steps":[{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0442\u043e\u043a\u0435\u043d\u0430","use_method":"get_access_token"},{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u043d\u043e\u043c\u0435\u043d\u043a\u043b\u0430\u0442\u0443\u0440\u044b","use_method":"get_products"},{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0441\u043a\u043b\u0430\u0434\u043e\u0432","use_method":"get_stores"},{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u0438\u043d\u0432\u0435\u043d\u0442\u0430\u0440\u0438\u0437\u0430\u0446\u0438\u0438 \u0434\u043e \u0435\u0435 \u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u044f","use_method":"documents_check_incomingInventory","customProcess":"process__documents_import_incomingInventory"}],"exampleName":"documents_check_incomingInventory"},{"section":"OLAP","name":"OLAP-\u043e\u0442\u0447\u0451\u0442","description":"","steps":[{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0442\u043e\u043a\u0435\u043d\u0430","use_method":"get_access_token"},{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0445 \u043f\u043e\u043b\u0435\u0439 OLAP-\u043e\u0442\u0447\u0451\u0442\u0430","use_method":"get_olap_fields","customProcess":"process__get_olap_fields"},{"name":"\u0412\u044b\u0431\u043e\u0440 \u043f\u043e\u043b\u0435\u0439 \u043e\u0442\u0447\u0451\u0442\u0430","use_method":"select_olap_fields","customProcess":"process__select_olap_fields"},{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0434\u0430\u043d\u043d\u044b\u0445 OLAP-\u043e\u0442\u0447\u0451\u0442\u0430","use_method":"get_olap","customProcess":"process__get_olap"},{"name":"\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0434\u0430\u043d\u043d\u044b\u0445 OLAP-\u043e\u0442\u0447\u0451\u0442\u0430","use_method":"render_olap","customProcess":"process__render_olap"}],"exampleName":"olap"},{"section":"iikoTransport","name":"\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u0437\u0430\u043a\u0430\u0437\u0430","description":"","steps":[{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0442\u043e\u043a\u0435\u043d\u0430","use_method":"get_access_token_trn","description":"

\u0414\u043b\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u0441 iikoCloud API \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u0442\u043e\u043a\u0435\u043d. \u0422\u043e\u043a\u0435\u043d \u0432\u044b\u0434\u0430\u0451\u0442\u0441\u044f \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0438 \u043b\u043e\u0433\u0438\u043d\u0430, \u0441\u043e\u0437\u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0432 \u041b\u041a iikoWeb. \u0422\u043e\u043a\u0435\u043d \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u043c, \u043f\u0440\u0438 \u0438\u0441\u0442\u0435\u0447\u0435\u043d\u0438\u0438 \u0435\u0433\u043e \u0441\u0440\u043e\u043a\u0430 \u0434\u0430\u0432\u043d\u043e\u0441\u0442\u0438 (\u0432\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u0435 \u043e\u0442\u0432\u0435\u0442 \u043e\u0442 http api \u0441 \u043a\u043e\u0434\u043e\u043c 401) \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0440\u043e\u0441\u0438\u0442\u044c \u0442\u043e\u043a\u0435\u043d.<\/p>"},{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0441\u043f\u0438\u0441\u043a\u0430 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0439","use_method":"get_organization_list_trn","description":"

\u041a \u043e\u0434\u043d\u043e\u0433\u043e \u043b\u043e\u0433\u0438\u043d\u0443 \u0432 \u041b\u041a iikoWeb \u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0438\u0432\u044f\u0437\u0430\u0442\u044c \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0439 (\u0435\u0441\u043b\u0438 \u0443 \u0432\u0430\u0441 \u0441\u0435\u0442\u044c). \u0427\u0442\u043e\u0431\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0441\u043f\u0438\u0441\u043e\u043a \u043f\u0440\u0438\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0445 \u043a \u043b\u043e\u0433\u0438\u043d\u0443 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0439, \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u0435 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0437\u0430\u043f\u0440\u043e\u0441 \u0438 \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0438\u0437 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u0443\u044e \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044e \u0434\u043b\u044f \u0434\u0430\u043b\u044c\u043d\u0435\u0439\u0448\u0435\u0439 \u0440\u0430\u0431\u043e\u0442\u044b.<\/p>"},{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u043c\u0435\u043d\u044e","use_method":"get_organization_nomenclature_trn","description":"

\u041d\u0430 \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0438 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u043e\u0433\u043e \u0448\u0430\u0433\u043e \u0440\u0430\u043d\u0435\u0435 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u0430 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0437\u0430\u043f\u0440\u043e\u0441\u0438\u0442\u0435 \u043c\u0435\u043d\u044e.<\/p>"},{"name":"\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0442\u043e\u0432\u0430\u0440\u043e\u0432 \u0432 \u0437\u0430\u043a\u0430\u0437","description":"

\u041d\u0430 \u044d\u0442\u043e\u043c \u0448\u0430\u0433\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0430\u0431\u0438\u0440\u0430\u0435\u0442 \u0437\u0430\u043a\u0430\u0437. \u0414\u043b\u044f \u043f\u0440\u0438\u043c\u0435\u0440\u0430 \u0441\u0434\u0435\u043b\u0430\u0435\u043c \u044d\u0442\u043e \u0437\u0430 \u043d\u0435\u0433\u043e \u0438 \u043f\u043e\u043b\u043e\u0436\u0438\u043c \u0441\u043b\u0443\u0447\u0430\u0439\u043d\u043e\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u043b\u0443\u0447\u0430\u0439\u043d\u044b\u0445 \u0431\u043b\u044e\u0434 \u0438\u0437 \u0441\u043f\u0438\u0441\u043a\u0430 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0445<\/p>","use_method":false,"customProcess":"addRandomItemsWithModToOrder_trn"},{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0442\u0438\u043f\u043e\u0432 \u043e\u043f\u043b\u0430\u0442\u044b","use_method":"get_payment_types_trn","description":"

\u041f\u0440\u0438 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u0438 \u0437\u0430\u043a\u0430\u0437\u0430 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0443\u043a\u0430\u0437\u0430\u0442\u044c \u0444\u0430\u043a\u0442 \u043e\u043f\u043b\u0430\u0442\u044b \u0437\u0430\u043a\u0430\u0437\u0430. \u0414\u043b\u044f \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438 \u0432 iiko \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043e\u0431 \u043e\u043f\u043b\u0430\u0442\u0435 \u0437\u0430\u043a\u0430\u0437\u0430 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0443\u043a\u0430\u0437\u0430\u0442\u044c \u0442\u0438\u043f \u043e\u043f\u043b\u0430\u0442\u044b. \u041f\u043e\u043b\u0443\u0447\u0438\u0442\u0435 \u0441\u043f\u0438\u0441\u043e\u043a \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0445 \u0432 iiko \u0442\u0438\u043f\u043e\u0432 \u043e\u043f\u043b\u0430\u0442 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u043c\u0435\u0442\u043e\u0434\u043e\u043c. \u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u043f\u043e\u043b\u0435 paymentTypeKind \u0434\u043b\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0441\u043f\u043e\u0441\u043e\u0431\u0430 \u043e\u043f\u043b\u0430\u0442\u044b \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u043c (\u043d\u0430\u043b\u0438\u0447\u043d\u044b\u0435, \u043a\u0430\u0440\u0442\u0430).<\/p>"},{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0442\u0435\u0440\u043c\u0438\u043d\u0430\u043b\u044c\u043d\u044b\u0445 \u0433\u0440\u0443\u043f\u043f","use_method":"get_terminal_groups_trn","description":"

\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435, \u043d\u0430 \u0433\u043b\u0430\u0432\u043d\u0443\u044e \u043a\u0430\u0441\u0441\u0443 \u043a\u0430\u043a\u043e\u0439 \u0433\u0440\u0443\u043f\u043f\u044b \u0442\u0435\u0440\u043c\u0438\u043d\u0430\u043b\u043e\u0432 \u0434\u043e\u043b\u0436\u0435\u043d \u043f\u043e\u0441\u0442\u0443\u043f\u0438\u0442\u044c \u0437\u0430\u043a\u0430\u0437.<\/p>"},{"name":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0442\u0438\u043f\u043e\u0432 \u0437\u0430\u043a\u0430\u0437\u043e\u0432","use_method":"get_order_types_trn","description":"

\u0423\u043a\u0430\u0436\u0438\u0442\u0435, \u0437\u0430\u043a\u0430\u0437 \u043a\u0430\u043a\u043e\u0433\u043e \u0442\u0438\u043f\u0430 \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u0441\u043e\u0437\u0434\u0430\u043d: \u0441\u0430\u043c\u043e\u0432\u044b\u0432\u043e\u0437, \u043a\u0443\u0440\u044c\u0435\u0440 \u0438 \u0442.\u043f.<\/p>"},{"name":"\u041f\u043e\u043b\u0443\u0447\u0430\u0435\u043c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u0433\u043e\u0440\u043e\u0434\u0430\u0445","use_method":"get_cities_trn","description":"

\u0414\u043b\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438 \u043a\u0443\u0440\u044c\u0435\u0440\u043e\u043c \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0443\u043a\u0430\u0437\u0430\u0442\u044c \u0430\u0434\u0440\u0435\u0441 \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438. \u0410\u0434\u0440\u0435\u0441 \u043c\u043e\u0436\u043d\u043e \u0437\u0430\u0434\u0430\u0432\u0430\u0442\u044c \u043b\u0438\u0431\u043e \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442\u0430\u043c\u0438, \u043b\u0438\u0431\u043e \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u043e\u0439 address, \u0432 \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u043c\u0438\u043d\u0438\u043c\u0430\u043b\u044c\u043d\u043e \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0443\u043a\u0430\u0437\u0430\u0442\u044c \u0433\u043e\u0440\u043e\u0434 \u0438 \u0443\u043b\u0438\u0446\u0443. \u041f\u043e\u043b\u0443\u0447\u0438\u0442\u0435 \u0441\u043f\u0438\u0441\u043e\u043a \u0433\u043e\u0440\u043e\u0434\u043e\u0432 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u043c\u0435\u0442\u043e\u0434\u043e\u043c.<\/p>"},{"name":"\u041f\u043e\u043b\u0443\u0447\u0430\u0435\u043c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u0443\u043b\u0438\u0446\u0430\u0445 \u0433\u043e\u0440\u043e\u0434\u0430","use_method":"get_streets_trn","description":"

\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0443\u043b\u0438\u0446\u0443 \u0434\u043b\u044f \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u0433\u043e \u043d\u0430 \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u043c \u0448\u0430\u0433\u0435 \u0433\u043e\u0440\u043e\u0434\u0430.<\/p>"},{"name":"\u041e\u0444\u043e\u0440\u043c\u043b\u0435\u043d\u0438\u0435 \u0437\u0430\u043a\u0430\u0437\u0430","use_method":"add_order_trn","customProcess":"process__addOrder_trn","description":"

\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u0434\u0430\u043d\u043d\u044b\u0435, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0435 \u043d\u0430 \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0438\u0445 \u0448\u0430\u0433\u0430\u0445, \u0437\u0430\u043f\u043e\u043b\u043d\u0438\u0442\u0435 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0443 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0437\u0430\u043a\u0430\u0437\u0430 \u0438 \u043e\u0442\u043f\u0440\u0430\u0432\u044c\u0442\u0435 \u0437\u0430\u043a\u0430\u0437 \u0432 iikoCloud. \u0412 \u043e\u0442\u0432\u0435\u0442 \u0432\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u0435 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0437\u0430\u043a\u0430\u0437\u0430 \u0438 \u0441\u0442\u0430\u0442\u0443\u0441 \u0435\u0433\u043e \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f. \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0432\u044b \u0441\u043c\u043e\u0436\u0435\u0442\u0435 \u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0441\u0442\u0430\u0442\u0443\u0441\u0430 \u0437\u0430\u043a\u0430\u0437\u0430 \u0434\u043b\u044f \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f \u043a\u043b\u0438\u0435\u043d\u0442\u0430.<\/p>"},{"name":"\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u0441\u0442\u0430\u0442\u0443\u0441\u0430 \u0437\u0430\u043a\u0430\u0437\u0430","use_method":"check_order_status_trn"}],"exampleName":"trn_create_order"}];