{"info":{"_postman_id":"1f6bf01f-a106-4deb-a284-eb781e99e155","name":"Sovtes Public API v2.9","description":"<html><head></head><body><p>#StandWithUkraine <a href=\"https://www.standwithukraine.how/\">https://www.standwithukraine.how/</a></p>\n<p>API v2 allows for rich seamless interaction between Sovtes platform and your ERP/CRM system via HTTP.</p>\n<h2 id=\"before-you-start\">Before you start</h2>\n<p>To start working with the API you must:</p>\n<ol>\n<li><p>have an account in the Sovtes application (<a href=\"https://sovtes.ua/w/#form\">Create account...</a>)</p>\n</li>\n<li><p>check the section in the webapp UI: <em>My data / API</em>. All the necessary details are there.</p>\n</li>\n</ol>\n<p>The {{host}} variables:</p>\n<ul>\n<li><p>testing environment: <a href=\"https://test.sovtes.ua\">https://test.sovtes.ua</a></p>\n</li>\n<li><p>production environment: <a href=\"https://sovtes.uaLanguages\">https://sovtes.ua</a></p>\n</li>\n</ul>\n<p>Languages supported:</p>\n<ol>\n<li><p>Українська (ua)</p>\n</li>\n<li><p>English (en)</p>\n</li>\n<li><p>Deutsch (de)</p>\n</li>\n<li><p>Français (fr)</p>\n</li>\n<li><p>Eesti (et)</p>\n</li>\n<li><p>Polski (pl)</p>\n</li>\n<li><p>Slovenščina (sl)</p>\n</li>\n<li><p>Русский (ru)</p>\n</li>\n</ol>\n<h2 id=\"legacy-api-documentation\">Legacy API documentation</h2>\n<ul>\n<li><p>version 0.9 (in Russian): <a href=\"https://sovt.es/tDP\">https://sovt.es/tDP</a></p>\n</li>\n<li><p>version 1.0m: <a href=\"https://sovt.es/mknzv\">https://sovt.es/mknzv</a></p>\n</li>\n<li><p>version 1.5: <a href=\"https://sovt.es/dF5\">https://sovt.es/dF5</a></p>\n</li>\n</ul>\n<h2 id=\"web-hooks\">Web hooks</h2>\n<p>If enabled by the admins and allowed by the contract, the system has the ability to send the events to a user-defined URL for web hooks about the events within the system. To set up the hooks, all you need to do is set up the URL in the API section in the system web UI, and pick the required events you want traced in the notification settings.</p>\n<p>The body of the requests will contain the information about the event, and the route or tender involved, yet not the details of the event. In other words, if you receive a message within a route, you will receive a notification about the fact that a new message had been added, yet you will not receive the details of the message itself. For that, you would need to use our endpoints to get the detailed information.</p>\n<p>Example of the request you would receive in your URL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"body\": {\n    \"moment\": \"2025-05-10 19:15:04\",\n    \"event\": 12,\n    \"message\": \"Attention! New message received in route #12345-05-25 (Ukraine -&gt; Germany). Read the important message.\",\n    \"route\": {\n      \"periodic\": \"12345-05-25\",\n      \"apicode\": \"880-19100-052025\",\n      \"guiurl\": \"https://sovtes.ua/a/index.php?p=view&amp;id=12345-05-25&amp;m=shipping\",\n      \"apiurl\": \"https://sovtes.ua/a/v2/rest/public/singleRoute?route=12345-05-25\"\n    }\n  },\n  \"signature\": \"d0c80fc9279b63f93a5b03g1d8a833de719f5766b30aad718ac58a39bbfa63c7\"\n}\n\n</code></pre>\n<ul>\n<li><p><code>body.moment</code> is in the timezone of the application (defaults to Europe/Kyiv)</p>\n</li>\n<li><p><code>body.event</code> is the id of the event (see <a href=\"https://sovt.es/data-mapping\">full description of events</a>)</p>\n</li>\n<li><p><code>body.message</code> will contain the actual event text description</p>\n</li>\n<li><p><code>body.route</code> will contain the details of the linked route/tender, with the periodic number within Sovtes, your internal id, a URL to access the route/tender in the web UI, and the endpoint to get the details of the route by this REST API</p>\n</li>\n<li><p><code>signature</code> param will contain a SHA256 MAC signature of the value of the entire <code>body</code> param with the key indicated in your account in the API section as \"MAC key\". Make sure you to verify the signature on your end to ensure message integrity.</p>\n</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"1387425","collectionId":"1f6bf01f-a106-4deb-a284-eb781e99e155","publishedId":"TVem9oaa","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2022-10-04T22:32:49.000Z"},"item":[{"name":"Authorization","item":[{"name":"Authenticate a user","event":[{"listen":"test","script":{"id":"2f1244e1-965c-4c43-ac9a-8d590f04308f","exec":["var response = JSON.parse(responseBody);","var isContains = pm.response.text()","","if (response.status === 200 || response.status === 'success') {","    pm.test(\"Body contains a token\", () => {","        pm.expect(isContains).to.include(\"token\");","    });","","    pm.test(\"token less than 5084 symbols\", function () {","        var length = response.data.token.length","        var result = length <= 5084 ? true : false","        pm.expect(result).to.equal(true)","    });","","    pm.environment.set(\"token\", response.data.token);","","} else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","   ","};","","",""],"type":"text/javascript","packages":{}}}],"id":"4a3f3d1e-4b71-4e65-a7c0-f3c3a6c7ea12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{staticToken}}","description":"<p>static token you get from within the webapp</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"<p>your username or email from the app</p>\n","key":"login","type":"text","value":"{{username}}"},{"description":"<p>your password from the app</p>\n","key":"password","type":"text","value":"{{password}}"}]},"url":"{{host}}/a/v2/rest/public/auth","description":"<p>This is where everything starts.</p>\n<p>Allows you to login to get your authorization token. Supply the username/email and password that you use to access the application. You will also need a static token, which you can get from within the webapp (<em>My data / API</em> section; <a href=\"https://sovtes.ua/w/#form\">Create Sovtes account...</a>).</p>\n<ul>\n<li>If successful, you will receive the authentication token in <code>data.token</code> param</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header</li>\n</ul>\n<p>The token is valid for 8 hours, so make sure you request new token only when the current one is no longer valid.</p>\n","urlObject":{"path":["a","v2","rest","public","auth"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"1676683b-7af5-4389-8a8e-585e3eb40f50","name":"Success","originalRequest":{"method":"POST","header":[{"description":"static token you get from our managers","key":"Authorization","type":"text","value":"{{staticToken}}"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"your username or email from the app","key":"login","type":"text","value":"{{username}}"},{"description":"your password from the app","key":"password","type":"text","value":"{{password}}"}]},"url":"{{host}}/a/v2/rest/public/auth"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"token\": \"{{vault:json-web-token}}\"\n    },\n    \"status\": \"success\"\n}\n"},{"id":"c588c33e-2dbd-4f4f-b7be-19b6decaebdf","name":"Incorrect user credentials","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"{{staticToken}}"},{"key":"Language","value":"en","type":"text"},{"key":"Extend","value":"dictionary","type":"text","disabled":true}],"body":{"mode":"formdata","formdata":[{"key":"login","type":"text","value":"bad username"},{"key":"password","type":"text","value":"bad password"}]},"url":"{{host}}/a/v2/rest/public/auth"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \" Login failed. Login / email or password entered incorrectly.\",\n    \"relogin\": true\n}"},{"id":"d5e2fce7-c8a4-4c51-b800-cef603904a08","name":"User blocked","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{staticToken}}","description":"static token you get from our managers","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"your username or email from the app","key":"login","type":"text","value":"{{username}}"},{"description":"your password from the app","key":"password","type":"text","value":"{{password}}"}]},"url":"{{host}}/a/v2/rest/public/auth"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"This user is blocked. Please contact the administrator (during business hours) to restore access: 044 394-85-04, office@sovtes.ua.\",\n    \"relogin\": true\n}"}],"_postman_id":"4a3f3d1e-4b71-4e65-a7c0-f3c3a6c7ea12"},{"name":"Request Password Reset","event":[{"listen":"test","script":{"id":"711464e8-3be2-4833-a0a7-e2688c713e33","exec":["var response = JSON.parse(responseBody);","var isContains = pm.response.text()","","if (response.status === 200 || response.status === 'success') {","    pm.test(\"Body contains a token\", () => {","        pm.expect(isContains).to.include(\"token\");","    });","","    pm.test(\"token less than 5084 symbols\", function () {","        var length = response.data.token.length","        var result = length <= 5084 ? true : false","        pm.expect(result).to.equal(true)","    });","","    pm.environment.set(\"token\", response.data.token);","","} else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","   ","};","","",""],"type":"text/javascript"}}],"id":"d2654bbe-aa5a-44c6-81fe-4d20f2410c45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>static token you get from our managers</p>\n","key":"Authorization","type":"text","value":"{{staticToken}}"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"<p>your email from the app</p>\n","key":"email","type":"text","value":"{{email}}"},{"description":"<p>your phone number from the app</p>\n","key":"cellnum","type":"text","value":"{{cellnum}}"}]},"url":"{{host}}/a/v2/rest/public/requestPasswordReset","description":"<p>Allows you to request a password reset, you will need your static token, email and phone number.</p>\n<p>Supply your email and phone number to get a recovery link at your email.</p>\n<ul>\n<li>If successful, you will receive a temporary reset link to your email with a 1 time code</li>\n<li>If unsuccessful, you will receive an error explaining the problem in the language you supplied with the header</li>\n</ul>\n<p>(!) NOTE: you can make a password reset request only once per 24 hours.</p>\n","urlObject":{"path":["a","v2","rest","public","requestPasswordReset"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"9157a69e-3c2c-4f43-8c61-e8aaa988305b","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJuYW1lIjoiVGVzdCBtb2JpbGUgdmVyc2lvbiB0b2tlbiIsImNvbXBhbnkiOiJTb3Z0ZXMiLCJzdXBlciI6InRva2VuIn0.Wrdh...","description":"static token you get from our managers","type":"text"},{"key":"Language","value":"ru","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"},{"key":"Extend","value":"dictionary","type":"text","disabled":true}],"body":{"mode":"formdata","formdata":[{"description":"required","key":"email","type":"text","value":"{{email}}"},{"description":"required","key":"cellnum","type":"text","value":"{{cellnum}}"}]},"url":"https://sovtes.devel/a/v2/rest/public/requestPasswordReset"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"message\": \"A password reset link has been sent to your email address.\"\n    },\n    \"status\": \"success\"\n}"},{"id":"5d77e25c-1b74-4ecd-8994-be6b0ea78af1","name":"User not found","originalRequest":{"method":"POST","header":[{"description":"static token you get from our managers","key":"Authorization","type":"text","value":"{{staticToken}}"},{"key":"Language","value":"en","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"your email from the app","key":"email","type":"text","value":"{{email}}"},{"description":"your phone number from the app","key":"cellnum","type":"text","value":"{{cellnum}}"}]},"url":"{{host}}/a/v2/rest/public/requestPasswordReset"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"No such user found\",\n    \"relogin\": false\n}"}],"_postman_id":"d2654bbe-aa5a-44c6-81fe-4d20f2410c45"},{"name":"Reset Password","event":[{"listen":"test","script":{"id":"13a9b79f-9e65-4ead-b742-d19e2e9b6007","exec":["var response = JSON.parse(responseBody);","var isContains = pm.response.text()","","if (response.status === 200 || response.status === 'success') {","    pm.test(\"Body contains a token\", () => {","        pm.expect(isContains).to.include(\"token\");","    });","","    pm.test(\"token less than 5084 symbols\", function () {","        var length = response.data.token.length","        var result = length <= 5084 ? true : false","        pm.expect(result).to.equal(true)","    });","","    pm.environment.set(\"token\", response.data.token);","","} else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","   ","};","","",""],"type":"text/javascript"}}],"id":"81cb1aff-eef0-41ae-a7c3-626ce3f5f581","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>static token you get from our managers</p>\n","key":"Authorization","type":"text","value":"{{staticToken}}"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"password1","value":"{{newPassword}}","description":"<p>new password</p>\n","type":"text"},{"key":"password2","value":"{{newPassword}}","description":"<p>the same new password</p>\n","type":"text"}]},"url":"{{host}}/a/v2/rest/public/resetPassword?token={{oneTimeCode}}","description":"<p>Allows you to reset your password.</p>\n<p>(!) NOTE: values of <code>password1</code> and <code>password2</code> parameters must be exactly identical.</p>\n<ul>\n<li>If successful, you will have reset your password and will be able to authenticate with it</li>\n<li>If unsuccessful, you will receive an error explaining the problem in the language you supplied with the header</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","resetPassword"],"host":["{{host}}"],"query":[{"description":{"content":"<p>one-time code sent to your email</p>\n","type":"text/plain"},"key":"token","value":"{{oneTimeCode}}"}],"variable":[]}},"response":[{"id":"b8500770-9781-4eda-8702-552580bd0b4b","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJuYW1lIjoiVGVzdCBtb2JpbGUgdmVyc2lvbiB0b2tlbiIsImNvbXBhbnkiOiJTb3Z0ZXMiLCJzdXBlciI6InRva2VuIn0.Wrdh...","description":"static token you get from our managers","type":"text"},{"key":"Language","value":"ru","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"},{"key":"Extend","value":"dictionary","type":"text","disabled":true}],"body":{"mode":"formdata","formdata":[{"key":"password1","value":"{{newPassword}}","description":"new password","type":"text"},{"key":"password2","value":"{{newPassword}}","description":"the same new password","type":"text"}]},"url":{"raw":"https://sovtes.devel/a/v2/rest/public/resetPassword?token={{oneTimeCode}}","protocol":"https","host":["sovtes","devel"],"path":["a","v2","rest","public","resetPassword"],"query":[{"key":"token","value":"{{oneTimeCode}}","description":"one-time code sent to your email"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"message\": \"The password has been changed successfully.\"\n    },\n    \"status\": \"success\"\n}"},{"id":"b7da9fee-6d58-4456-bfe2-79b108795d0d","name":"Something went wrong","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{staticToken}}","description":"static token you get from our managers","type":"text"},{"key":"Language","value":"ru","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"},{"key":"Extend","value":"dictionary","type":"text","disabled":true}],"body":{"mode":"formdata","formdata":[{"key":"password1","value":"{{newPassword}}","description":"new password","type":"text"},{"key":"password2","value":"{{newPassword}}","description":"the same new password","type":"text"}]},"url":{"raw":"{{host}}/a/v2/rest/public/resetPassword?token={{oneTimeCode}}","host":["{{host}}"],"path":["a","v2","rest","public","resetPassword"],"query":[{"key":"token","value":"{{oneTimeCode}}","description":"one-time code sent to your email"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Data not found.\",\n    \"relogin\": false\n}"}],"_postman_id":"81cb1aff-eef0-41ae-a7c3-626ce3f5f581"}],"id":"088080f1-be2a-43f5-a1fc-540b4c737ebf","description":"<p>All endpoints within the Authorization folder are run without the JWT access token, but require a static token.</p>\n<p>Any user of Sovtes can use the API. You will need your username/email and password. Once you authenticate successfully, you will receive a JWT access token which you must further use to generate requests.</p>\n","_postman_id":"088080f1-be2a-43f5-a1fc-540b4c737ebf"},{"name":"Routes and tenders","item":[{"name":"For shippers","item":[{"name":"Tender specific","item":[{"name":"Create tender","id":"d99dc79e-4bf4-433c-868d-d8ad527a17de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"post","value":"{\n        \"routes\":{\n        \"route\":{ \"customrates\":1,\n         \"cartype\":[\n            1,\n            2\n         ],\n\"forallpartners\":1,\n         \"routeparts\":[\n            {\n               \"apicode\":\"internalcode123\",\n               \"contact_name\":\"Marina Niedzialkowska - экспорт менеджер\",\n               \"geo_country_iso_num\":616,\n               \"geo_region\":\"\",\n               \"company_natcomid\":\"\",\n               \"weight\":1.47,\n               \"date1\":\"2025-11-06\",\n               \"contact_email\":\"noemail@email.com\",\n               \"time1\":\"00:00:00\",\n               \"contact_cellnum\":\"050 1 1 1 1 1 1\",\n               \"company_title\":\"INSTAL PROJEKT Gawlowscy, Scierzynscy Spolka Jawna\",\n               \"geo_district\":\"\",\n               \"geo_address\":\"ul. some street, 12a\",\n               \"workaction\":\"1\",\n               \"geo_city\":\"kruszyn\",\n               \"category\":0,\n               \"cargo\":\"плитка/сантехніка\"\n            },\n            {\n               \"contact_name\":\"nocontact\",\n               \"geo_country_iso_num\":804,\n               \"geo_region\":\"київська\",\n               \"company_natcomid\":\"\",\n               \"weight\":1.47,\n               \"date1\":\"2025-11-14\",\n               \"contact_email\":\"noemail@email.com\",\n               \"time1\":\"00:00:00\",\n               \"contact_cellnum\":\"(044) 123123123 #$%^&*()_\",\n               \"company_title\":\"Агросем\",\n               \"geo_district\":\"\",\n               \"geo_address\":\"вул. hrest, 17-А\",\n               \"workaction\":\"2\",\n               \"geo_city\":\"Київ\",\n               \"cargo\":\"плитка/сантехніка\"\n            }\n         ],\n         \"currency\":\"UAH\",\n         \"payorcode\":\"\",\n         \"chargetype\":[\n            3,\n            2,\n            4\n         ],\n         \"route_apicode\":\"unique-external-id-11213-digital\",\n         \"paymenttype\":2,\n         \"budget\":20500.0,\n\"forallpartners\":1,\n\"ferryproperty\": [18],\n\"ferryproperty_details\":{\"18\":\"13,6\"},\n\"tender\":1,\n\"total_count\":2,\n\"tender_deadline\":\"2025-09-26 10:00:00\"\n      }\n   }\n}","description":"<p>The main body of the request, the payload that contains the route/order details.</p>\n","type":"text"},{"key":"signature","value":"{{MAC}}","description":"<p>A MAC must be supplied, which is a SHA256 hash product of the <code>post</code> parameter and the MAC key. What is a MAC: <a href=\"https://en.wikipedia.org/wiki/Message_authentication_code\">https://en.wikipedia.org/wiki/Message_authentication_code</a></p>\n","type":"text"}]},"url":"{{host}}/a/v2/rest/public/createTender","description":"<p>With this endpoint you can add tenders into Sovtes from your systems one at a time or many at once.</p>\n<p>You will need to supply a MAC to ensure message integrity. The MAC is calculated as a SHA256 of the <code>post</code> string using the MAC key available in user profile, and must be sent as a separate param <code>signature</code>. Use this online tool to test your signature: <a href=\"https://sovt.es/ooqwq\">https://sovt.es/ooqwq</a></p>\n<p><code>post</code> parameter explanation:</p>\n<ul>\n<li><p>request must be in JSON</p>\n</li>\n<li><p><em>routes</em> is the root element, that can contain one or more <em>route</em> objects</p>\n</li>\n</ul>\n<h3 id=\"route-object-explanation\"><code>route</code> object explanation:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>param</th>\n<th>required</th>\n<th>type</th>\n<th>explanation</th>\n<th>valid example</th>\n<th>invalid example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>routeparts</td>\n<td>yes</td>\n<td>array of <code>routepart</code> objects</td>\n<td>an array of points for the order/route, like loading, unloading, border, customs, etc</td>\n<td>(see below)</td>\n<td>empty</td>\n</tr>\n<tr>\n<td>tender</td>\n<td>yes</td>\n<td>bool</td>\n<td>indicates tender flag</td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>blind_tender</td>\n<td>no</td>\n<td>bool</td>\n<td>indicates whether the tender is blind or not</td>\n<td>1</td>\n<td>blind</td>\n</tr>\n<tr>\n<td>tender_terms</td>\n<td>no</td>\n<td>string</td>\n<td>comment about the tender</td>\n<td>only for authorized carriers</td>\n<td></td>\n</tr>\n<tr>\n<td>total_count</td>\n<td>yes</td>\n<td>int</td>\n<td>total amount of units that need to be delivered within the scope of the tender</td>\n<td>10, 5000</td>\n<td></td>\n</tr>\n<tr>\n<td>pricefor</td>\n<td>yes</td>\n<td>enum: tonn, km, ride, mcube</td>\n<td>in what units the tender is measured, quantity of those units are indicated in <code>total_count</code></td>\n<td>tonn, ride, km, or mcube</td>\n<td>9</td>\n</tr>\n<tr>\n<td>step</td>\n<td>no</td>\n<td>int</td>\n<td>offer step restriction, forces carriers to diminish the price offer by the indicated step</td>\n<td>100, 50</td>\n<td></td>\n</tr>\n<tr>\n<td>max_quote</td>\n<td>no</td>\n<td>float</td>\n<td>the maximum acceptable price, above which offers will not be allowed, expected based on the <code>pricefor</code> param</td>\n<td>15000, 31.5</td>\n<td></td>\n</tr>\n<tr>\n<td>publish_datetime</td>\n<td>no</td>\n<td>string YYYY-MM-DD HH:MM:SS</td>\n<td>publishing date and time, allows to postpone the publishing</td>\n<td>2022-03-24 04:30:00</td>\n<td>tomorrow</td>\n</tr>\n<tr>\n<td>tender_deadline</td>\n<td>yes</td>\n<td>string YYYY-MM-DD HH:MM:SS</td>\n<td>the deadline of the tender, after which no offers will be accepted</td>\n<td>2022-03-24 04:30:00</td>\n<td>in a week, 1</td>\n</tr>\n<tr>\n<td>forallpartners</td>\n<td>no</td>\n<td>bool</td>\n<td>whether to publish the tender for all partners or not1</td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>route_apicode</td>\n<td>yes</td>\n<td>string (40)</td>\n<td>an id of the order/route within your (external) system</td>\n<td>DG-1982, 123221</td>\n<td>empty or duplicate</td>\n</tr>\n<tr>\n<td>draft</td>\n<td></td>\n<td>bool</td>\n<td>whether to publish the route as draft or not</td>\n<td>1, true</td>\n<td></td>\n</tr>\n<tr>\n<td>currency</td>\n<td></td>\n<td>string (3)</td>\n<td>currency, default to national currency, valid values: USD, EUR</td>\n<td>EUR</td>\n<td>GBP</td>\n</tr>\n<tr>\n<td>nds</td>\n<td></td>\n<td>bool</td>\n<td></td>\n<td>1 for value added tax included, 0 for no VAT included</td>\n<td>1</td>\n</tr>\n<tr>\n<td>paymenttype</td>\n<td></td>\n<td>int (1)</td>\n<td>according to internal mapping: 2 for bank transfer, 3 for cash, see <a href=\"https://sovt.es/data-mapping\">mapping</a></td>\n<td>2</td>\n<td>4</td>\n</tr>\n<tr>\n<td>payorcode</td>\n<td></td>\n<td>string (30)</td>\n<td>national ID of the legal entity to pay for the order/route, must match the settings within the UI</td>\n<td>40003782</td>\n<td>non matching id</td>\n</tr>\n<tr>\n<td>chargetype</td>\n<td></td>\n<td>array of ints</td>\n<td>an array of accaptable charge types for the order/route, must match <a href=\"https://sovt.es/data-mapping\">the mapping</a></td>\n<td>[1,3]</td>\n<td>non matching ids</td>\n</tr>\n<tr>\n<td>cartype</td>\n<td></td>\n<td>array of ints</td>\n<td>an array of accaptable car types for the order/route, must match <a href=\"https://sovt.es/data-mapping\">the mapping</a></td>\n<td>[1,2]</td>\n<td>non matching ids</td>\n</tr>\n<tr>\n<td>ferryproperty</td>\n<td></td>\n<td>array of ints</td>\n<td>an array of additional desirable parameters for the order/route, must match <a href=\"https://sovt.es/data-mapping\">the mapping</a></td>\n<td>[5,10,11]</td>\n<td>non matching ids</td>\n</tr>\n<tr>\n<td>ferryproperty_details</td>\n<td></td>\n<td>object of string values</td>\n<td>key must be string in [10,11,12] as per ferryproperty, values must be strings (20)</td>\n<td>{\"11\":\"-5\", \"10\":\"32\"}</td>\n<td></td>\n</tr>\n<tr>\n<td>operators</td>\n<td></td>\n<td>array of strings</td>\n<td>an array of carrier hashes, for whom the route shall be available, hashes can be found in GET getPartners endpoint</td>\n<td>[\"06991aab9ddafbc6faaa2429d4fa3de2\",\"692ea987e30fffeef4803561327eaa39\"]</td>\n<td>[\"Перевізник, ТОВ\",29812]</td>\n</tr>\n<tr>\n<td>remark</td>\n<td></td>\n<td>string</td>\n<td>the remark field is a free-form text string, it can accommodate various types of information, making it a versatile field for any notes that don’t fit into the structured fields already defined</td>\n<td>\"Urgent delivery required by 2024-08-27. Contact receiver before delivery.\"</td>\n<td></td>\n</tr>\n<tr>\n<td>userclient_email</td>\n<td></td>\n<td>string</td>\n<td>if the user responsible for the route is not the holder of the token, pass his/her email here</td>\n<td>\"<a href=\"mailto:validuser@ourcompany.com\">validuser@ourcompany.com</a>\"</td>\n<td>\"John Doe\"</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"routepart-object-explanation\"><code>routepart</code> object explanation:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>param</th>\n<th>required</th>\n<th>type</th>\n<th>applicable workaction</th>\n<th>explanation</th>\n<th>valid example</th>\n<th>invalid example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>workaction</td>\n<td>yes</td>\n<td>int (1)</td>\n<td>all</td>\n<td>type of action on the checkpoint, must be one of 1 (loading), 2 (unloading), 3 (customs) or 4 (border)</td>\n<td>1</td>\n<td>unload</td>\n</tr>\n<tr>\n<td>apicode</td>\n<td>yes</td>\n<td>string (10)</td>\n<td>1,2</td>\n<td>id of the point in your (external) system, for simplicity of geography integration</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>category</td>\n<td></td>\n<td>int (5)</td>\n<td>1</td>\n<td>internal ID of the category, for order/route grouping, must match the mapping</td>\n<td>192</td>\n<td>non-matching id</td>\n</tr>\n<tr>\n<td>cargo</td>\n<td>yes</td>\n<td>string (255)</td>\n<td>1</td>\n<td>the payload being shipped</td>\n<td>гн. швеллер и рельс</td>\n<td></td>\n</tr>\n<tr>\n<td>weight</td>\n<td>almost</td>\n<td>decimal (13,3)</td>\n<td>1</td>\n<td>weight of cargo in tonns, either this or volume must be supplied for workaction 1</td>\n<td>22.3</td>\n<td></td>\n</tr>\n<tr>\n<td>volume</td>\n<td>almost</td>\n<td>decimal (13,3)</td>\n<td>1</td>\n<td>volume of cargo in cubic meters, either this or weight must be supplied for workaction 1</td>\n<td>70</td>\n<td></td>\n</tr>\n<tr>\n<td>length</td>\n<td></td>\n<td>decimal (13,3)</td>\n<td>1</td>\n<td>length of cargo in meters</td>\n<td>8</td>\n<td></td>\n</tr>\n<tr>\n<td>height</td>\n<td></td>\n<td>decimal (13,3)</td>\n<td>1</td>\n<td>height of cargo in meters</td>\n<td>0.2</td>\n<td></td>\n</tr>\n<tr>\n<td>width</td>\n<td></td>\n<td>decimal(13,3)</td>\n<td>1</td>\n<td>width of cargo in meters</td>\n<td>5.5</td>\n<td></td>\n</tr>\n<tr>\n<td>date1</td>\n<td></td>\n<td>string (YYYY-MM-DD)</td>\n<td>all</td>\n<td>expected date of arrival to this point</td>\n<td>2020-06-20</td>\n<td>30-12-2020</td>\n</tr>\n<tr>\n<td>time1</td>\n<td></td>\n<td>string (HH:MM:SS)</td>\n<td>all</td>\n<td>expected time of arrival to this point, in 24 hour format</td>\n<td>18:00:00</td>\n<td>6 PM</td>\n</tr>\n<tr>\n<td>company_title</td>\n<td>almost</td>\n<td>string (255)</td>\n<td>1,2</td>\n<td>the name of the legal entity in the point, either this or company_natcomid is required</td>\n<td>LLC \"SOVTES\", inc</td>\n<td></td>\n</tr>\n<tr>\n<td>company_natcomid</td>\n<td>almost</td>\n<td>string (30)</td>\n<td>1,2</td>\n<td>the national code of the legal entity, either this or company_name is required</td>\n<td>40003782</td>\n<td></td>\n</tr>\n<tr>\n<td>contact_name</td>\n<td>yes</td>\n<td>string (255)</td>\n<td>1,2</td>\n<td>name of the person responsible for the work on the point</td>\n<td>John Doe</td>\n<td></td>\n</tr>\n<tr>\n<td>contact_cellnum</td>\n<td>almost</td>\n<td>string (40)</td>\n<td>1,2</td>\n<td>phone number of the responsible person, either this or email is required</td>\n<td>38 050 111 22 33</td>\n<td></td>\n</tr>\n<tr>\n<td>contact_email</td>\n<td>almost</td>\n<td>string (255)</td>\n<td>1,2</td>\n<td>email of the responsible person, either this or cellnum is required</td>\n<td><a href=\"https://mailto:office@sovtes.ua\">office@sovtes.ua</a></td>\n<td>invalid email</td>\n</tr>\n<tr>\n<td>geo_country_iso_num</td>\n<td>yes</td>\n<td>int (3)</td>\n<td>1,2</td>\n<td>county code according to <a href=\"https://www.iso.org/standard/63545.html\">ISO standard</a></td>\n<td>380</td>\n<td>non existent code</td>\n</tr>\n<tr>\n<td>geo_region</td>\n<td></td>\n<td>string (255)</td>\n<td>1,2</td>\n<td>sublocality (administrative_area_level_1), region, state, oblast, or other administrative division</td>\n<td>Киевская область</td>\n<td></td>\n</tr>\n<tr>\n<td>geo_district</td>\n<td></td>\n<td>string (255)</td>\n<td>1,2</td>\n<td>county, district (administrative_area_level_2) or other smaller administrative division</td>\n<td>Богуславский район</td>\n<td></td>\n</tr>\n<tr>\n<td>geo_city</td>\n<td>yes</td>\n<td>string (255)</td>\n<td>1,2</td>\n<td>town, village, locality, city or other administrative division</td>\n<td>Богуслав</td>\n<td></td>\n</tr>\n<tr>\n<td>geo_address</td>\n<td>yes</td>\n<td>string (200)</td>\n<td>1,2</td>\n<td>street address</td>\n<td>ул. Орджоникидзе 14</td>\n<td>наша машина, паспорт номер такойто, область, город</td>\n</tr>\n<tr>\n<td>geo_town_id</td>\n<td></td>\n<td>int (7)</td>\n<td>4</td>\n<td>internal town ID or border crossing</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>geo_apicode</td>\n<td></td>\n<td>string (10)</td>\n<td>3</td>\n<td>your (external) point ID of the customs point</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>malformed_full_address_prioritized</td>\n<td></td>\n<td>string (255)</td>\n<td>1,2,3</td>\n<td>address in whatever non-normalized form; we parse, normalize, and return <code>apicode</code>*</td>\n<td>\"м.Одеса,вул.Аркадіївська алея, ТРЦ Аркадія Сіті, маг. Винчик\"* or \"<em>Волинська обл.,м. Луцьк, вул. Карбишева, 2 ( част. буд.блоку скл. 'Е-2'\"</em></td>\n<td>229</td>\n</tr>\n<tr>\n<td>border_operator_select</td>\n<td></td>\n<td>int(1)</td>\n<td>4</td>\n<td>set to 1 if the carrier is expected to indicte the point of border crossing</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>Each route must start with a workaction=1 routepart and end with workaction=2 routepart.</p>\n<p>For additional property in <code>post</code> form data parameter <code>ferryproperty</code> you can use optional GET parameter <code>ferryproperty_as=object</code> then inbound ferryproperty parameter format can be like this</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"ferryproperty\":\n[\n  {\n  \"TrailerAttributesSovtesId\":\"10\",\n  \"Value\":20\n  },\n  {\n  \"TrailerAttributesSovtesId\":\"11\",\n  \"Value\":5\n  },\n]\n\n</code></pre>","urlObject":{"path":["a","v2","rest","public","createTender"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"69a5ffd6-902a-414f-8393-e4d3f9a68f49","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"post","value":"{\n    \"routes\": {\n        \"route\": {\n            \"tender\": 1,\n            \"total_count\":2,\n            \"tender_terms\": \"tututu\",\n            \"forallpartners\": 1,\n            \"step\": 100,\n            \"max_quote\": 10000,\n            \"pricefor\": \"tonn\",\n            \"tender_deadline\": \"2025-05-30 22:57:00\",\n            \"publish_datetime\": \"2025-05-30 13:55:00\",\n            \"cartype\": [\n                1,\n                2,\n                4\n            ],\n            \"userclient_email\": \"\",\n            \"routeparts\": [\n                {\n                    \"apicode\": \"internalcodeNepal\",\n\"cargo\":\"bottles\",\n\"weight\":20.2,\n                    \"contact_name\": \"Marina Niedzialkowska - экспорт менеджер\",\n                    \"geo_country_iso_num\": 616,\n                    \"geo_region\": \"\",\n                    \"company_natcomid\": \"\",\n                    \"date1\": \"2025-06-18\",\n                    \"contact_email\": \"noemail@email.com\",\n                    \"time1\": \"00:00:00\",\n                    \"contact_cellnum\": \"050 1 1 1 1 1 1 \",\n                    \"company_title\": \"INSTAL PROJEKT Gawlowscy, Scierzynscy Spolka Jawna\",\n                    \"geo_district\": \"\",\n                    \"geo_address\": \"ul. some street, 12a\",\n                    \"workaction\": \"1\",\n                    \"geo_city\": \"kruszyn\",\n                    \"category\": 0\n                },\n                {\n                    \"contact_name\": \"nocontact\",\n                    \"geo_country_iso_num\": 804,\n                    \"geo_region\": \"київська\",\n                    \"company_natcomid\": \"\",\n                    \"weight\": 1.47,\n                    \"date1\": \"2022-03-19\",\n                    \"contact_email\": \"noemail@email.com\",\n                    \"time1\": \"00:00:00\",\n                    \"contact_cellnum\": \"(044) 123123123 #$%^&*()_\",\n                    \"company_title\": \"Агросем\",\n                    \"geo_district\": \"\",\n                    \"geo_address\": \"вул. hrest, 17-А\",\n                    \"workaction\": \"2\",\n                    \"geo_city\": \"Київ\",\n                    \"cargo\": \"плитка\\/сантехніка\"\n                }\n            ],\n            \"currency\": \"UAH\",\n            \"payorcode\": \"\",\n            \"chargetype\": [\n                3,\n                2,\n                4\n            ],\n            \"route_apicode\": \"unique-external-id-123\",\n            \"paymenttype\": 2\n        }\n    }\n}","description":"The main body of the request, the payload that contains the route/order details.","type":"text"},{"key":"signature","value":"{{MAC}}","description":"A MAC must be supplied, which is a SHA256 hash product of the `post` parameter and the MAC key.","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/a/v2/rest/public/createTender"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"created\",\n    \"data\": [\n        {\n            \"periodic\": \"651-04-22\",\n            \"userroutenumber\": \"unique-external-id-123\",\n            \"url\": \"/a/index.php?p=view&id=651-04-22&m=shipping\"\n        }\n    ]\n}"},{"id":"df028746-6702-420c-a249-eabd27a7ea5a","name":"Invalid MAC supplied","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"post","value":"{{tenderCreationBody}}","description":"The main body of the request, the payload that contains the route/order details.","type":"text"},{"key":"signature","value":"{{invalidMAC}}","description":"A MAC must be supplied, which is a SHA256 hash product of the `post` parameter and the MAC key.","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/a/v2/rest/public/createTender"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"ERROR: Data is corrupt.\",\n    \"relogin\": false\n}"},{"id":"773ad39f-3a6e-469a-a2b7-71fa52e8c5d9","name":"Loading date is earlier than tender deadline","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"post","value":"{\n   \"routes\":{\n      \"route\":{\n         \"client_hash\":\"lalala\",\n         \"tender\":1,\n         \"tender_terms\":\"tututu\",\n         \"total_count\":2,\n         \"forallpartners\":1,\n         \"step\":100,\n         \"max_quote\":10000,\n         \"pricefor\":\"tonn\",\n         \"tender_deadline\":\"2022-04-17 13:50:00\",\n         \"publish_datetime\":\"2022-17-04 13:52:00\",\n         \"pricefor\":\"tonn\",\n         \"cartype\":[\n            1,\n            2,\n            4\n         ],\n         \"userclient_email\":\"\",\n         \"routeparts\":[\n            {\n               \"apicode\":\"internalcode123\",\n               \"contact_name\":\"Marina Niedzialkowska - экспорт менеджер\",\n               \"geo_country_iso_num\":616,\n               \"geo_region\":\"\",\n               \"company_natcomid\":\"\",\n               \"weight\":1.47,\n               \"date1\":\"2021-11-06\",\n               \"contact_email\":\"noemail@email.com\",\n               \"time1\":\"00:00:00\",\n               \"contact_cellnum\":\"050 1 1 1 1 1 1 \",\n               \"company_title\":\"INSTAL PROJEKT Gawlowscy, Scierzynscy Spolka Jawna\",\n               \"geo_district\":\"\",\n               \"geo_address\":\"ul. some street, 12a\",\n               \"workaction\":\"1\",\n               \"geo_city\":\"kruszyn\",\n               \"category\":0,\n               \"cargo\":\"плитка\\/сантехніка\"\n            },\n            {\n               \"contact_name\":\"nocontact\",\n               \"geo_country_iso_num\":804,\n               \"geo_region\":\"київська\",\n               \"company_natcomid\":\"\",\n               \"weight\":1.47,\n               \"date1\":\"2021-11-14\",\n               \"contact_email\":\"noemail@email.com\",\n               \"time1\":\"00:00:00\",\n               \"contact_cellnum\":\"(044) 123123123 #$%^&*()_\",\n               \"company_title\":\"Агросем\",\n               \"geo_district\":\"\",\n               \"geo_address\":\"вул. hrest, 17-А\",\n               \"workaction\":\"2\",\n               \"geo_city\":\"Київ\",\n               \"cargo\":\"плитка\\/сантехніка\"\n            }\n         ],\n         \"currency\":\"UAH\",\n         \"payorcode\":\"\",\n         \"chargetype\":[\n            3,\n            2,\n            4\n         ],\n         \"route_apicode\":\"unique-external-id-123\",\n         \"paymenttype\":2,\n         \"budget\":20500.0\n      }\n   }\n}","description":"The main body of the request, the payload that contains the route/order details.","type":"text"},{"key":"signature","value":"{{MAC}}","description":"A MAC must be supplied, which is a SHA256 hash product of the `post` parameter and the MAC key.","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/a/v2/rest/public/createTender"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"First routepart date must be later than tender deadline\",\n    \"relogin\": false\n}"},{"id":"7085c4f7-c389-421f-b886-e8b313d7d118","name":"Publish date in the past","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"post","value":"{\n   \"routes\":{\n      \"route\":{\n         \"client_hash\":\"lalala\",\n         \"tender\":1,\n         \"tender_terms\":\"tututu\",\n         \"total_count\":2,\n         \"forallpartners\":1,\n         \"step\":100,\n         \"max_quote\":10000,\n         \"pricefor\":\"tonn\",\n         \"tender_deadline\":\"2021-04-17 13:50:00\",\n         \"publish_datetime\":\"2021-17-04 13:52:00\",\n         \"pricefor\":\"tonn\",\n         \"cartype\":[\n            1,\n            2,\n            4\n         ],\n         \"userclient_email\":\"\",\n         \"routeparts\":[\n            {\n               \"apicode\":\"internalcode123\",\n               \"contact_name\":\"Marina Niedzialkowska - экспорт менеджер\",\n               \"geo_country_iso_num\":616,\n               \"geo_region\":\"\",\n               \"company_natcomid\":\"\",\n               \"weight\":1.47,\n               \"date1\":\"2021-11-06\",\n               \"contact_email\":\"noemail@email.com\",\n               \"time1\":\"00:00:00\",\n               \"contact_cellnum\":\"050 1 1 1 1 1 1 \",\n               \"company_title\":\"INSTAL PROJEKT Gawlowscy, Scierzynscy Spolka Jawna\",\n               \"geo_district\":\"\",\n               \"geo_address\":\"ul. some street, 12a\",\n               \"workaction\":\"1\",\n               \"geo_city\":\"kruszyn\",\n               \"category\":0,\n               \"cargo\":\"плитка\\/сантехніка\"\n            },\n            {\n               \"contact_name\":\"nocontact\",\n               \"geo_country_iso_num\":804,\n               \"geo_region\":\"київська\",\n               \"company_natcomid\":\"\",\n               \"weight\":1.47,\n               \"date1\":\"2021-11-14\",\n               \"contact_email\":\"noemail@email.com\",\n               \"time1\":\"00:00:00\",\n               \"contact_cellnum\":\"(044) 123123123 #$%^&*()_\",\n               \"company_title\":\"Агросем\",\n               \"geo_district\":\"\",\n               \"geo_address\":\"вул. hrest, 17-А\",\n               \"workaction\":\"2\",\n               \"geo_city\":\"Київ\",\n               \"cargo\":\"плитка\\/сантехніка\"\n            }\n         ],\n         \"currency\":\"UAH\",\n         \"payorcode\":\"\",\n         \"chargetype\":[\n            3,\n            2,\n            4\n         ],\n         \"route_apicode\":\"unique-external-id-123\",\n         \"paymenttype\":2,\n         \"budget\":20500.0\n      }\n   }\n}","description":"The main body of the request, the payload that contains the route/order details.","type":"text"},{"key":"signature","value":"{{MAC}}","description":"A MAC must be supplied, which is a SHA256 hash product of the `post` parameter and the MAC key.","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/a/v2/rest/public/createTender"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Publish datetime must be later than now\",\n    \"relogin\": false\n}"},{"id":"e7f06e4b-e324-4177-baf5-d6d1da4ab030","name":"Invalid JSON (note routepart date quote)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"post","value":"{\n   \"routes\":{\n      \"route\":{\n         \"client_hash\":\"lalala\",\n         \"tender\":1,\n         \"tender_terms\":\"tututu\",\n         \"total_count\":2,\n         \"forallpartners\":1,\n         \"step\":100,\n         \"max_quote\":10000,\n         \"pricefor\":\"tonn\",\n         \"tender_deadline\":\"2022-04-17 13:50:00\",\n         \"publish_datetime\":\"2022-17-04 13:52:00\",\n         \"pricefor\":\"tonn\",\n         \"cartype\":[\n            1,\n            2,\n            4\n         ],\n         \"userclient_email\":\"\",\n         \"routeparts\":[\n            {\n               \"apicode\":\"internalcode123\",\n               \"contact_name\":\"Marina Niedzialkowska - экспорт менеджер\",\n               \"geo_country_iso_num\":616,\n               \"geo_region\":\"\",\n               \"company_natcomid\":\"\",\n               \"weight\":1.47,\n               \"date1\":\"2022-03-18»,\n               \"contact_email\":\"noemail@email.com\",\n               \"time1\":\"00:00:00\",\n               \"contact_cellnum\":\"050 1 1 1 1 1 1 \",\n               \"company_title\":\"INSTAL PROJEKT Gawlowscy, Scierzynscy Spolka Jawna\",\n               \"geo_district\":\"\",\n               \"geo_address\":\"ul. some street, 12a\",\n               \"workaction\":\"1\",\n               \"geo_city\":\"kruszyn\",\n               \"category\":0,\n               \"cargo\":\"плитка\\/сантехніка\"\n            },\n            {\n               \"contact_name\":\"nocontact\",\n               \"geo_country_iso_num\":804,\n               \"geo_region\":\"київська\",\n               \"company_natcomid\":\"\",\n               \"weight\":1.47,\n               \"date1\":\"2022-03-19\",\n               \"contact_email\":\"noemail@email.com\",\n               \"time1\":\"00:00:00\",\n               \"contact_cellnum\":\"(044) 123123123 #$%^&*()_\",\n               \"company_title\":\"Агросем\",\n               \"geo_district\":\"\",\n               \"geo_address\":\"вул. hrest, 17-А\",\n               \"workaction\":\"2\",\n               \"geo_city\":\"Київ\",\n               \"cargo\":\"плитка\\/сантехніка\"\n            }\n         ],\n         \"currency\":\"UAH\",\n         \"payorcode\":\"\",\n         \"chargetype\":[\n            3,\n            2,\n            4\n         ],\n         \"route_apicode\":\"unique-external-id-123\",\n         \"paymenttype\":2,\n         \"budget\":20500.0\n      }\n   }\n}18»","description":"The main body of the request, the payload that contains the route/order details.","type":"text"},{"key":"signature","value":"{{MAC}}","description":"A MAC must be supplied, which is a SHA256 hash product of the `post` parameter and the MAC key.","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/a/v2/rest/public/createTender"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Json_decode error: Control character error, possibly incorrectly encoded\",\n    \"relogin\": false\n}"}],"_postman_id":"d99dc79e-4bf4-433c-868d-d8ad527a17de"},{"name":"Opposite Offer","id":"b4f9fde4-ae9f-458b-a52e-5e27a35d51bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"<p>Periodic of the target tender</p>\n","type":"text"},{"key":"routeresponse","value":"{{routeResponseId}}","description":"<p>ID of the carrier bid (can be taken from <code>GET singleRoute</code> endpoint, <code>response</code> set)</p>\n","type":"text"},{"key":"pricequote","value":"{{counterPriceQuote}}","description":"<p>The new price of the counter offer. Float.</p>\n","type":"text"},{"key":"loadquote","value":"{{counterLoadQuote}}","description":"<p>The new quantity of the counter offer. Int.</p>\n","type":"text"}]},"url":"{{host}}/a/v2/rest/public/oppositeOffer","description":"<p>Allows shipper to bargain in tender.</p>\n<p>When the bid supplied by a carrier in tender is not fully acceptable, shippers can bargain using this endpoint. As a result, carriers will see the counter-offer and either accept or reject it.</p>\n<p>For example: you published a tender to do 800 deliveries, a carrier placed a bid suggesting 500 deliveries at 500$ rate, and using this endpoint you make a counter offer to that carrier to make it 400 deliveries at 485$ rate.</p>\n<ul>\n<li>If successful, you will receive the success message, the counter offer will be submitted to the carrier that made the supplied bid</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","oppositeOffer"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"f9c23358-4525-4f6b-be15-a61b5a5a12dd","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Periodic of the target tender","type":"text"},{"key":"routeresponse","value":"{{routeResponseId}}","description":"ID of the carrier bid (can be taken from `GET singleRoute` endpoint, `response` set)","type":"text"},{"key":"pricequote","value":"{{counterPriceQuote}}","description":"The new price of the counter offer. Float.","type":"text"},{"key":"loadquote","value":"{{counterLoadQuote}}","description":"The new quantity of the counter offer. Int.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/oppositeOffer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"597cff5c-71a3-4f4b-b890-cd01f23e9be6","name":"Incorrect bid ID supplied","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Periodic of the target tender","type":"text"},{"key":"routeresponse","value":"{{incorrectRouteResponseId}}","description":"ID of the carrier bid (can be taken from `GET singleRoute` endpoint, `response` set)","type":"text"},{"key":"pricequote","value":"{{counterPriceQuote}}","description":"The new price of the counter offer. Float.","type":"text"},{"key":"loadquote","value":"{{counterLoadQuote}}","description":"The new quantity of the counter offer. Int.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/oppositeOffer"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Incorrect bid number.\",\n    \"relogin\": false\n}"},{"id":"c9a965ed-98f4-4275-a63d-45f5c2062bb0","name":"Incorrect route periodic supplied","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{incorrectSingleRoute}}","description":"Periodic of the target tender","type":"text"},{"key":"routeresponse","value":"{{routeResponseId}}","description":"ID of the carrier bid (can be taken from `GET singleRoute` endpoint, `response` set)","type":"text"},{"key":"pricequote","value":"{{counterPriceQuote}}","description":"The new price of the counter offer. Float.","type":"text"},{"key":"loadquote","value":"{{counterLoadQuote}}","description":"The new quantity of the counter offer. Int.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/oppositeOffer"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Incorrect route number.\",\n    \"relogin\": false\n}"},{"id":"cf5826d5-a149-4150-b419-be36b2a7d362","name":"Request by carrier","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Periodic of the target tender","type":"text"},{"key":"routeresponse","value":"{{routeResponseId}}","description":"ID of the carrier bid (can be taken from `GET singleRoute` endpoint, `response` set)","type":"text"},{"key":"pricequote","value":"{{counterPriceQuote}}","description":"The new price of the counter offer. Float.","type":"text"},{"key":"loadquote","value":"{{counterLoadQuote}}","description":"The new quantity of the counter offer. Int.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/oppositeOffer"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"This action is unavailable\",\n    \"relogin\": false\n}"}],"_postman_id":"b4f9fde4-ae9f-458b-a52e-5e27a35d51bd"},{"name":"Pick Tender Winner","id":"19fbd76d-9148-4d6c-afd6-75376ea28558","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"winner","value":"{{tenderWinnerCompanyHash}}","description":"<p>Company hash of the carrier company. String. Required.</p>\n","type":"text"},{"key":"quote","value":"{{tenderQuoteResponseId}}","description":"<p>ID of the quote response id. Int. Required. Found in <code>GET singleRoute</code> endpoint <code>response</code> object or in <code>GET getPricequotes</code>.</p>\n","type":"text"},{"key":"tenderPeriodic","value":"{{tenderPeriodic}}","description":"<p>Periodic of the tender. String. Required.</p>\n","type":"text"}]},"url":"{{host}}/a/v2/rest/public/pickTenderWinner","description":"<p>Enables shipper to pick winner in a tender.</p>\n<ul>\n<li><p>If successful, you will receive the success message, tender winner will be selected</p>\n</li>\n<li><p>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</p>\n</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","pickTenderWinner"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"ad7c620f-88c7-4b2b-845e-624a284e3ac8","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"winner","value":"{{tenderWinnerCompanyHash}}","description":"Company hash of the carrier company. String. Required.","type":"text"},{"key":"quote","value":"{{tendeQuoteResponseId}}","description":"ID of the quote response id. Int. Required.","type":"text"},{"key":"tenderPeriodic","value":"{{tenderPeriodic}}","description":"Periodic of the tender. String. Required.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/pickTenderWinner"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"7bc274e1-3fdc-48e2-8a0d-8370d655ae34","name":"Not all params supplied","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"winner","value":"{{tenderWinnerCompanyHash}}","description":"Company hash of the carrier company. String. Required.","type":"text"},{"key":"quote","value":"{{tendeQuoteResponseId}}","description":"ID of the quote response id. Int. Required.","type":"text"},{"key":"tenderPeriodic","value":"{{tenderPeriodic}}","description":"Periodic of the tender. String. Required.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/pickTenderWinner"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Missing required parameters.\",\n    \"relogin\": false\n}"}],"_postman_id":"19fbd76d-9148-4d6c-afd6-75376ea28558"},{"name":"Relaunch Tender","id":"e73140a6-3dfb-406f-99bc-1688d7b648c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"tenderPeriodic","value":"{{tenderPeriodic}}","description":"<p>Periodic of the tender. String. Required.</p>\n","type":"text"}]},"url":"{{host}}/a/v2/rest/public/relaunchTender","description":"<p>Enables shipper to cancel winner pick in a tender and start the bidding over.</p>\n<ul>\n<li><p>If successful, you will receive the success message, tender winner will be selected</p>\n</li>\n<li><p>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</p>\n</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","relaunchTender"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"40f93420-d5ab-453f-bd75-715a1d47de92","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"tenderPeriodic","value":"{{tenderPeriodic}}","description":"Periodic of the tender. String. Required.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/relaunchTender"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"67f88f57-a715-4e32-b53a-571c893cdbed","name":"Not all params supplied","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"tenderPeriodic","value":"","description":"Periodic of the tender. String. Required.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/relaunchTender"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Missing required parameters.\",\n    \"relogin\": false\n}"}],"_postman_id":"e73140a6-3dfb-406f-99bc-1688d7b648c6"},{"name":"Publish Route Within Tender","event":[{"listen":"test","script":{"id":"efe6900b-b85a-438a-9381-43646a9d53b1","exec":[""],"type":"text/javascript","packages":{}}}],"id":"44c5bf31-1930-4ef8-9ff2-4b4a179ac58b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"quantity","value":"{{quantity}}","description":"<p>Quantity of routes to be published. Int. Required.</p>\n","type":"text"},{"key":"tenderPeriodic","value":"{{tenderPeriodic}}","description":"<p>Tender periodic, for which to publish routes. String. Required.</p>\n","type":"text"},{"key":"userEmail","value":"{{userclient_email}}","description":"<p>String. Optional. Indicates the user of this email as the manager of the published routes.</p>\n","type":"text","uuid":"4097f3c6-52ad-4273-9e6c-1e770f5b4719"}]},"url":"{{host}}/a/v2/rest/public/publishTenderChild","description":"<p>Allows shipper to publish a route or a set of similar routes based on a tender.</p>\n<p>Example: you created a tender, collected bids, chose winner, and want to actually start implementing that tender, so you can publish the routes that are the derivatives (\"children\") of that tender using this endpoint.</p>\n<ul>\n<li>If successful, you will receive the success message with periodic numbers of the created routes that are published for the tender winner</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","publishTenderChild"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"38ef182c-39ae-4652-b53a-2562b9cfacb4","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"","description":"JWT token","type":"text"},{"key":"Language","value":"pl","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"quantity","value":"2","description":"Quantity of routes to be published. Int","type":"text"},{"key":"tenderPeriodic","value":"{{tenderPeriodic}}","description":"Tender periodic, for which to publish routes","type":"text"}]},"url":"https://test.sovtes.ua/a/v2/rest/public/publishTenderChild"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"created\",\n    \"data\": [\n        \"174-04-22\",\n        \"175-04-22\"\n    ]\n}"},{"id":"87bfb3a4-3ae2-4a88-bac0-9fe25da4dceb","name":"Incorrect tender supplied","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"quantity","value":"{{routeQuantity}}","description":"Quantity of routes to be published. Int","type":"text"},{"key":"tenderPeriodic","value":"{{badTenderPeriodic}}","description":"Tender periodic, for which to publish routes","type":"text"}]},"url":"{{host}}/a/v2/rest/public/publishTenderChild"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Action forbidden\",\n    \"relogin\": false\n}"}],"_postman_id":"44c5bf31-1930-4ef8-9ff2-4b4a179ac58b"},{"name":"Create Second Step of tenders","id":"521ce842-00c8-422c-b6c7-e279e2b50d7a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT access token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"step1tender","value":"{{step1tenderPeriodic}}","description":"<p>string, required. Periodic ID of the step 1 blind tender</p>\n","type":"text"},{"key":"deadline","value":"{{tenderDeadline}}","description":"<p>string, required. YYYY-MM-DD HH:MM:SS</p>\n","type":"text"},{"key":"userclient_email","value":"{{responsibleUserEmail}}","description":"<p>string, optional, email of the user who is responsible for the tender</p>\n","type":"text"}]},"url":"{{host}}/a/v2/rest/public/createStep2Tender","description":"<p>An endpoint for a specific workflow. To activate the specific workflow one should activate the 2-step tenders setting. Once the 1-st step with the blind tender is done, shipper can create the second step tender using this endpoint.</p>\n","urlObject":{"path":["a","v2","rest","public","createStep2Tender"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"1764e38b-8e99-466e-932f-a7e05feead87","name":"Invalid deadline supplied","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"step1tender","value":"1994-03-23","description":"string, required. Periodic ID of the step 1 blind tender","type":"text"},{"key":"deadline","value":"2022-02-24 04:30:00","description":"string, required. YYYY-MM-DD HH:MM:SS","type":"text"}]},"url":"{{host}}/a/v2/rest/public/createStep2Tender"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Fri, 14 Apr 2023 08:59:51 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Deadline cannot be earlier than now, cannot proceed\",\n    \"relogin\": false\n}"},{"id":"d5d9c5c5-5379-4e5d-a394-9ce097a45a00","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"step1tender","value":"1994-03-23","description":"string, required. Periodic ID of the step 1 blind tender","type":"text"},{"key":"deadline","value":"2023-04-20 18:30:00","description":"string, required. YYYY-MM-DD HH:MM:SS","type":"text"}]},"url":"{{host}}/a/v2/rest/public/createStep2Tender"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Fri, 14 Apr 2023 09:00:48 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        \"111-04-23\"\n    ]\n}"},{"id":"4763e4e7-c96a-4c94-8184-8ded3a62add6","name":"Invalid step1 tender supplied","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"step1tender","value":"1994-03-232","description":"string, required. Periodic ID of the step 1 blind tender","type":"text"},{"key":"deadline","value":"2023-04-20 18:30:00","description":"string, required. YYYY-MM-DD HH:MM:SS","type":"text"}]},"url":"{{host}}/a/v2/rest/public/createStep2Tender"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Fri, 14 Apr 2023 09:01:12 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"We couldn’t find such a route.\",\n    \"relogin\": false\n}"},{"id":"27d234e9-8907-49e5-9998-5f583c4fe25d","name":"Create Second Step of tenders","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"step1tender","value":"{{step1tenderPeriodic}}","description":"string, required. Periodic ID of the step 1 blind tender","type":"text"},{"key":"deadline","value":"{{tenderDeadline}}","description":"string, required. YYYY-MM-DD HH:MM:SS","type":"text"},{"key":"userclient_email","value":"{{responsibleUserEmail}}","description":"string, optional, email of the user who is responsible for the tender","type":"text"}]},"url":{"raw":"{{host}}/a/v2/rest/public/createStep2Tender","host":["{{host}}"],"path":["a","v2","rest","public","createStep2Tender"],"query":[{"key":"XDEBUG_SESSION_START","value":"netbeans-xdebug","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Mon, 01 May 2023 14:18:03 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Set-Cookie","value":"XDEBUG_SESSION=netbeans-xdebug; expires=Mon, 01-May-2023 15:18:03 GMT; Max-Age=3600; path=/"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"We couldn’t find a user with that email address.\",\n    \"relogin\": false\n}"}],"_postman_id":"521ce842-00c8-422c-b6c7-e279e2b50d7a"}],"id":"5ea71bc4-9a13-4825-a992-5f3851580332","_postman_id":"5ea71bc4-9a13-4825-a992-5f3851580332","description":""},{"name":"Route flow","item":[{"name":"Create route","id":"f1d4860b-e26d-47e5-b721-35846da7aed0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"post","value":"{\n        \"routes\":{\n        \"route\":{ \"customrates\":1,\n         \"cartype\":[\n            1,\n            2\n         ],\n\"forallpartners\":1,\n         \"routeparts\":[\n            {\n               \"apicode\":\"internalcode123cross-platform\",\n               \"contact_name\":\"Marina Niedzialkowska - экспорт менеджер\",\n               \"geo_country_iso_num\":616,\n               \"geo_region\":\"\",\n               \"company_natcomid\":\"\",\n               \"weight\":1.47,\n               \"date1\":\"2019-11-06\",\n               \"contact_email\":\"noemail@email.com\",\n               \"time1\":\"00:00:00\",\n               \"contact_cellnum\":\"050 1 1 1 1 1 1\",\n               \"company_title\":\"INSTAL PROJEKT Gawlowscy, Scierzynscy Spolka Jawna\",\n               \"geo_district\":\"\",\n               \"geo_address\":\"ul. some street, 122a\",\n               \"workaction\":\"1\",\n               \"geo_city\":\"City kruszyn\",\n\"gln\":\"7777999988881\",\n               \"category\":0,\n               \"cargo\":\"плитка/сантехніка\"\n            },\n            {\n               \"contact_name\":\"nocontact\",\n               \"geo_country_iso_num\":804,\n               \"geo_region\":\"київська\",\n               \"company_natcomid\":\"\",\n               \"weight\":1.47,\n               \"date1\":\"2019-11-14\",\n               \"contact_email\":\"noemail@email.com\",\n               \"time1\":\"00:00:00\",\n               \"contact_cellnum\":\"(044) 123123123 #$%^&*()_\",\n               \"company_title\":\"Агросем\",\n               \"geo_district\":\"\",\n               \"geo_address\":\"вул. hrest, 17-А\",\n               \"workaction\":\"2\",\n               \"geo_city\":\"Київ\",\n               \"cargo\":\"плитка/сантехніка\"\n            }\n         ],\n         \"currency\":\"UAH\",\n         \"payorcode\":\"\",\n         \"chargetype\":[\n            3,\n            2,\n            4\n         ],\n         \"route_apicode\":\"unique-external-id-11213-1080p\",\n         \"paymenttype\":2,\n         \"budget\":20500.0,\n\"forallpartners\":1\n      }\n   }\n}","description":"<p>The main body of the request, the payload that contains the route/order details.</p>\n","type":"text"},{"key":"signature","value":"{{MAC}}","description":"<p>A MAC must be supplied, which is a SHA256 hash product of the <code>post</code> parameter and the MAC key. What is a MAC: <a href=\"https://en.wikipedia.org/wiki/Message_authentication_code\">https://en.wikipedia.org/wiki/Message_authentication_code</a></p>\n","type":"text"}]},"url":"{{host}}/a/v2/rest/public/createRoute","description":"<p>With this endpoint you can add routes/orders into Sovtes from your systems one at a time or many at once.</p>\n<p>You will need to supply a MAC to ensure message integrity. The MAC is calculated as a SHA256 of the <code>post</code> string using the MAC key available in user profile, and must be sent as a separate param <code>signature</code>. Use this online tool to test your signature: <a href=\"https://sovt.es/ooqwq\">https://sovt.es/ooqwq</a></p>\n<p><code>post</code> parameter explanation:</p>\n<ul>\n<li><p>request must be in JSON</p>\n</li>\n<li><p><em>routes</em> is the root element, that can contain one or more <em>route</em> objects</p>\n</li>\n</ul>\n<h3 id=\"route-object-explanation\"><code>route</code> object explanation:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>param</th>\n<th>required</th>\n<th>type</th>\n<th>explanation</th>\n<th>valid example</th>\n<th>invalid example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>routeparts</td>\n<td>yes</td>\n<td>array of <code>routepart</code> objects</td>\n<td>an array of points for the order/route, like loading, unloading, border, customs, etc</td>\n<td>(see below)</td>\n<td>empty</td>\n</tr>\n<tr>\n<td>route_apicode</td>\n<td>yes</td>\n<td>string (40)</td>\n<td>an id of the order/route within your (external) system</td>\n<td>DG-1982, 123221</td>\n<td>empty or duplicate</td>\n</tr>\n<tr>\n<td>budget</td>\n<td>yes</td>\n<td>decimal (12,2)</td>\n<td>order's price, in national currency if currency param is not provided</td>\n<td>1090.55</td>\n<td><em>100,00</em>, one thousand</td>\n</tr>\n<tr>\n<td>draft</td>\n<td></td>\n<td>bool</td>\n<td>whether to publish the route as draft or not</td>\n<td>1, true</td>\n<td></td>\n</tr>\n<tr>\n<td>currency</td>\n<td></td>\n<td>string (3)</td>\n<td>currency, default to national currency, valid values: USD, EUR</td>\n<td>EUR</td>\n<td>GBP</td>\n</tr>\n<tr>\n<td>nds</td>\n<td></td>\n<td>bool</td>\n<td></td>\n<td>1 for value added tax included, 0 for no VAT included</td>\n<td>1</td>\n</tr>\n<tr>\n<td>paymenttype</td>\n<td></td>\n<td>int (1)</td>\n<td>according to internal mapping: 2 for bank transfer, 3 for cash, see <a href=\"https://sovt.es/data-mapping\">mapping</a></td>\n<td>2</td>\n<td>4</td>\n</tr>\n<tr>\n<td>payorcode</td>\n<td></td>\n<td>string (30)</td>\n<td>national ID of the legal entity to pay for the order/route, must match the settings within the UI</td>\n<td>40003782</td>\n<td>non matching id</td>\n</tr>\n<tr>\n<td>chargetype</td>\n<td></td>\n<td>array of ints</td>\n<td>an array of accaptable charge types for the order/route, must match <a href=\"https://sovt.es/data-mapping\">the mapping</a></td>\n<td>[1,3]</td>\n<td>non matching ids</td>\n</tr>\n<tr>\n<td>cartype</td>\n<td></td>\n<td>array of ints</td>\n<td>an array of accaptable car types for the order/route, must match <a href=\"https://sovt.es/data-mapping\">the mapping</a></td>\n<td>[1,2]</td>\n<td>non matching ids</td>\n</tr>\n<tr>\n<td>ferryproperty</td>\n<td></td>\n<td>array of ints</td>\n<td>an array of additional desirable parameters for the order/route, must match <a href=\"https://sovt.es/data-mapping\">the mapping</a></td>\n<td>[5,10,11]</td>\n<td>non matching ids</td>\n</tr>\n<tr>\n<td>ferryproperty_details</td>\n<td></td>\n<td>object of string values</td>\n<td>key must be string in [10,11,12] as per ferryproperty, values must be strings (20)</td>\n<td>{\"11\":\"-5\", \"10\":\"32\"}</td>\n<td></td>\n</tr>\n<tr>\n<td>operators</td>\n<td></td>\n<td>array of strings</td>\n<td>an array of carrier hashes, for whom the route shall be available, hashes can be found in GET getPartners endpoint</td>\n<td>[\"06991aab9ddafbc6faaa2429d4fa3de2\",\"692ea987e30fffeef4803561327eaa39\"]</td>\n<td>[\"Перевізник, ТОВ\",29812]</td>\n</tr>\n<tr>\n<td>remark</td>\n<td></td>\n<td>string</td>\n<td>the remark field is a free-form text string, it can accommodate various types of information, making it a versatile field for any notes that don’t fit into the structured fields already defined</td>\n<td>\"Urgent delivery required by 2024-08-27. Contact receiver before delivery.\"</td>\n<td></td>\n</tr>\n<tr>\n<td>userclient_email</td>\n<td></td>\n<td>string</td>\n<td>if the user responsible for the route is not the holder of the token, pass his/her email here</td>\n<td>\"<a href=\"mailto:validuser@ourcompany.com\">validuser@ourcompany.com</a>\"</td>\n<td>\"John Doe\"</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"routepart-object-explanation\"><code>routepart</code> object explanation:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>param</th>\n<th>required</th>\n<th>type</th>\n<th>applicable workaction</th>\n<th>explanation</th>\n<th>valid example</th>\n<th>invalid example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>workaction</td>\n<td>yes</td>\n<td>int (1)</td>\n<td>all</td>\n<td>type of action on the checkpoint, must be one of 1 (loading), 2 (unloading), 3 (customs) or 4 (border)</td>\n<td>1</td>\n<td>unload</td>\n</tr>\n<tr>\n<td>apicode</td>\n<td>yes</td>\n<td>string (10)</td>\n<td>1,2</td>\n<td>id of the point in your (external) system, for simplicity of geography integration</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>category</td>\n<td></td>\n<td>int (5)</td>\n<td>1</td>\n<td>internal ID of the category, for order/route grouping, must match the mapping</td>\n<td>192</td>\n<td>non-matching id</td>\n</tr>\n<tr>\n<td>cargo</td>\n<td>yes</td>\n<td>string (255)</td>\n<td>1</td>\n<td>the payload being shipped</td>\n<td>гн. швеллер и рельс</td>\n<td></td>\n</tr>\n<tr>\n<td>weight</td>\n<td>almost</td>\n<td>decimal (13,3)</td>\n<td>1</td>\n<td>weight of cargo in tonns, either this or volume must be supplied for workaction 1</td>\n<td>22.3</td>\n<td></td>\n</tr>\n<tr>\n<td>volume</td>\n<td>almost</td>\n<td>decimal (13,3)</td>\n<td>1</td>\n<td>volume of cargo in cubic meters, either this or weight must be supplied for workaction 1</td>\n<td>70</td>\n<td></td>\n</tr>\n<tr>\n<td>length</td>\n<td></td>\n<td>decimal (13,3)</td>\n<td>1</td>\n<td>length of cargo in meters</td>\n<td>8</td>\n<td></td>\n</tr>\n<tr>\n<td>height</td>\n<td></td>\n<td>decimal (13,3)</td>\n<td>1</td>\n<td>height of cargo in meters</td>\n<td>0.2</td>\n<td></td>\n</tr>\n<tr>\n<td>width</td>\n<td></td>\n<td>decimal (13,3)</td>\n<td>1</td>\n<td>width of cargo in meters</td>\n<td>5.5</td>\n<td></td>\n</tr>\n<tr>\n<td>date1</td>\n<td></td>\n<td>string (YYYY-MM-DD)</td>\n<td>all</td>\n<td>expected date of arrival to this point</td>\n<td>2020-06-20</td>\n<td>30-12-2020</td>\n</tr>\n<tr>\n<td>time1</td>\n<td></td>\n<td>string (HH:MM:SS)</td>\n<td>all</td>\n<td>expected time of arrival to this point, in 24 hour format</td>\n<td>18:00:00</td>\n<td>6 PM</td>\n</tr>\n<tr>\n<td>company_title</td>\n<td>almost</td>\n<td>string (255)</td>\n<td>1,2</td>\n<td>the name of the legal entity in the point, either this or company_natcomid is required</td>\n<td>LLC \"SOVTES\", inc</td>\n<td></td>\n</tr>\n<tr>\n<td>company_natcomid</td>\n<td>almost</td>\n<td>string (30)</td>\n<td>1,2</td>\n<td>the national code of the legal entity, either this or company_name is required</td>\n<td>40003782</td>\n<td></td>\n</tr>\n<tr>\n<td>contact_name</td>\n<td>yes</td>\n<td>string (255)</td>\n<td>1,2</td>\n<td>name of the person responsible for the work on the point</td>\n<td>John Doe</td>\n<td></td>\n</tr>\n<tr>\n<td>contact_cellnum</td>\n<td>almost</td>\n<td>string (40)</td>\n<td>1,2</td>\n<td>phone number of the responsible person, either this or email is required</td>\n<td>38 050 111 22 33</td>\n<td></td>\n</tr>\n<tr>\n<td>contact_email</td>\n<td>almost</td>\n<td>string (255)</td>\n<td>1,2</td>\n<td>email of the responsible person, either this or cellnum is required</td>\n<td><a href=\"https://mailto:office@sovtes.ua\">office@sovtes.ua</a></td>\n<td>invalid email</td>\n</tr>\n<tr>\n<td>geo_country_iso_num</td>\n<td>yes</td>\n<td>int (3)</td>\n<td>1,2</td>\n<td>county code according to <a href=\"https://www.iso.org/standard/63545.html\">ISO standard</a></td>\n<td>380</td>\n<td>non existent code</td>\n</tr>\n<tr>\n<td>geo_region</td>\n<td></td>\n<td>string (255)</td>\n<td>1,2</td>\n<td>sublocality (administrative_area_level_1), region, state, oblast, or other administrative division</td>\n<td>Киевская область</td>\n<td></td>\n</tr>\n<tr>\n<td>geo_district</td>\n<td></td>\n<td>string (255)</td>\n<td>1,2</td>\n<td>county, district (administrative_area_level_2) or other smaller administrative division</td>\n<td>Богуславский район</td>\n<td></td>\n</tr>\n<tr>\n<td>geo_city</td>\n<td>yes</td>\n<td>string (255)</td>\n<td>1,2</td>\n<td>town, village, locality, city or other administrative division</td>\n<td>Богуслав</td>\n<td></td>\n</tr>\n<tr>\n<td>geo_address</td>\n<td>yes</td>\n<td>string (200)</td>\n<td>1,2</td>\n<td>street address</td>\n<td>ул. Орджоникидзе 14</td>\n<td>наша машина, паспорт номер такойто, область, город</td>\n</tr>\n<tr>\n<td>geo_town_id</td>\n<td></td>\n<td>int (7)</td>\n<td>4</td>\n<td>internal town ID or border crossing</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>geo_apicode</td>\n<td></td>\n<td>string (10)</td>\n<td>3</td>\n<td>your (external) point ID of the customs point</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>malformed_full_address_prioritized</td>\n<td></td>\n<td>string (255)</td>\n<td>1,2,3</td>\n<td>address in whatever non-normalized form; we parse, normalize, and return <code>apicode</code></td>\n<td>*\"м.Одеса,вул.Аркадіївська алея, ТРЦ Аркадія Сіті, маг. Винчик\"* or \"<em>Волинська обл.,м. Луцьк, вул. Карбишева, 2 ( част. буд.блоку скл. 'Е-2'\"</em></td>\n<td>229</td>\n</tr>\n<tr>\n<td>border_operator_select</td>\n<td></td>\n<td>int(1)</td>\n<td>4</td>\n<td>set to 1 if the carrier is expected to indicte the point of border crossing</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>Each route must start with a workaction=1 routepart and end with workaction=2 routepart.</p>\n","urlObject":{"path":["a","v2","rest","public","createRoute"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"2cfb5f69-07fe-4211-99c0-1bca60246762","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"post","value":"{\n   \"routes\":{\n      \"route\":{\n         \"cartype\":[\n            1,\n            2,\n            4\n         ],\n         \"routeparts\":[\n            {\n               \"apicode\":\"internalcode123\",\n               \"contact_name\":\"Marina Niedzialkowska - экспорт менеджер\",\n               \"geo_country_iso_num\":616,\n               \"geo_region\":\"\",\n               \"company_natcomid\":\"\",\n               \"weight\":1.47,\n               \"date1\":\"2019-11-06\",\n               \"contact_email\":\"noemail@email.com\",\n               \"time1\":\"00:00:00\",\n               \"contact_cellnum\":\"050 1 1 1 1 1 1 \",\n               \"company_title\":\"INSTAL PROJEKT Gawlowscy, Scierzynscy Spolka Jawna\",\n               \"geo_district\":\"\",\n               \"geo_address\":\"ul. some street, 12a\",\n               \"workaction\":\"1\",\n               \"geo_city\":\"kruszyn\",\n               \"category\":0,\n               \"cargo\":\"плитка\\/сантехніка\"\n            },\n            {\n               \"contact_name\":\"nocontact\",\n               \"geo_country_iso_num\":804,\n               \"geo_region\":\"київська\",\n               \"company_natcomid\":\"\",\n               \"weight\":1.47,\n               \"date1\":\"2019-11-14\",\n               \"contact_email\":\"noemail@email.com\",\n               \"time1\":\"00:00:00\",\n               \"contact_cellnum\":\"(044) 123123123 #$%^&*()_\",\n               \"company_title\":\"Агросем\",\n               \"geo_district\":\"\",\n               \"geo_address\":\"вул. hrest, 17-А\",\n               \"workaction\":\"2\",\n               \"geo_city\":\"Київ\",\n               \"cargo\":\"плитка\\/сантехніка\"\n            }\n         ],\n         \"currency\":\"UAH\",\n         \"payorcode\":\"\",\n         \"chargetype\":[\n            3,\n            2,\n            4\n         ],\n         \"route_apicode\":\"unique-external-id-11212\",\n         \"paymenttype\":2,\n         \"budget\":20500.0\n      }\n   }\n}","description":"The main body of the request, the payload that contains the route/order details.","type":"text"},{"key":"signature","value":"{{MAC}}","description":"A MAC must be supplied, which is a SHA256 hash product of the `post` parameter and the MAC key.","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/a/v2/rest/public/createRoute"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"created\",\n    \"data\": [\n        {\n            \"periodic\": \"436-04-22\",\n            \"userroutenumber\": \"unique-external-id-11212\",\n            \"url\": \"/a/index.php?p=view&id=436-04-22&m=shipping\"\n        }\n    ]\n}"},{"id":"7929524f-76db-418b-bbaf-90f75286c290","name":"Request by carrier","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"post","value":"{{routeCreationBody}}","description":"The main body of the request, the payload that contains the route/order details.","type":"text"},{"key":"signature","value":"{{MAC}}","description":"A MAC must be supplied, which is a SHA256 hash product of the `post` parameter and the MAC key.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/createRoute"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"You can’t create routes.\",\n    \"relogin\": false\n}"},{"id":"b3a528ab-308c-49ca-b2d5-f594865b92ce","name":"Invalid MAC supplied","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"post","value":"{{routeCreationBody}}","description":"The main body of the request, the payload that contains the route/order details.","type":"text"},{"key":"signature","value":"{{invalidMAC}}","description":"A MAC must be supplied, which is a SHA256 hash product of the `post` parameter and the MAC key.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/createRoute"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"ERROR: Data is corrupt.\",\n    \"relogin\": false\n}"},{"id":"c6c50e9e-36a4-4b9c-841f-6acd200e799f","name":"Missing params","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"post","value":"{{routeCreationBody}}","description":"The main body of the request, the payload that contains the route/order details.","type":"text"},{"key":"signature","value":"{{MAC}}","description":"A MAC must be supplied, which is a SHA256 hash product of the `post` parameter and the MAC key.","type":"text","disabled":true},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/a/v2/rest/public/createRoute"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Fri, 15 Apr 2022 12:33:07 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"ERROR: Request is invalid\",\n    \"relogin\": false\n}"},{"id":"783d8c31-ecd0-46f6-9fa3-1caabbd55167","name":"Invalid routeparts order","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"post","value":"{\n   \"routes\":{\n      \"route\":{\n         \"cartype\":[\n            1,\n            2,\n            4\n         ],\n         \"routeparts\":[\n            {\n               \"apicode\":\"internalcode123\",\n               \"contact_name\":\"Marina Niedzialkowska - экспорт менеджер\",\n               \"geo_country_iso_num\":616,\n               \"geo_region\":\"\",\n               \"company_natcomid\":\"\",\n               \"weight\":1.47,\n               \"date1\":\"2019-11-06\",\n               \"contact_email\":\"noemail@email.com\",\n               \"time1\":\"00:00:00\",\n               \"contact_cellnum\":\"050 1 1 1 1 1 1 \",\n               \"company_title\":\"INSTAL PROJEKT Gawlowscy, Scierzynscy Spolka Jawna\",\n               \"geo_district\":\"\",\n               \"geo_address\":\"ul. some street, 12a\",\n               \"workaction\":\"3\",\n               \"geo_city\":\"kruszyn\",\n               \"category\":0,\n               \"cargo\":\"плитка\\/сантехніка\"\n            },\n            {\n               \"contact_name\":\"nocontact\",\n               \"geo_country_iso_num\":804,\n               \"geo_region\":\"київська\",\n               \"company_natcomid\":\"\",\n               \"weight\":1.47,\n               \"date1\":\"2019-11-14\",\n               \"contact_email\":\"noemail@email.com\",\n               \"time1\":\"00:00:00\",\n               \"contact_cellnum\":\"(044) 123123123 #$%^&*()_\",\n               \"company_title\":\"Агросем\",\n               \"geo_district\":\"\",\n               \"geo_address\":\"вул. hrest, 17-А\",\n               \"workaction\":\"2\",\n               \"geo_city\":\"Київ\",\n               \"cargo\":\"плитка\\/сантехніка\"\n            }\n         ],\n         \"currency\":\"UAH\",\n         \"payorcode\":\"\",\n         \"chargetype\":[\n            3,\n            2,\n            4\n         ],\n         \"route_apicode\":\"unique-external-id-11212\",\n         \"paymenttype\":2,\n         \"budget\":20500.0\n      }\n   }\n}","description":"The main body of the request, the payload that contains the route/order details.","type":"text"},{"key":"signature","value":"{{MAC}}","description":"A MAC must be supplied, which is a SHA256 hash product of the `post` parameter and the MAC key.","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/a/v2/rest/public/createRoute"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"First routepart must be workaction 1 and last routepart must be workaction 2\",\n    \"relogin\": false\n}"}],"_postman_id":"f1d4860b-e26d-47e5-b721-35846da7aed0"},{"name":"Reject Operator","id":"0789a5e4-5a93-4284-a82b-dd8fbd6dfae5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{routePeriodic}}","description":"<p>Periodic of the route. Required. String</p>\n","type":"text"},{"key":"routeresponse","value":"{{responseID}}","description":"<p>ID of the response. Int. Required.</p>\n","type":"text"}]},"url":"{{host}}/a/v2/rest/public/rejectOperator","description":"<p>Allows shipper to decline the delivery offer.</p>\n<ul>\n<li>If successful, you will receive the success message, the carrier will be declined, the route will be vacant for offers again</li>\n<li>If unsuccessful you will receive an error explaining<br />the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","rejectOperator"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"5e6a7b43-7c24-44bc-bda4-aa9fa95b1e10","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{routePeriodic}}","description":"Periodic of the route. Required. String","type":"text"},{"key":"routeresponse","value":"{{responseID}}","description":"ID of the response. Int. Required.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/rejectOperator"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"5d119d22-2a4f-4892-9692-d304f7b21efb","name":"Invalid params passed","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{routePeriodic}}","description":"Periodic of the route. Required. String","type":"text"},{"key":"routeresponse","value":"{{responseID}}","description":"ID of the response. Int. Required.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/rejectOperator"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"This action is unavailable\",\n    \"relogin\": false\n}"},{"id":"425b4be5-9991-40ec-8d73-0af42fe0d59b","name":"Params not passed","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{routePeriodic}}","description":"Periodic of the route. Required. String","type":"text","disabled":true},{"key":"routeresponse","value":"{{responseID}}","description":"ID of the response. Int. Required.","type":"text","disabled":true}]},"url":"{{host}}/a/v2/rest/public/rejectOperator"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"No parameters were provided.\",\n    \"relogin\": false\n}"}],"_postman_id":"0789a5e4-5a93-4284-a82b-dd8fbd6dfae5"},{"name":"Ratify Operator","id":"33092f26-6210-4870-adc8-9039e096497c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"<p>Route periodic. String. Required.</p>\n","type":"text"}]},"url":"{{host}}/a/v2/rest/public/ratifyOperator","description":"<p>Allows shipper to confirm or ratify the carrier, that applied for the completion of the specified order.</p>\n<ul>\n<li>If successful, you will receive the success message and the carrier that applied will be assigned to the order</li>\n<li>If unsuccessful you will receive an error explaining<br />the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","ratifyOperator"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"049fa3da-c393-4f45-aa9a-ce9b99a556de","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Route periodic. String. Required.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/ratifyOperator"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"845454bf-da97-4687-811f-9e5c39e0fa6b","name":"Params not passed","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"","type":"text"}]},"url":"{{host}}/a/v2/rest/public/ratifyOperator"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 12 Apr 2022 18:44:02 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"No parameters were provided.\",\n    \"relogin\": false\n}"},{"id":"26edd087-64e4-418a-a3c5-82bdf3959b59","name":"Request by carrier","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Route periodic. String. Required.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/ratifyOperator"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"The action is not available.\",\n    \"relogin\": false\n}"}],"_postman_id":"33092f26-6210-4870-adc8-9039e096497c"},{"name":"Confirm Loading","id":"796382a7-80ec-44d5-9fdf-48b3f3def525","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"<p>route periodic</p>\n","type":"text"},{"key":"routepart","value":"{{routepartId}}","description":"<p>optional (int), but required if force flag is supplied, indicates which exactly point to confirm</p>\n","type":"text"},{"key":"force","value":"{{forceFlag}}","description":"<p>optional flag (0|1), if passed together with routepartId forces the completion of the loading point regardless of whether the carrier arrived/completed or not</p>\n","type":"text"}]},"url":"{{host}}/a/v2/rest/public/confirmCharge","description":"<p>Confirms the loading by the shipper. </p>\n<p>If the route only contains one loading point, then additional parameters might not come in handy. However, if there are several loading points, additional logic may be applied based on the passed parameters.</p>\n<p>If only the <code>route</code> parameter is supplied (without additional parameters) then the endpoint considers the first loading point as default one to confirm.</p>\n<p>You can indicate which exactly loading point you want to confirm my passing the <code>routepartId</code> int parameter. You can get the routepart id using the <code>GET singleRoute</code> endpoint.</p>\n<p>Additionally, target point to confirm may not be ready for shipper confirmation, for example in case the carrier had not yet arrived to the point, or had not yet completed the loading process. In such cases, when the target point is not yet ready, you will receive a corresponding error message. However, you can pass the <code>force</code> param in order to override those limiting conditions. Use that flag only when you are sure that the loading is truly complete and successful.</p>\n<p>(!) NOTE: when forcing confirmation of a particular non-first loading on a complex route, all preceding points will be automatically set as complete.</p>\n<ul>\n<li>If successful, you will receive the success message, the loading will be set as confirmed, and the route will get transitioned to the next corresponding status</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","confirmCharge"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"7dc2d2db-dc63-4d4e-bc5a-6072efd3928e","name":"Success (no additional params)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"route periodic","type":"text"}]},"url":"{{host}}/a/v2/rest/public/confirmCharge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"785e3e8b-d215-4d38-b524-540a380891cf","name":"Success (with additional params)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"route periodic","type":"text"},{"key":"routepart","value":"{{routepartID}}","description":"optional (int), but required if force flag is supplied, indicates which exactly point to confirm","type":"text"},{"key":"force","value":"{{forceFlag}}","description":"optional flag (0|1), if passed together with routepartId forces the completion of the charge point regardless of whether the carrier arrived/completed or not","type":"text"}]},"url":"{{host}}/a/v2/rest/public/confirmCharge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"f8923a36-e3c3-4fbe-a3db-6441651da557","name":"Route in such status that loading confirmation is unavailable","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"route periodic","type":"text"}]},"url":"{{host}}/a/v2/rest/public/confirmCharge"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"The route status doesn’t allow confirming loading.\",\n    \"relogin\": false\n}"},{"id":"89ace69c-f419-4fa0-ad6c-bb0f9779fa63","name":"Point passed is in such status that confirmation is unavailable","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"route periodic","type":"text"},{"key":"routepart","value":"{{routepartID}}","description":"optional (int), but required if force flag is supplied, indicates which exactly point to confirm","type":"text"},{"key":"force","value":"{{forceFlag}}","description":"optional flag (0|1), if passed together with routepartId forces the completion of the charge point regardless of whether the carrier arrived/completed or not","type":"text"}]},"url":"{{host}}/a/v2/rest/public/confirmCharge"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"The stop is incorrect.\",\n    \"relogin\": false\n}"}],"_postman_id":"796382a7-80ec-44d5-9fdf-48b3f3def525"},{"name":"Correct Route Budget","id":"eb3470fd-bbea-4a1a-8441-ee987ebeb8d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{routePeriodic}}","description":"<p>Periodic of the route. Required. String</p>\n","type":"text"},{"key":"type","value":"fine|uplift","description":"<p>One of \"uplift\" or \"fine\". String. Required.</p>\n","type":"text"},{"key":"absoluteSum","value":"{{positiveSumInRouteCurrency}}","description":"<p>Sum of the correction in the currency of the route. Must be positive. Decimal. Required.</p>\n","type":"text","uuid":"ce808060-e34e-45ca-904f-c4a803f4f89f"},{"key":"remark","value":"{{correctionReason}}","description":"<p>Remark for the correction. String. Optional.</p>\n","type":"text","uuid":"496ace5c-c381-4a87-a4da-eac962e89a92"}]},"url":"{{host}}/a/v2/rest/public/addBudgetCorrection","description":"<p>Allows the shipper to add a budget correction, such as a premium (uplift) or a fine. Along with the uplift or the fine, a remark may be supplied for future reference.</p>\n<p>The budget of the route will be automatically recalculated in accordance with the passed values. For the \"uplift\" correction the budget will increase; for \"fine\" correction the budget will decrease respecively.</p>\n<p>(!) Important: setting #15 ( <code>premiumindicate</code>) must be turned on for the endpoint to work.</p>\n<p><em>If successful</em>, you will receive the success message, and the route will be updated with the new budget correction.</p>\n<p><em>If unsuccessful</em>, an error message will be provided to explain the issue in the language specified in the request header or the language set in the app.</p>\n","urlObject":{"path":["a","v2","rest","public","addBudgetCorrection"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"2c53b3a6-24d9-4d42-98f3-e1c95971f309","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{routePeriodic}}","description":"Periodic of the route. Required. String","type":"text"},{"key":"type","value":"uplift","description":"One of \"uplift\" or \"fine\". String. Required.","type":"text"},{"key":"absoluteSum","value":"200","description":"Sum of the correction in the currency of the route. Must be positive. Decimal. Required.","type":"text","uuid":"ce808060-e34e-45ca-904f-c4a803f4f89f"},{"key":"remark","value":"stop 1 hr","description":"Remark for the correction. String. Optional.","type":"text","uuid":"496ace5c-c381-4a87-a4da-eac962e89a92"}]},"url":"{{host}}/a/v2/rest/public/addBudgetCorrection"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.27.3"},{"key":"Date","value":"Wed, 16 Apr 2025 12:21:43 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"X-Xdebug-Profile-Filename","value":"/var/tmp/cachegrind.out.88611"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"route\": \"18-02-25\",\n        \"budget\": 20200,\n        \"currency\": \"uah\"\n    }\n}"},{"id":"9f90519c-fc1b-49c0-8e62-dc2833a92efe","name":"Bad correction type supplied","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{routePeriodic}}","description":"Periodic of the route. Required. String","type":"text"},{"key":"type","value":"premium","description":"One of \"uplift\" or \"fine\". String. Required.","type":"text"},{"key":"absoluteSum","value":"{{positiveSumInRouteCurrency}}","description":"Sum of the correction in the currency of the route. Must be positive. Decimal. Required.","type":"text","uuid":"ce808060-e34e-45ca-904f-c4a803f4f89f","disabled":true},{"key":"remark","value":"{{correctionReason}}","description":"Remark for the correction. String. Optional.","type":"text","uuid":"496ace5c-c381-4a87-a4da-eac962e89a92","disabled":true}]},"url":"{{host}}/a/v2/rest/public/addBudgetCorrection"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.27.3"},{"key":"Date","value":"Wed, 16 Apr 2025 12:19:38 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"X-Xdebug-Profile-Filename","value":"/var/tmp/cachegrind.out.92094"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Type must be one of \\\"uplift\\\", \\\"fine\\\", but \\\"premium\\\" given\",\n    \"relogin\": false\n}"},{"id":"c8c63abc-357c-4c82-a86f-c5e102b17600","name":"Bad sum supplied","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{routePeriodic}}","description":"Periodic of the route. Required. String","type":"text"},{"key":"type","value":"fine","description":"One of \"uplift\" or \"fine\". String. Required.","type":"text"},{"key":"absoluteSum","value":"-100","description":"Sum of the correction in the currency of the route. Must be positive. Decimal. Required.","type":"text","uuid":"ce808060-e34e-45ca-904f-c4a803f4f89f"},{"key":"remark","value":"{{correctionReason}}","description":"Remark for the correction. String. Optional.","type":"text","uuid":"496ace5c-c381-4a87-a4da-eac962e89a92","disabled":true}]},"url":"{{host}}/a/v2/rest/public/addBudgetCorrection"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.27.3"},{"key":"Date","value":"Wed, 16 Apr 2025 12:20:46 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"X-Xdebug-Profile-Filename","value":"/var/tmp/cachegrind.out.88620"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Param absoluteSum must contain a positive decimal value\",\n    \"relogin\": false\n}"}],"_postman_id":"eb3470fd-bbea-4a1a-8441-ee987ebeb8d3"},{"name":"Force Finish Route","id":"8a5449e5-bb47-4034-a5b3-a9393bb0f1f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text","description":"<p>JWT token</p>\n"},{"key":"Language","value":"{{language}}","type":"text","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n"}],"url":"{{host}}/a/v2/rest/public/finishRoute?route={{singleRoute}}","description":"<p>Marks the route complete and all checkpoints within it.</p>\n<ul>\n<li>if successful you will mark complete the route and all checkpoints within it</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>(!) NOTE: Can be only used by shippers</p>\n","urlObject":{"path":["a","v2","rest","public","finishRoute"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Required, string. Single route periodic</p>\n","type":"text/plain"},"key":"route","value":"{{singleRoute}}"}],"variable":[]}},"response":[{"id":"0f108172-1c5e-4c70-adfa-39b7d25bb2cc","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text","description":"JWT token"},{"key":"Language","value":"{{language}}","type":"text","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful"}],"url":{"raw":"{{host}}/a/v2/rest/public/finishRoute?route={{singleRoute}}","host":["{{host}}"],"path":["a","v2","rest","public","finishRoute"],"query":[{"key":"route","value":"{{singleRoute}}","description":"Single route periodic"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"11b5a6c6-a5b7-4cad-afab-408acc4d2856","name":"Route not ready to be forced as complete","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/finishRoute?route={{singleRoute}}","host":["{{host}}"],"path":["a","v2","rest","public","finishRoute"],"query":[{"key":"route","value":"{{singleRoute}}","description":"Single route periodic"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"This action is not allowed for this route.\",\n    \"relogin\": false\n}"},{"id":"7887dcec-57d8-4aae-9aa6-3c7630a80afc","name":"Request from carrier","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/finishRoute?route={{singleRoute}}","host":["{{host}}"],"path":["a","v2","rest","public","finishRoute"],"query":[{"key":"route","value":"{{singleRoute}}","description":"Single route periodic"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"The action is not available.\",\n    \"relogin\": false\n}"}],"_postman_id":"8a5449e5-bb47-4034-a5b3-a9393bb0f1f1"},{"name":"Delete Route/Tender","id":"e5eab04e-7232-4310-a7db-6616065017c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/route/{{singleRoute}}","description":"<p>Allows you to delete the route/tender, i.e. move it to the trash bin. Routes in the trash bin aren't available for the carriers.</p>\n<ul>\n<li><p>if successful you will have your route/tender moved to the bin</p>\n</li>\n<li><p>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</p>\n</li>\n</ul>\n<p>(!)NOTE: Only for shippers</p>\n<p><strong>singleRoute</strong> URL must be a periodic of the route or tender, in form 123-12-12.</p>\n","urlObject":{"path":["a","v2","rest","public","route","{{singleRoute}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"47c138cb-e578-475b-91b4-de854577f643","name":"Success","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/a/v2/rest/public/route/{{singleRoute}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"deleted\": \"1271-10-19\"\n    }\n}"},{"id":"a621596d-d31e-4de1-83cb-1813f754fa11","name":"Invalid route periodic","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/route/{{singleRoute}}"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Route not found.\",\n    \"relogin\": false\n}"}],"_postman_id":"e5eab04e-7232-4310-a7db-6616065017c2"},{"name":"Update Route","id":"05c98f30-378f-4f23-a74c-820b9fa71c55","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"operators\":[\"d08dbfc74eff5853073aa49e174af6e2\",\"ec2b30b1d99dadf7ce87a6236c439464\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/route/{{singleRoute}}","description":"<p>Allows you to update the route/tender, and change the carriers who would be allowed to work on the route.</p>\n<ul>\n<li><p>if successful you will have your route/tender moved to the bin</p>\n</li>\n<li><p>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</p>\n</li>\n</ul>\n<p>(!)NOTE: Only for shippers</p>\n<p><strong>singleRoute</strong> URL must be a periodic of the route or tender, in form 123-12-12.</p>\n<p><strong>operators</strong> param must contain the array of clientHash strings of the carriers, can be found in GET getPartners</p>\n","urlObject":{"path":["a","v2","rest","public","route","{{singleRoute}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"7e73def9-1efa-4720-b3fe-f2eb395bbddf","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"operators\":[\"d08dbfc74eff5853073aa49e174af6e2\",\"ec2b30b1d99dadf7ce87a6236c439464\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/route/{{singleRoute}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"route\": \"96-04-25\",\n        \"operators\": [\n            \"d08dbfc74eff5853073aa49e174af6e2\",\n            \"ec2b30b1d99dadf7ce87a6236c439464\"\n        ]\n    }\n}"},{"id":"1ad8d6fa-0d8a-4e6d-adc9-f62e705f3c34","name":"Route is booked error","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"operators\":[\"d08dbfc74eff5853073aa49e174af6e2\",\"ec2b30b1d99dadf7ce87a6236c439464\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/route/123-01-25"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.27.3"},{"key":"Date","value":"Mon, 28 Apr 2025 11:23:30 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"X-Xdebug-Profile-Filename","value":"/var/tmp/cachegrind.out.99663"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"The route is reserved for a carrier and cannot be edited.\",\n    \"relogin\": false\n}"}],"_postman_id":"05c98f30-378f-4f23-a74c-820b9fa71c55"},{"name":"Request Change of Checkpoints","id":"ba4bba52-2e60-4993-9b93-d40781e57e18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"periodic\": \"353-10-22\",\n    \"routepart\": 111551294,\n    \"newChekpointcontactdata\": 18258\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/requestChangeCheckpoints","description":"<p>This endpoint allows users to request changes to the checkpoints for a specified routepart. The request includes the route periodic, the routepart identifier, and the new checkpoint contact data.</p>\n<p><strong>Request Body</strong><br />The request body must be in JSON format and contain the following fields:</p>\n<ul>\n<li><strong>periodic</strong>: route periodic number, string, required</li>\n<li><strong>routepart</strong>: the identifier for the specific part of the route, int, required</li>\n<li><strong>newChekpointcontactdata</strong>: the new contact data for the checkpoint, int, required</li>\n</ul>\n<p><strong>Response</strong><br />The response will indicate the success or failure of the request to change the checkpoints.</p>\n<p>Ensure that the <em>periodic</em> is correct. <em>routepart</em> must be a valid identifier for an existing route part. <em>newChekpointcontactdata</em> should be the updated contact information for the checkpoint. This endpoint is used by clients who need to update checkpoint information.</p>\n","urlObject":{"path":["a","v2","rest","public","requestChangeCheckpoints"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"c452a81b-530d-46ff-82c9-f875e55fe91d","name":"Missing token","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"periodic\": \"3-01-21\",\n    \"routepart\": 112264261,\n    \"newChekpointcontactdata\": 24247\n}"},"url":"{{host}}/a/v2/rest/public/requestChangeCheckpoints"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"token is required\",\n    \"relogin\": true\n}"},{"id":"e60d5c42-c728-483e-b635-856140a3830d","name":"Invalid checkpoint contact data","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"periodic\": \"3-01-21\",\n    \"routepart\": 112264261,\n    \"newChekpointcontactdata\": 24247\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/requestChangeCheckpoints"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Given chekpointcontactdata is not valid\",\n    \"relogin\": false\n}"},{"id":"ef556f4a-9386-48d6-8a23-6c172a2f6ed2","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"periodic\": \"3-01-21\",\n    \"routepart\": 112264261,\n    \"newChekpointcontactdata\": 24247\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/requestChangeCheckpoints"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"routechange\": 152650\n}"}],"_postman_id":"ba4bba52-2e60-4993-9b93-d40781e57e18"},{"name":"Cancel Route in Progress and Put to vacant list","id":"2a0eeb32-eb27-4c9b-aa40-170d1bcc6825","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"periodic\": \"{{singleRoute}}\"\n}"},"url":"{{host}}/a/v2/rest/public/forceVacantizeRoute","description":"<p>This endpoint allows users to cancel a route that is currently in progress and move it to the vacant list. The request requires authorization and the specification of the periodic for the route.</p>\n<p>The request body must be in JSON format and contain the following field:</p>\n<ul>\n<li><strong>periodic:</strong> the periodic of the route to be canceled, string, required</li>\n</ul>\n<p>The response will indicate the success or failure of the request to cancel the route and move it to the vacant list.</p>\n<ul>\n<li>if success you will change route status and route will become available.</li>\n</ul>\n<p>This endpoint is typically used by clients who need to manage route statuses dynamically, allowing them to cancel ongoing routes and reassign them as needed.</p>\n","urlObject":{"path":["a","v2","rest","public","forceVacantizeRoute"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"06c38633-12ac-40b9-9764-2d03278ac8e7","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"periodic\": \"18-07-21\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/forceVacantizeRoute"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true\n}"},{"id":"ff457a45-7f1d-442f-83d3-227b6eea977f","name":"Route In Tender State Error","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"periodic\": \"18-07-21\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/forceVacantizeRoute"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"The route musn't be tender\",\n    \"relogin\": false\n}"},{"id":"e5ca3aee-2858-4e6b-a807-d3f46fc2d818","name":"Invalid route number","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"periodic\": \"18-07-21\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/forceVacantizeRoute"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Incorrect route number.\",\n    \"relogin\": false\n}"}],"_postman_id":"2a0eeb32-eb27-4c9b-aa40-170d1bcc6825"},{"name":"Get Route Templates","id":"609504d5-a06d-4ef8-bb1d-4eedd5e9a5d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/routeTemplates","urlObject":{"path":["a","v2","rest","public","routeTemplates"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"609504d5-a06d-4ef8-bb1d-4eedd5e9a5d8"},{"name":"Сreate Route Templates","id":"5efe0c3c-f0d9-4794-81ff-4e3c0334b233","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\":\"Новий темплейт\",\n    \"description\": \"новий темплейт опис\", \n    \"periodic\": \"1111-01-21\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/createRouteTemplates","urlObject":{"path":["a","v2","rest","public","createRouteTemplates"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5efe0c3c-f0d9-4794-81ff-4e3c0334b233"},{"name":"Delete Route Templates","id":"5bbbbdb4-58a9-4cdc-aff9-bf6ddd7c5f78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/deleteRouteTemplates?id=","urlObject":{"path":["a","v2","rest","public","deleteRouteTemplates"],"host":["{{host}}"],"query":[{"key":"id","value":""}],"variable":[]}},"response":[],"_postman_id":"5bbbbdb4-58a9-4cdc-aff9-bf6ddd7c5f78"},{"name":"Update Route Templates","id":"32b77d9a-3ba5-4e7b-950c-18ae6ada0550","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\":\"Z2vzqH\", \n    \"title\":\"Route template updated\",\n    \"description\": \"Route template updated\", \n    \"periodic\": \"49-03-26\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/updateRouteTemplates?id=","urlObject":{"path":["a","v2","rest","public","updateRouteTemplates"],"host":["{{host}}"],"query":[{"key":"id","value":""}],"variable":[]}},"response":[],"_postman_id":"32b77d9a-3ba5-4e7b-950c-18ae6ada0550"}],"id":"96963ada-927d-49ae-a2e0-b2294e26b0a3","_postman_id":"96963ada-927d-49ae-a2e0-b2294e26b0a3","description":""}],"id":"c0e22255-9cdc-4cad-a188-dfa56f990772","description":"<p>As list of endpoints specifically for shippers. These allow to create routes, initiate tenders, confirm or reject delivery offers, ratify and decline tender delivery bids, bargain in tenders, confirm loading, soft delete routes etc.</p>\n","_postman_id":"c0e22255-9cdc-4cad-a188-dfa56f990772"},{"name":"For carriers","item":[{"name":"Tender specific","item":[{"name":"Bid in Tender","event":[{"listen":"test","script":{"id":"3e88f93b-b062-4e75-ae07-19165be6dcaf","exec":["var response = pm.response.json();\r","var isContains = pm.response.text();\r","\r","if (response.status === 200 || response.status === 'success'){\r","    pm.test(\"response contains a success\", () => {\r","        pm.expect(isContains).to.include(\"success\");\r","    });\r","\r","    pm.test(\"success in response is true\", function () {\r","        pm.expect(response.success).to.equal(true);\r","    });\r","\r","}else {\r","    pm.test(\"Response have relogin an Boolean\", () => {\r","        pm.expect(response.relogin).to.be.an('boolean');\r","    });\r","}\r",""],"type":"text/javascript","packages":{}}}],"id":"410290f3-14b4-4a62-beb6-8fe480179070","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT access token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"<p>String. Required. The identifier of the route.</p>\n","type":"text"},{"key":"pricequote","value":"{{priceQuote}}","description":"<p>Float. Required. The pricequote.</p>\n","type":"text"},{"key":"loadquote","value":"{{loadQuote}}","description":"<p>Float. Required. The loadquote.</p>\n","type":"text"},{"key":"remark","value":"{{remark}}","description":"<p>String. Optional. A plaintext remark along with the bid.</p>\n","type":"text","uuid":"0edd89aa-e01c-4b1d-9a81-3b9b6552fa6e"}]},"url":"{{host}}/a/v2/rest/public/pricequote","description":"<p>This endpoint is used to submit a price quote for a tender. It allows users to provide pricing information for a specific route.</p>\n<p>Upon receiving the request, the system generates a price quote based on the provided details.</p>\n<ul>\n<li>Upon successful submission of the price quote, the system processes the request and generates the corresponding price quote.</li>\n<li>If any required parameter is missing or invalid, the system returns an error response indicating the specific issue.</li>\n<li>In case of no response, clients should verify their network connectivity and resend the request if necessary. Additionally, they may contact the service provider for further assistance.</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","pricequote"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"96aaaf51-44a1-4f97-95a7-ee5146e7b03c","name":"Succeess","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"String. Required. The identifier of the route.","type":"text"},{"key":"pricequote","value":"3000","description":"String. Required. The pricequote.","type":"text"},{"key":"loadquote","value":"1","description":"String. Required. The loadquote.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/pricequote"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"5d663673-bee5-4a9c-87db-68a6af3a8e83","name":"Missing token","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"String. Required. The identifier of the route.","type":"text"},{"key":"pricequote","value":"3000","description":"String. Required. The pricequote.","type":"text"},{"key":"loadquote","value":"1","description":"String. Required. The loadquote.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/pricequote"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token is required\",\n    \"relogin\": true\n}"},{"id":"b0cb37a1-48f6-4076-a105-4d696af54bcd","name":"Missing pricequote","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"String. Required. The identifier of the route.","type":"text"},{"key":"pricequote","value":"3000","description":"String. Required. The pricequote.","type":"text"},{"key":"loadquote","value":"1","description":"String. Required. The loadquote.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/pricequote"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"The bid is empty.\",\n    \"relogin\": false\n}"}],"_postman_id":"410290f3-14b4-4a62-beb6-8fe480179070"},{"name":"Сancel Single Shot","event":[{"listen":"test","script":{"id":"3e88f93b-b062-4e75-ae07-19165be6dcaf","exec":["var response = pm.response.json();\r","var isContains = pm.response.text();\r","\r","if (response.status === 200 || response.status === 'success'){\r","    pm.test(\"response contains a success\", () => {\r","        pm.expect(isContains).to.include(\"success\");\r","    });\r","\r","    pm.test(\"success in response is true\", function () {\r","        pm.expect(response.success).to.equal(true);\r","    });\r","\r","}else {\r","    pm.test(\"Response have relogin an Boolean\", () => {\r","        pm.expect(response.relogin).to.be.an('boolean');\r","    });\r","}\r",""],"type":"text/javascript","packages":{}}}],"id":"64644645-6bbb-48ba-b8ff-bd529be6f74f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT access token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"<p>String. Required. The identifier of the route.</p>\n","type":"text"},{"key":"pricequote","value":"{{pricequoteId}}","description":"<p>Int. Required. The identifier of the pricequote to be cancelled.</p>\n","type":"text","uuid":"8638262a-eaf1-4c89-9533-398f9b32e4a1"}]},"url":"{{host}}/a/v2/rest/public/cancelPricequote","description":"<p>This endpoint is used to cancel a price quote previously made in a single shot tender (blind tender).</p>\n<p>Cancelled bids cannot be chosen as winning. Cancelled bids can be later revived.</p>\n","urlObject":{"path":["a","v2","rest","public","cancelPricequote"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"c438dc01-730e-498e-8e8d-a5deccbb5fde","name":"Succeess","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"String. Required. The identifier of the route.","type":"text"},{"key":"pricequote","value":"3000","description":"String. Required. The pricequote.","type":"text"},{"key":"loadquote","value":"1","description":"String. Required. The loadquote.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/pricequote"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"668d4662-d648-4cf6-94a4-35b27002ac4b","name":"Missing token","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"String. Required. The identifier of the route.","type":"text"},{"key":"pricequote","value":"3000","description":"String. Required. The pricequote.","type":"text"},{"key":"loadquote","value":"1","description":"String. Required. The loadquote.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/pricequote"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token is required\",\n    \"relogin\": true\n}"},{"id":"902dc644-3a0a-4f77-bdab-c0b4a16dc87c","name":"Missing pricequote","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"String. Required. The identifier of the route.","type":"text"},{"key":"pricequote","value":"3000","description":"String. Required. The pricequote.","type":"text"},{"key":"loadquote","value":"1","description":"String. Required. The loadquote.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/pricequote"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"The bid is empty.\",\n    \"relogin\": false\n}"}],"_postman_id":"64644645-6bbb-48ba-b8ff-bd529be6f74f"},{"name":"Revive Single Shot","event":[{"listen":"test","script":{"id":"3e88f93b-b062-4e75-ae07-19165be6dcaf","exec":["var response = pm.response.json();\r","var isContains = pm.response.text();\r","\r","if (response.status === 200 || response.status === 'success'){\r","    pm.test(\"response contains a success\", () => {\r","        pm.expect(isContains).to.include(\"success\");\r","    });\r","\r","    pm.test(\"success in response is true\", function () {\r","        pm.expect(response.success).to.equal(true);\r","    });\r","\r","}else {\r","    pm.test(\"Response have relogin an Boolean\", () => {\r","        pm.expect(response.relogin).to.be.an('boolean');\r","    });\r","}\r",""],"type":"text/javascript","packages":{}}}],"id":"0833ca06-8226-46c2-bec2-798461e16b7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT access token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"<p>String. Required. The identifier of the route.</p>\n","type":"text"},{"key":"pricequote","value":"{{pricequoteId}}","description":"<p>Int. Required. The identifier of the pricequote to be cancelled.</p>\n","type":"text","uuid":"8638262a-eaf1-4c89-9533-398f9b32e4a1"}]},"url":"{{host}}/a/v2/rest/public/revivePricequote","description":"<p>This endpoint is used to revive the cancelled price quote previously made in a single shot tender (blind tender).</p>\n","urlObject":{"path":["a","v2","rest","public","revivePricequote"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"1c13c665-67d4-429a-9294-01baa950c2b0","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"String. Required. The identifier of the route.","type":"text"},{"key":"pricequote","value":"3000","description":"String. Required. The pricequote.","type":"text"},{"key":"loadquote","value":"1","description":"String. Required. The loadquote.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/pricequote"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"126921c4-4b2f-46ec-8ff3-29eab0d217ff","name":"Missing token","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"String. Required. The identifier of the route.","type":"text"},{"key":"pricequote","value":"3000","description":"String. Required. The pricequote.","type":"text"},{"key":"loadquote","value":"1","description":"String. Required. The loadquote.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/pricequote"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token is required\",\n    \"relogin\": true\n}"},{"id":"8413a747-996c-4111-b112-c4ab6251395c","name":"Missing pricequote","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"String. Required. The identifier of the route.","type":"text"},{"key":"pricequote","value":"3000","description":"String. Required. The pricequote.","type":"text"},{"key":"loadquote","value":"1","description":"String. Required. The loadquote.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/pricequote"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"The bid is empty.\",\n    \"relogin\": false\n}"}],"_postman_id":"0833ca06-8226-46c2-bec2-798461e16b7d"},{"name":"Оpposite Offer Decision","event":[{"listen":"test","script":{"id":"15c168a5-0897-404c-b728-0544564eeb96","exec":["var response = pm.response.json();\r","var isContains = pm.response.text();\r","\r","if (response.status === 200 || response.status === 'success'){\r","\r","}else {\r","    pm.test(\"Response have relogin an Boolean\", () => {\r","        pm.expect(response.relogin).to.be.an('boolean');\r","    });\r","}"],"type":"text/javascript","packages":{}}}],"id":"7e183cee-ebb6-4b3b-b91b-04c375291fe8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT access token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"<p>Required int. Periodic of the tender</p>\n","type":"text"},{"key":"oppositeoffer","value":"{{oppositeOffer}}","description":"<p>String. Required. Opposite offer id.</p>\n","type":"text"},{"key":"decision","value":"{{decision}}","description":"<p>String.Required. One of \"yes\" or \"no\"</p>\n","type":"text"}]},"url":"{{host}}/a/v2/rest/public/oppositeOfferDecision","description":"<p>Allows carriers to confirm or decline an opposite offer in tender. Once the shipper issues a counter offer, carriers can decide whether to accept it or not and trigger this endpoint when the decision is made.</p>\n<p>Opposite offer ID can be found in the GET getPriceQuotes.</p>\n","urlObject":{"path":["a","v2","rest","public","oppositeOfferDecision"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"31f250ff-fc87-47c3-b7cd-77a1e7e09463","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"String. Required. Tender periodic. ","type":"text"},{"key":"oppositeoffer","value":"","description":"String. Required. Opposite offer id.","type":"text"},{"key":"decision","value":"yes","description":"yes / no","type":"text"}]},"url":"{{host}}/a/v2/rest/public/oppositeOfferDecision"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"2f352b88-4e29-4b10-bb77-377d376be615","name":"Missing route number/opposite offer id/decision","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Required int. Periodic of the tender","type":"text"},{"key":"oppositeoffer","value":"","description":"String. Required. Opposite offer id.","type":"text"},{"key":"decision","value":"yes","description":"yes / no","type":"text"}]},"url":"{{host}}/a/v2/rest/public/oppositeOfferDecision"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"No arguments were provided.\",\n    \"relogin\": false\n}"}],"_postman_id":"7e183cee-ebb6-4b3b-b91b-04c375291fe8"}],"id":"3dc67a04-9efe-4e0e-adfa-3f9b0b69f516","_postman_id":"3dc67a04-9efe-4e0e-adfa-3f9b0b69f516","description":""},{"name":"Route flow","item":[{"name":"Book route","event":[{"listen":"test","script":{"id":"c9bc953b-b687-4efb-be13-febf513548fa","exec":["var response = pm.response.json();\r","var isContains = pm.response.text();\r","\r","if (response.status === 200 || response.status === 'success'){\r","\r","}else {\r","    pm.test(\"Response have relogin an Boolean\", () => {\r","        pm.expect(response.relogin).to.be.an('boolean');\r","    });\r","}"],"type":"text/javascript"}}],"id":"96cc3320-c5a9-4bf9-8b4e-9adbfd4df4db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"<p>Required, string. Single route periodic</p>\n","type":"text"}]},"url":"{{host}}/a/v2/rest/public/bookRoute","description":"<p>With this endpoint you can book a route. Default period of booking is one hour, but may vary depending on shipper preferences. When route is booked, other carriers don't have access to it</p>\n<ul>\n<li>if successful you will book a single route</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>(!) NOTE: Can be only used by carriers,<br />only routes with status 2 (vacant) can be booked</p>\n","urlObject":{"path":["a","v2","rest","public","bookRoute"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"987dbf41-47f6-4067-9732-f743ecb046d8","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Required string. Id of the tender.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/bookRoute"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"success\": \"true\"\n}"},{"id":"f10845c3-d88e-4224-8437-a8d3f50d151d","name":"Not allowed to book a route","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Required string. Id of the tender.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/bookRoute"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"You don’t have permission to view this route.\",\n    \"relogin\": false\n}"},{"id":"f1cf2c47-4e71-466f-98a0-6db71c394b2f","name":"Invalid token","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Required string. Id of the tender.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/bookRoute"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"96cc3320-c5a9-4bf9-8b4e-9adbfd4df4db"},{"name":"Cancel book","event":[{"listen":"test","script":{"id":"c9bc953b-b687-4efb-be13-febf513548fa","exec":["var response = pm.response.json();\r","var isContains = pm.response.text();\r","\r","if (response.status === 200 || response.status === 'success'){\r","\r","}else {\r","    pm.test(\"Response have relogin an Boolean\", () => {\r","        pm.expect(response.relogin).to.be.an('boolean');\r","    });\r","}"],"type":"text/javascript"}}],"id":"6d2bfd79-7e14-4f9f-86d4-c617ceb6400d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"<p>Required string. Id of the route/tender.</p>\n","type":"text"}]},"url":"{{host}}/a/v2/rest/public/cancelBook","description":"<p>With this endpoint you can cancel route booking, which was done in POST bookRoute endpoint.</p>\n<ul>\n<li><p>if successful you will cancel the booking and make the route available to other carriers</p>\n</li>\n<li><p>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</p>\n</li>\n</ul>\n<p>(!) NOTE: Can be only used by carriers on routes that were previously booked via POST bookRoute endpoint or other UI.</p>\n","urlObject":{"path":["a","v2","rest","public","cancelBook"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"1de95e34-46de-4cc2-b9f5-60e0584d1c52","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Required string. Id of the tender.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/cancelBook"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"aa147cca-5ee7-4e5a-94bb-47aea5283a84","name":"No such route","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Required string. Id of the tender.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/cancelBook"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Route not found\",\n    \"relogin\": false\n}"},{"id":"cba8fefa-9fb4-46ed-bbd5-92982d515ee6","name":"Reques from shipper","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Required string. Id of the tender.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/cancelBook"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"You don’t have permission to view this route.\",\n    \"relogin\": false\n}"}],"_postman_id":"6d2bfd79-7e14-4f9f-86d4-c617ceb6400d"},{"name":"Bookmark Route/Tender","event":[{"listen":"test","script":{"id":"f3163a9c-89e8-4e54-b2b9-aa3b49c00d79","exec":["var response = pm.response.json();\r","var isContains = pm.response.text();\r","\r","if (response.status === 200 || response.status === 'success'){\r","\r","}else {\r","    pm.test(\"Response have relogin an Boolean\", () => {\r","        pm.expect(response.relogin).to.be.an('boolean');\r","    });\r","}"],"type":"text/javascript","packages":{}}}],"id":"741a3aae-5674-4e02-9c68-bd2c023b8ff4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{periodic}}","description":"<p>Required. String. Periodic of the tender or route.</p>\n","type":"text","uuid":"99960178-f167-4e3b-9066-8ee8b66e49da"}]},"url":"{{host}}/a/v2/rest/public/bookmark","description":"<p>This endpoint marks the tender so the tender will appear in live tenders section and playing section. This endpoint can be used only with routes with status 2.</p>\n<ul>\n<li><p>if successful you won't see the passed route in vacant routes</p>\n</li>\n<li><p>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</p>\n</li>\n</ul>\n<p>(!) NOTE: Can be only used by carriers</p>\n","urlObject":{"path":["a","v2","rest","public","bookmark"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"c64fa687-1fec-4e76-8e72-d29892749345","name":"Success (mark set)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Required string. Id of the tender.","type":"text"}]},"url":{"raw":"{{host}}/a/v2/rest/public/bookmarkTender","host":["{{host}}"],"path":["a","v2","rest","public","bookmarkTender"],"query":[{"key":"","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": \n        {\n            \"route\": \"3199-05-25\",\n            \"bookmarkSet\": true\n        }\n    \n}"},{"id":"5c6728d5-855d-4f7c-9ab6-ab57386f03d2","name":"Success (mark unset)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Required string. Id of the tender.","type":"text"}]},"url":{"raw":"{{host}}/a/v2/rest/public/bookmarkTender","host":["{{host}}"],"path":["a","v2","rest","public","bookmarkTender"],"query":[{"key":"","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": \n        {\n            \"route\": \"3199-05-25\",\n            \"bookmarkSet\": false\n        }\n    \n}"},{"id":"bfee39fb-4517-4b04-8019-aa18219e2b26","name":"No such route","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Required string. Id of the tender.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/bookmarkTender"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Route not found\",\n    \"relogin\": false\n}"},{"id":"d9a170bc-22a8-4a8a-8aed-7b7579af7c64","name":"Invalid token","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Required string. Id of the tender.","type":"text"}]},"url":{"raw":"{{host}}/a/v2/rest/public/bookmarkTender","host":["{{host}}"],"path":["a","v2","rest","public","bookmarkTender"],"query":[{"key":"","value":"","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token invalid\",\n    \"relogin\": true\n}"},{"id":"5869eb4c-4ea3-43e8-bb85-4f96100e9499","name":"Request from shipper","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Required string. Id of the tender.","type":"text"}]},"url":{"raw":"{{host}}/a/v2/rest/public/bookmarkTender","host":["{{host}}"],"path":["a","v2","rest","public","bookmarkTender"],"query":[{"key":"","value":"","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Action not available\",\n    \"relogin\": false\n}"}],"_postman_id":"741a3aae-5674-4e02-9c68-bd2c023b8ff4"},{"name":"Offer Auto","id":"94aa34cf-2cbc-4f4a-bf87-9e7b1a114857","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT access token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"route\": \"{{singleRoute}}\",\n    \"routepartsDates\": {\n        \"111376785\": \"2021-12-18\",\n        \"111376786\": \"2021-12-19\"\n    },\n    \"car\" : \"{{carId}}\",\n    \"driver\": \"{{driverId}}\",\n    \"trailer\": \"{{trailerId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/offerAuto","description":"<p>This important endpoint progresses the main workflow for routes by enabling carriers to offer a truck for a specific route. Carriers can use this to propose their vehicle for a particular route.</p>\n<p>The availability dates for different parts of the route, along with details of the car, driver, and trailer, should be provided in the request.</p>\n<p>The car, driver and trailer ID's can be found in the GET getMyDrivers, GET getMyTrailers and GET getMyCars endpoints. RoutepartsDates object keys are the routepart ID's, which can found in the GET singleRoute.</p>\n<ul>\n<li>if success you will offer an auto for a route</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>Once the vehicle is offered for the order, the shipper will receive notification and will be enabled to either accept or decline your offer.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body must be in JSON format and contain the following fields:</p>\n<ul>\n<li><p><strong>route</strong> (string): The identifier for the specific route.</p>\n</li>\n<li><p><strong>routepartsDates</strong> (object): An object where keys are route part IDs and values are the availability dates for those parts.</p>\n</li>\n<li><p><strong>car</strong> (int): The ID of the car being offered.</p>\n</li>\n<li><p><strong>driver</strong> (int): The ID of the driver being proposed.</p>\n</li>\n<li><p><strong>trailer</strong> (int): The ID of the trailer being used.</p>\n</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","offerAuto"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"30b65efc-b3ee-4733-88a9-11485646593e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"route\": \"{{singleRoute}}\",\n    \"routepartsDates\": {\n        \"111376785\": \"2021-12-18\",\n        \"111376786\": \"2021-12-19\"\n    },\n    \"car\" : \"{{carId}}\",\n    \"driver\": \"{{driverId}}\",\n    \"trailer\": \"{{trailerId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/offerAuto"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"c5f310ff-715d-46fb-9d7f-a9e178653870","name":"Invalid route number","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"route\": \"{{singleRoute}}\",\n    \"routepartsDates\": {\n        \"111376785\": \"2021-12-18\",\n        \"111376786\": \"2021-12-19\"\n    },\n    \"car\" : \"{{carId}}\",\n    \"driver\": \"{{driverId}}\",\n    \"trailer\": \"{{trailerId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/offerAuto"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"We couldn’t find such a route.\",\n    \"relogin\": false\n}"},{"id":"31f8a32a-bf3c-4d2d-a93a-e06f4df5d081","name":"Invalid driver","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"route\": \"{{singleRoute}}\",\n    \"routepartsDates\": {\n        \"111376785\": \"2021-12-18\",\n        \"111376786\": \"2021-12-19\"\n    },\n    \"car\" : \"{{carId}}\",\n    \"driver\": \"{{driverId}}\",\n    \"trailer\": \"{{trailerId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/offerAuto"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Driver not found.\",\n    \"relogin\": false\n}"},{"id":"6b757e01-d71d-4dc7-abaa-9ec22255ee62","name":"Invalid trailer","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"route\": \"{{singleRoute}}\",\n    \"routepartsDates\": {\n        \"111376785\": \"2021-12-18\",\n        \"111376786\": \"2021-12-19\"\n    },\n    \"car\" : \"{{carId}}\",\n    \"driver\": \"{{driverId}}\",\n    \"trailer\": \"{{trailerId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/offerAuto"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Trailer not found.\",\n    \"relogin\": false\n}"},{"id":"0615105e-f665-4a53-992e-6c7a7e8ad358","name":"Changes occurred, retry needed","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"route\": \"5568-03-24\",\n    \"routepartsDates\": {\n        \"111376785\": \"2024-12-18\",\n        \"111376786\": \"2024-12-19\"\n    },\n    \"car\" : \"41068\",\n    \"driver\": \"40034\",\n    \"trailer\": \"38962\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/offerAuto"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Wed, 27 Mar 2024 10:15:41 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Changes have been made to the route—please refresh the page.\",\n    \"relogin\": false\n}"}],"_postman_id":"94aa34cf-2cbc-4f4a-bf87-9e7b1a114857"},{"name":"Confirm Work On Route","id":"f4b8e07b-99d4-4ddf-85d0-43f15209afb3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>JWT access token</p>\n","key":"Authorization","type":"text","value":"{{token}}"},{"description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.</p>\n","key":"Language","type":"text","value":"{{language}}"}],"body":{"mode":"raw","raw":"{\n    \"route\": \"{{singleRoute}}\",\n    \"routepartsDates\": {\n        \"111381491\": \"2021-01-02\"\n    },\n    \"routepartsTimes\": {\n        \"111381491\": \"12:00\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/confirmWorkOnRoute","description":"<p>This endpoint enables carriers to confirm scheduled work on a specific route, digitally sign the obligation to do the job, so to speak. Carriers can utilize this endpoint to acknowledge and confirm their commitment to completing assigned tasks for a particular route at a specified date and time.</p>\n<ul>\n<li>if success you will confirm your commitment to do the delivery</li>\n<li>if unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>The <em>routepartsDates</em> and <em>routepartsTimes</em> parameters hold the loading routepart ID's and can be used to indicate the estimated date and time of the arrival. Routepart ID's can be found in the GET singleRoute endpoint.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body must be in JSON format and contain the following fields:</p>\n<ul>\n<li><strong>route</strong> (string): The identifier for the specific route.</li>\n<li><strong>routepartsDates</strong> (object): An object where keys are route part IDs and values are the estimated dates of arrival.</li>\n<li><strong>routepartsTimes</strong> (object): An object where keys are route part IDs and values are the estimated times of arrival.</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","confirmWorkOnRoute"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"3b71c9b3-f15e-4e35-a332-0abeb9136aa2","name":"Success","originalRequest":{"method":"POST","header":[{"description":"JWT access token","key":"Authorization","type":"text","value":"{{token}}"},{"description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","key":"Language","type":"text","value":"{{language}}"}],"body":{"mode":"raw","raw":"{\n    \"route\": \"{{singleRoute}}\",\n    \"routepartsDates\": {\n        \"111381491\": \"2021-01-02\"\n    },\n    \"routepartsTimes\": {\n        \"111381491\": \"12:00\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/confirmWorkOnRoute"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"8e7dda3d-1ad8-4039-8041-04a9e71eef00","name":"Not allowed to work on this route","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"route\": \"{{singleRoute}}\",\n    \"routepartsDates\": {\n        \"111381491\": \"2021-01-02\"\n    },\n    \"routepartsTimes\": {\n        \"111381491\": \"12:00\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/confirmWorkOnRoute"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"You don’t have permission to view this route.\",\n    \"relogin\": false\n}"}],"_postman_id":"f4b8e07b-99d4-4ddf-85d0-43f15209afb3"},{"name":"Arrived at Charge/Loading","id":"846c1e1e-3aff-4a41-b93e-f343317cf04f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT access token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"<p>Periodic of the route. Required. String</p>\n","type":"text"},{"key":"routepart","value":"{{routePartId}}","description":"<p>ID of the loading routepart. Optional. Int </p>\n","type":"text"}]},"url":"{{host}}/a/v2/rest/public/arrivedAtCharge","description":"<p>Allows carriers to confirm arrival at loading.</p>\n<p>(!) IMPORTANT: although this endpoint is intended for carriers, shippers can also use it.</p>\n<p>If the car has the GPS tracker, the event is triggered automatically upon arrival.</p>\n<p>By default, if no routepart ID is passed, the first non-complete loading is taken as object to work on, meaning that if no routepart ID is passed, the endpoint will trigger arrival at exactly next non-complete loading.</p>\n<p>If routepart ID is passed, the endpoint will mark all preceding routeparts as complete and trigger change in the passed one.</p>\n<ul>\n<li>If successful, you will receive the success message, state of the route will change, loading will be marked as \"started\"</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>The routepart ID can be found in GET singleRoute</p>\n","urlObject":{"path":["a","v2","rest","public","arrivedAtCharge"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"5eb1e2fd-18ef-4d48-becf-f59787157d33","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Periodic of the route. Required. String","type":"text"},{"key":"routepart","value":"{{routePartId}}","description":"ID of the routepart. Optional. Intloading ","type":"text","disabled":true}]},"url":"{{host}}/a/v2/rest/public/arrivedAtCharge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Mon, 26 Jun 2023 14:52:39 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"dcdd1240-d024-4161-adf2-c1277af26226","name":"Bad route passed","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Periodic of the route. Required. String","type":"text"},{"key":"routepart","value":"{{routePartId}}","description":"ID of the routepart. Optional. Intloading ","type":"text"}]},"url":"{{host}}/a/v2/rest/public/arrivedAtCharge"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Mon, 26 Jun 2023 14:26:06 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"You don’t have permission to view this route.\",\n    \"relogin\": false\n}"},{"id":"95545ee6-9bec-466b-9481-9e3a1f95a763","name":"Route is not in proper state to confirm loading","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Periodic of the route. Required. String","type":"text"},{"key":"routepart","value":"{{routePartId}}","description":"ID of the routepart. Optional. Int","type":"text"}]},"url":"{{host}}/a/v2/rest/public/arrivedAtCharge"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Mon, 26 Jun 2023 14:26:50 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"The route status doesn’t allow this action.\",\n    \"relogin\": false\n}"},{"id":"9ddc4646-c0cb-4ad8-876b-b5affb087f65","name":"Bad routepart ID passed","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Periodic of the route. Required. String","type":"text"},{"key":"routepart","value":"{{badRoutePartId}}","description":"ID of the routepart. Optional. Int","type":"text"}]},"url":"{{host}}/a/v2/rest/public/arrivedAtCharge"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Mon, 26 Jun 2023 14:51:16 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Invalid action.\",\n    \"relogin\": false\n}"}],"_postman_id":"846c1e1e-3aff-4a41-b93e-f343317cf04f"},{"name":"Arrived at Uncharge/Unloading","id":"9934c5d8-bd20-45cb-a1f1-f5b9f8f0557c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text","description":"<p>JWT access token</p>\n"},{"key":"Language","value":"{{language}}","type":"text","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"<p>Periodic of the route. Required. String</p>\n","type":"text"},{"key":"routepart","value":"{{routePartId}}","description":"<p>ID of the unloading routepart. Optional. Int </p>\n","type":"text"}]},"url":"{{host}}/a/v2/rest/public/arrivedAtUncharge","description":"<p>Allows carriers to confirm arrival at unloading.</p>\n<p>(!) IMPORTANT: although this endpoint is intended for carriers, shippers can also use it.</p>\n<p>If the car has the GPS tracker, the event is triggered automatically upon arrival.</p>\n<p>By default, if no routepart ID is passed, the first non-complete unloading is taken as object to work on, meaning that if no routepart ID is passed, the endpoint will trigger arrival at exactly next non-complete unloading.</p>\n<p>If routepart ID is passed, the endpoint will mark all preceding routeparts as complete and trigger change in the passed one.</p>\n<ul>\n<li>If successful, you will receive the success message, state of the route will change, unloading will be marked as \"started\"</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>The routepart ID can be found in GET singleRoute.</p>\n","urlObject":{"path":["a","v2","rest","public","arrivedAtUncharge"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"09d18f7c-e7c4-4c76-8036-545bfd20c50f","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Periodic of the route. Required. String","type":"text"},{"key":"routepart","value":"{{routePartId}}","description":"ID of the unloading routepart. Optional. Int ","type":"text","disabled":true}]},"url":{"raw":"{{host}}/a/v2/rest/public/arrivedAtUncharge","host":["{{host}}"],"path":["a","v2","rest","public","arrivedAtUncharge"],"query":[{"key":"","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Tue, 27 Jun 2023 15:03:46 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"d87df77b-a956-43c5-bd65-b7fce64d087c","name":"Not allowed to update this route","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"required","type":"text"},{"key":"routepart","value":"","type":"text"}]},"url":{"raw":"{{host}}/a/v2/rest/public/arrivedAtUncharge","host":["{{host}}"],"path":["a","v2","rest","public","arrivedAtUncharge"],"query":[{"key":"","value":"","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Tue, 27 Jun 2023 14:46:48 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"You don’t have permission to view this route.\",\n    \"relogin\": false\n}"},{"id":"320cc145-2779-4f7f-a650-12e87b61f597","name":"Route is not in propert state","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Periodic of the route. Required. String","type":"text"},{"key":"routepart","value":"{{routePartId}}","description":"ID of the unloading routepart. Optional. Int ","type":"text"}]},"url":"{{host}}/a/v2/rest/public/arrivedAtUncharge"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Tue, 27 Jun 2023 15:04:16 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"The route status doesn’t allow this operaction.\",\n    \"relogin\": false\n}"},{"id":"253f5b38-c138-4174-95dc-eaa8986360fa","name":"Bad routepart ID passed","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Periodic of the route. Required. String","type":"text"},{"key":"routepart","value":"{{routePartId}}","description":"ID of the unloading routepart. Optional. Int ","type":"text"}]},"url":{"raw":"{{host}}/a/v2/rest/public/arrivedAtUncharge","host":["{{host}}"],"path":["a","v2","rest","public","arrivedAtUncharge"],"query":[{"key":"","value":"","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Tue, 27 Jun 2023 15:05:26 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Point not found\",\n    \"relogin\": false\n}"}],"_postman_id":"9934c5d8-bd20-45cb-a1f1-f5b9f8f0557c"},{"name":"Arrived At Customs","id":"cdffe000-8150-4216-b555-57c34c5e67ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT access token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"<p>String. Required. The identifier of the route.</p>\n","type":"text"},{"key":"routepart","value":"{{routepartId}}","description":"<p>Int. Optional. Specific routepart of type \"customs\" (3).</p>\n","type":"text"}]},"url":"{{host}}/a/v2/rest/public/arrivedAtCustoms","description":"<p>This endpoint is utilized to notify the system when a shipment has arrived at customs. It is crucial for tracking and logistics management purposes. Upon receiving this notification, the system will update the status of the shipment accordingly and trigger proper auxiliary events.</p>\n<ul>\n<li>if successful you will confirm that the vehicle arrived at customs</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>Upon successful receipt of the notification, the system will update the status of the shipment accordingly. If the required 'route' parameter is missing, the system will return an error response indicating the missing parameter.</p>\n","urlObject":{"path":["a","v2","rest","public","arrivedAtCustoms"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"31b289ea-20dd-4449-bcbc-b00a343f5c84","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"String. Required. The identifier of the route.","type":"text"},{"key":"routepart","value":"{{routepartId}}","description":"Int. Optional. Specific routepart of type \"customs\" (3).","type":"text","disabled":true}]},"url":"{{host}}/a/v2/rest/public/arrivedAtCustoms"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"11d9f381-9761-4d9f-828c-d8f0ea0cc91a","name":"Invalid token","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"String. Required. The identifier of the route.","type":"text"},{"key":"routepart","value":"{{routepartId}}","description":"Int. Optional. Specific routepart of type \"customs\" (3).","type":"text"}]},"url":"{{host}}/a/v2/rest/public/arrivedAtCustoms"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token is invalid\",\n    \"relogin\": true\n}"},{"id":"78bd3d17-3bab-4255-b4a7-0ffb657a37c3","name":"Token not supplied","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"String. Required. The identifier of the route.","type":"text"},{"key":"routepart","value":"{{routepartId}}","description":"Int. Optional. Specific routepart of type \"customs\" (3).","type":"text"}]},"url":"{{host}}/a/v2/rest/public/arrivedAtCustoms"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Mon, 18 Mar 2024 10:38:17 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token is required\",\n    \"relogin\": true\n}"}],"_postman_id":"cdffe000-8150-4216-b555-57c34c5e67ae"},{"name":"Arrived At Border","id":"d2c6fb6f-c954-4cca-ad4c-2c4f26269e00","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT access token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"<p>String. Required. The identifier of the route.</p>\n","type":"text"},{"key":"routepart","value":"{{routepartId}}","description":"<p>Int. Optional. Specific routepart of type \"border\" (3).</p>\n","type":"text"}]},"url":"{{host}}/a/v2/rest/public/arrivedAtBorder","description":"<p>This endpoint is used to notify the system when a vehicle has arrived at the border checkpoint. Upon receiving this notification, the system updates the status of the shipment accordingly.</p>\n<ul>\n<li>if success you will update route status and confirm that the vehicle arrived at the border</li>\n<li>if unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","arrivedAtBorder"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"ddf4c716-cc21-4d7f-8e1f-8ddee447960e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"String. Required. The identifier of the route.","type":"text"},{"key":"routepart","value":"{{routepartId}}","description":"Int. Optional. Specific routepart of type \"botder\" (3).","type":"text","disabled":true}]},"url":"{{host}}/a/v2/rest/public/arrivedAtBorder"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"f5a860ee-a73e-47e6-8dd8-a61e5ec496a8","name":"Invalid route number","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"","description":"String. Required. The identifier of the route.","type":"text"},{"key":"routepart","value":"","description":"Int. Optional. Specific routepart of type \"botder\" (3).","type":"text"}]},"url":{"raw":"{{host}}/a/v2/rest/public/arrivedAtBorder","host":["{{host}}"],"path":["a","v2","rest","public","arrivedAtBorder"],"query":[{"key":"","value":"","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"You don’t have permission to view this route.\",\n    \"relogin\": false\n}"},{"id":"9f398df2-ac4d-402f-9de5-1415f8773033","name":"Invalid token","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"String. Required. The identifier of the route.","type":"text"},{"key":"routepart","value":"{{routepartId}}","description":"Int. Optional. Specific routepart of type \"border\" (3).","type":"text"}]},"url":"{{host}}/a/v2/rest/public/arrivedAtBorder"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token is invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"d2c6fb6f-c954-4cca-ad4c-2c4f26269e00"},{"name":"Border Complete","id":"d6ed8224-e917-46e4-9801-0cd1c1c0bec3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT access token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"<p>String. Required. The identifier of the route.</p>\n","type":"text"},{"key":"routepart","value":"{{routepartId}}","description":"<p>Int. Optional. Specific routepart of type \"border\" (3).</p>\n","type":"text"}]},"url":"{{host}}/a/v2/rest/public/borderComplete","description":"<p>This endpoint is used to notify the system when a vehicle has passed the border checkpoint. Upon receiving this event, the system updates the status of the shipment accordingly.</p>\n<ul>\n<li>if success you will update route status and confirm that the vehicle passed the border checkpoint</li>\n<li>if unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>The routepart ID can be found in GET singleRoute</p>\n","urlObject":{"path":["a","v2","rest","public","borderComplete"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"4139760d-0c2e-46a8-bc36-dd6cc0e4f9a2","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"String. Required. The identifier of the route.","type":"text"},{"key":"routepart","value":"{{routepartId}}","description":"Int. Optional. Specific routepart of type \"border\" (3).","type":"text","disabled":true}]},"url":"{{host}}/a/v2/rest/public/borderComplete"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"8fe842c2-8262-4bdc-8b1f-0900e503f9c9","name":"Invalid route number","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"String. Required. The identifier of the route.","type":"text"},{"key":"routepart","value":"{{routepartId}}","description":"Int. Optional. Specific routepart of type \"border\" (3).","type":"text","disabled":true}]},"url":"{{host}}/a/v2/rest/public/borderComplete"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"You don’t have permission to view this route.\",\n    \"relogin\": false\n}"},{"id":"3672332b-eccf-4d9c-a4ed-4a8e68fc4ac8","name":"Invalid token","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"String. Required. The identifier of the route.","type":"text"},{"key":"routepart","value":"{{routepartId}}","description":"Int. Optional. Specific routepart of type \"border\" (3).","type":"text"}]},"url":"{{host}}/a/v2/rest/public/borderComplete"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"d6ed8224-e917-46e4-9801-0cd1c1c0bec3"},{"name":"Сustoms Complete","id":"159339ab-7760-4f82-84e3-bc84de6ef6fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT access token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"<p>String. Required. The identifier of the route.</p>\n","type":"text"},{"key":"routepart","value":"{{routepartId}}","description":"<p>Int. Optional. Specific routepart of type \"customs\" (3).</p>\n","type":"text"}]},"url":"{{host}}/a/v2/rest/public/customsComplete","description":"<p>This endpoint is utilized to notify the system when a shipment has passed the customs. It is crucial for tracking and logistics management purposes. Upon receiving this notification, the system will update the status of the shipment accordingly and trigger proper auxiliary events.</p>\n<ul>\n<li>if successful you will confirm that the vehicle is passed the customs</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>Upon successful receipt of the notification, the system will update the status of the shipment accordingly. If the required 'route' parameter is missing, the system will return an error response indicating the missing parameter.</p>\n","urlObject":{"path":["a","v2","rest","public","customsComplete"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"30d53ec4-ebd5-4cee-8b01-658086d1aede","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"String. Required. The identifier of the route.","type":"text"},{"key":"routepart","value":"{{routepartId}}","description":"Int. Optional. Specific routepart of type \"customs\" (3).","type":"text"}]},"url":"{{host}}/a/v2/rest/public/customsComplete"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"9121d6c7-6b68-45a8-90c0-33f19fbc1101","name":"Invalid route number","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"String. Required. The identifier of the route.","type":"text"},{"key":"routepart","value":"{{routepartId}}","description":"Int. Optional. Specific routepart of type \"customs\" (3).","type":"text"}]},"url":"{{host}}/a/v2/rest/public/customsComplete"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"You don’t have permission to view this route.\",\n    \"relogin\": false\n}"},{"id":"1fc69ac5-2606-487e-9c8d-987899e894bf","name":"Invalid token","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"String. Required. The identifier of the route.","type":"text"},{"key":"routepart","value":"{{routepartId}}","description":"Int. Optional. Specific routepart of type \"customs\" (3).","type":"text"}]},"url":"{{host}}/a/v2/rest/public/customsComplete"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token is invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"159339ab-7760-4f82-84e3-bc84de6ef6fa"},{"name":"Confirm Uncharge POD","id":"b157afe3-c0b1-412e-9924-190b93ff5cc1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT access token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"route\":\"117-01-25\",\n    \"routepart\":111391782,\n    \"products\":[\n        {\n            \"order\":\"0987689984\",\n            \"product\":196,\n            \"quantity\":12,\n            \"variance\": \"A009\"\n        },\n        {\n            \"order\":\"0987689984\",\n            \"product\":197,\n            \"quantity\":2.2,\n            \"variance\": \"A009\"\n        }\n    ],\n    \"lateness\":\"0013\",\n    \"comment\":\"Rem aliquam veritatis nemo neque deleniti.\"\n\n}"},"url":"{{host}}/a/v2/rest/public/confirmUnchargePOD","description":"<p>This endpoint is utilized to notify the system when a shipment has passed the customs. It is crucial for tracking and logistics management purposes. Upon receiving this notification, the system will update the status of the shipment accordingly and trigger proper auxiliary events.</p>\n<ul>\n<li>if successful you will confirm that the vehicle is passed the customs</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>Upon successful receipt of the notification, the system will update the status of the shipment accordingly. If the required 'route' parameter is missing, the system will return an error response indicating the missing parameter.</p>\n","urlObject":{"path":["a","v2","rest","public","confirmUnchargePOD"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"eff12d9e-37f6-4008-9e1d-a0925f233153","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"String. Required. The identifier of the route.","type":"text"},{"key":"routepart","value":"{{routepartId}}","description":"Int. Optional. Specific routepart of type \"customs\" (3).","type":"text"}]},"url":"{{host}}/a/v2/rest/public/customsComplete"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"4a1b4928-2870-4b53-ae18-242e7a462897","name":"Invalid route number","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"String. Required. The identifier of the route.","type":"text"},{"key":"routepart","value":"{{routepartId}}","description":"Int. Optional. Specific routepart of type \"customs\" (3).","type":"text"}]},"url":"{{host}}/a/v2/rest/public/customsComplete"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"You don’t have permission to view this route.\",\n    \"relogin\": false\n}"},{"id":"8914af97-cc42-4894-bff1-57af54d0d9b9","name":"Invalid token","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"String. Required. The identifier of the route.","type":"text"},{"key":"routepart","value":"{{routepartId}}","description":"Int. Optional. Specific routepart of type \"customs\" (3).","type":"text"}]},"url":"{{host}}/a/v2/rest/public/customsComplete"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token is invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"b157afe3-c0b1-412e-9924-190b93ff5cc1"},{"name":"Change Border Crossing Town","event":[{"listen":"test","script":{"id":"f0fb7949-3694-499f-ab26-8ee8147035d9","exec":["var response = pm.response.json();\r","var isContains = pm.response.text();\r","\r","if (response.status === 200 || response.status === 'success'){\r","\r","}else {\r","    pm.test(\"Response have relogin an Boolean\", () => {\r","        pm.expect(response.relogin).to.be.an('boolean');\r","    });\r","}"],"type":"text/javascript","packages":{}}}],"id":"069f173d-e156-4960-aadf-f95de7d0d4d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT access token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"<p>String. Required. The identifier of the route.</p>\n","type":"text"},{"key":"borders","value":"[\n   {\n      \"routepartId\":111384004,\n      \"townId\":7\n   },\n   {\n      \"routepartId\":111384006,\n      \"townId\":9\n  }\n]","description":"<p>Required. Object.</p>\n","type":"text"}]},"url":"{{host}}/a/v2/rest/public/changeBorderCrossingTown","description":"<p>Allows carriers to change the border crossing points for international routes.</p>\n<p>Routepart ID's can be found in the GET singleRoute and the town ID's can be found in GET getTown</p>\n<ul>\n<li>if successful you will have successfully changed the border crossings</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body must be in form-data format and contain the following fields:</p>\n<ul>\n<li><strong>route</strong> (string): The identifier of the route. (Required)</li>\n<li><strong>borders</strong> (array of objects): An array of objects where each object contains a <code>routepartId</code> and a <code>townId</code>. (Required)</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","changeBorderCrossingTown"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"5c684f3a-82fa-4517-bd03-c1eaa794b033","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"String. Required. The identifier of the route.","type":"text"},{"key":"borders","value":"[\n   {\n      \"routepartId\":111557676,\n      \"townId\":1707\n   }\n]","description":"Required. Object.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/changeBorderCrossingTown"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"cb14556c-33db-4a40-805c-302612b238b8","name":"Invalid token","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"String. Required. The identifier of the route.","type":"text"},{"key":"borders","value":"[\n   {\n      \"routepartId\":111384004,\n      \"townId\":7\n   },\n   {\n      \"routepartId\":111384006,\n      \"townId\":9\n  }\n]","description":"Required. Object.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/changeBorderCrossingTown"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token is invalid\",\n    \"relogin\": true\n}"},{"id":"3900963d-2d09-4921-90af-cd71df0ba8c6","name":"Route in wrong status","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"String. Required. The identifier of the route.","type":"text"},{"key":"borders","value":"[\n   {\n      \"routepartId\":111384004,\n      \"townId\":7\n   },\n   {\n      \"routepartId\":111384006,\n      \"townId\":9\n  }\n]","description":"Required. Object.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/changeBorderCrossingTown"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"The route status doesn’t allow specifying a border crossing.\",\n    \"relogin\": false\n}"}],"_postman_id":"069f173d-e156-4960-aadf-f95de7d0d4d7"},{"name":"Not interested","event":[{"listen":"test","script":{"id":"f3163a9c-89e8-4e54-b2b9-aa3b49c00d79","exec":["var response = pm.response.json();\r","var isContains = pm.response.text();\r","\r","if (response.status === 200 || response.status === 'success'){\r","\r","}else {\r","    pm.test(\"Response have relogin an Boolean\", () => {\r","        pm.expect(response.relogin).to.be.an('boolean');\r","    });\r","}"],"type":"text/javascript"}}],"id":"e746a684-53de-4a23-8dac-a7e7a76a05c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"<p>Required string. Id of the route/tender.</p>\n","type":"text"}]},"url":"{{host}}/a/v2/rest/public/notInterested","description":"<p>This endpoint marks the route so the route will no longer appear in vacant routes. This endpoint can be used only with routes with status 2.</p>\n<ul>\n<li>if successful you won't see the passed route in vacant routes</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>(!) NOTE: Can be only used by carriers</p>\n","urlObject":{"path":["a","v2","rest","public","notInterested"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"646af8e7-7cc5-4504-870e-b6bcadddd459","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Required string. Id of the tender.","type":"text"}]},"url":{"raw":"{{host}}/a/v2/rest/public/notInterested","host":["{{host}}"],"path":["a","v2","rest","public","notInterested"],"query":[{"key":"","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"bcbf5804-a0be-4104-a487-e7c1abc51dbe","name":"No such route","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Required string. Id of the tender.","type":"text"}]},"url":"{{host}}/a/v2/rest/public/notInterested"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Route not found\",\n    \"relogin\": false\n}"},{"id":"dd74b653-cbe9-4a44-a32a-7df35767936b","name":"Invalid token","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Required string. Id of the tender.","type":"text"}]},"url":{"raw":"{{host}}/a/v2/rest/public/notInterested","host":["{{host}}"],"path":["a","v2","rest","public","notInterested"],"query":[{"key":"","value":"","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token is invalid\",\n    \"relogin\": true\n}"},{"id":"a8d401db-49df-422e-b85c-9bfdb1709b7d","name":"Request from shipper","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"Required string. Id of the tender.","type":"text"}]},"url":{"raw":"{{host}}/a/v2/rest/public/notInterested","host":["{{host}}"],"path":["a","v2","rest","public","notInterested"],"query":[{"key":"","value":"","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Action not available\",\n    \"relogin\": false\n}"}],"_postman_id":"e746a684-53de-4a23-8dac-a7e7a76a05c7"},{"name":"Post Deny Route","id":"1e0994fb-884f-4911-9ca3-6f9a9ba2e19c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{\n \"periodic\":\"1111-01-26\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/denyRoute","urlObject":{"path":["a","v2","rest","public","denyRoute"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1e0994fb-884f-4911-9ca3-6f9a9ba2e19c"}],"id":"db7d409e-9097-48cb-abad-31918c39f376","_postman_id":"db7d409e-9097-48cb-abad-31918c39f376","description":""}],"id":"056a5fb8-dbea-4a26-a1e4-80ac3d2ce32c","description":"<p>A list of endpoints intended specifically for carriers. These allow to react on vacant routes, offer deliveries, place bids, deny deliveries, confirm delivery checkpoints, etc.</p>\n","_postman_id":"056a5fb8-dbea-4a26-a1e4-80ac3d2ce32c"},{"name":"Tender specific","item":[{"name":"Get Price Quotes","event":[{"listen":"test","script":{"id":"65127f52-a1e8-4e29-be49-ebf6d86e0951","exec":["var response = pm.response.json();\r","\r","if (response.status === 200 || response.status === 'success') {\r","    pm.test(\"data in response matches array\", () => {\r","        pm.expect(response.data).to.be.an(\"array\");\r","    });\r","\r","} else {\r","    pm.test(\"Response have relogin an Boolean\", () => {\r","        pm.expect(response.relogin).to.be.an('boolean');\r","    });\r","};\r","\r",""],"type":"text/javascript"}}],"id":"9182bbef-c29a-49ac-8d82-1f77b7c8c92c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getPricequotes?route={{singleTender}}","description":"<p>Returns the list of price quotes of carriers</p>\n<ul>\n<li>if successful you will receive all carrier price offers</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>(!) NOTE: If requested by carrier, authors of other quotes will be hidden</p>\n","urlObject":{"path":["a","v2","rest","public","getPricequotes"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Required int. Periodic of the tender</p>\n","type":"text/plain"},"key":"route","value":"{{singleTender}}"}],"variable":[]}},"response":[{"id":"f32ad890-ed60-4b2e-ade4-ff7d58b11217","name":"Success (shipper)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getPricequotes?route={{singleTender}}","host":["{{host}}"],"path":["a","v2","rest","public","getPricequotes"],"query":[{"key":"route","value":"{{singleTender}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 660531,\n            \"loadqoute\": 1,\n            \"pricequote\": 100,\n            \"isMine\": false,\n            \"moment\": \"2021-07-13 12:55:31\",\n            \"cancelled\": false,\n            \"remark\": null,\n            \"pricefor\": \"ride\",\n            \"oppositeoffer\": null,\n            \"operatorNatcomid\": \"8888888888\",\n            \"operatorTitle\": \"Бюро Логистики\",\n            \"operatorHash\": \"4a61c8e0a19190120128f998b4d42582\"\n        }\n    ]\n}"},{"id":"75aaa6bc-4f34-44d6-9062-3c6ad4d9b9cb","name":"Success (carrier)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getPricequotes?route={{singleTender}}","host":["{{host}}"],"path":["a","v2","rest","public","getPricequotes"],"query":[{"key":"route","value":"{{singleTender}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 657728,\n            \"loadqoute\": 1,\n            \"pricequote\": 15000,\n            \"isMine\": true,\n            \"moment\": \"2021-07-06 15:11:32\",\n            \"cancelled\": false,\n            \"remark\": null,\n            \"pricefor\": \"ride\",\n            \"oppositeoffer\": null\n        }\n    ]\n}"},{"id":"0445ecf1-7c58-46be-984d-83e5effb7060","name":"Not allowed (carrier did not participate, or shipper requested other company's tender)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getPricequotes?route={{singleTender}}","host":["{{host}}"],"path":["a","v2","rest","public","getPricequotes"],"query":[{"key":"route","value":"{{singleTender}}"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"You don’t have permission to view this route.\",\n    \"relogin\": false\n}"},{"id":"670916eb-1bcd-4a7c-a5bd-1c49e96d3590","name":"Invalid token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getPricequotes?route={{singleTender}}","host":["{{host}}"],"path":["a","v2","rest","public","getPricequotes"],"query":[{"key":"route","value":"{{singleTender}}","description":"Required int. Id of the route"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token is invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"9182bbef-c29a-49ac-8d82-1f77b7c8c92c"},{"name":"Get Tender Quote Steps","event":[{"listen":"test","script":{"id":"a82e3ad8-71d8-4262-b0c5-dd557187111e","exec":["var response = pm.response.json();","var isContains = pm.response.text();","if (response.status === 200 || response.status === 'success') {","    pm.test(\"data in response matches array\", () => {","        pm.expect(response.data).to.be.an(\"array\");","    });","","   ","","} else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","   ","};",""],"type":"text/javascript"}}],"id":"28c746cd-8ffe-4a6b-a6ef-e88471b15b3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getTenderSteps?route={{tenderPeriodic}}","description":"<p>Returns the list of prices that can be offered by the carrier</p>\n<ul>\n<li>if successful you will receive all prices that can be offered by the shipper</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>(!) NOTE: Endpoint works only on tenders with fixed price quote decrement set by the shipper</p>\n","urlObject":{"path":["a","v2","rest","public","getTenderSteps"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Required int. Periodic of the tender</p>\n","type":"text/plain"},"key":"route","value":"{{tenderPeriodic}}"}],"variable":[]}},"response":[{"id":"efe90ba3-8dfd-4b48-addb-47457af5034d","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"},{"key":"Extend","value":"dictionary","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getTenderSteps?route={{tenderPeriodic}}","host":["{{host}}"],"path":["a","v2","rest","public","getTenderSteps"],"query":[{"key":"route","value":"{{tenderPeriodic}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        100000,\n        99000,\n        98000,\n        97000,\n        96000,\n        95000,\n        94000,\n        93000,\n        92000,\n        91000,\n        90000,\n        89000,\n        88000,\n        87000,\n        86000,\n        85000,\n        84000,\n        83000,\n        82000,\n        81000,\n        80000,\n        79000,\n        78000,\n        77000,\n        76000,\n        75000,\n        74000,\n        73000,\n        72000,\n        71000,\n        70000,\n        69000,\n        68000,\n        67000,\n        66000,\n        65000,\n        64000,\n        63000,\n        62000,\n        61000,\n        60000,\n        59000,\n        58000,\n        57000,\n        56000,\n        55000,\n        54000,\n        53000,\n        52000,\n        51000,\n        50000,\n        49000,\n        48000,\n        47000,\n        46000,\n        45000,\n        44000,\n        43000,\n        42000,\n        41000,\n        40000,\n        39000,\n        38000,\n        37000,\n        36000,\n        35000,\n        34000,\n        33000,\n        32000,\n        31000,\n        30000,\n        29000,\n        28000,\n        27000,\n        26000,\n        25000,\n        24000,\n        23000,\n        22000,\n        21000,\n        20000,\n        19000,\n        18000,\n        17000,\n        16000,\n        15000,\n        14000,\n        13000,\n        12000,\n        11000,\n        10000,\n        9000,\n        8000,\n        7000,\n        6000,\n        5000,\n        4000,\n        3000,\n        2000,\n        1000\n    ]\n}"},{"id":"a8e2cbdf-4337-4d18-a44c-856d5f1d0ec7","name":"Not allowed to view the route","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"},{"key":"Extend","value":"dictionary","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getTenderSteps?route={{tenderPeriodic}}","host":["{{host}}"],"path":["a","v2","rest","public","getTenderSteps"],"query":[{"key":"route","value":"{{tenderPeriodic}}"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"You don’t have permission to view this route.\",\n    \"relogin\": false\n}"},{"id":"c2a45c23-b9bf-4c81-b7f7-0b07d01a9ffe","name":"Invalid token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"},{"key":"Extend","value":"dictionary","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getTenderSteps?route={{tenderPeriodic}}","host":["{{host}}"],"path":["a","v2","rest","public","getTenderSteps"],"query":[{"key":"route","value":"{{tenderPeriodic}}"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token is required\",\n    \"relogin\": true\n}"}],"_postman_id":"28c746cd-8ffe-4a6b-a6ef-e88471b15b3c"},{"name":"Get Routes Within Tender","event":[{"listen":"test","script":{"id":"0bb46c10-44b3-4933-bcc0-f7d07465d7a9","exec":["var response = pm.response.json();\r","\r","if (response.status === 200 || response.status === 'success') {\r","    pm.test(\"data in response matches array\", () => {\r","        pm.expect(response.data).to.be.an(\"array\");\r","    });\r","\r","} else {\r","    pm.test(\"Response have relogin an Boolean\", () => {\r","        pm.expect(response.relogin).to.be.an('boolean');\r","    });\r","};\r","\r",""],"type":"text/javascript"}}],"id":"cf2e4410-fad4-4ee0-ba99-54799595ea4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getTenderChildren?tenderPeriodic={{tenderPeriodic}}","description":"<p>Returns the list of routes of the single tender</p>\n<ul>\n<li>if successful you will receive all routes of the single tender</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getTenderChildren"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Required int. Periodic of the tender</p>\n","type":"text/plain"},"key":"tenderPeriodic","value":"{{tenderPeriodic}}"}],"variable":[]}},"response":[{"id":"b795fc75-3128-4cc6-9028-feee70cdd120","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getTenderChildren?tenderPeriodic={{tenderPeriodic}}","host":["{{host}}"],"path":["a","v2","rest","public","getTenderChildren"],"query":[{"key":"tenderPeriodic","value":"{{tenderPeriodic}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 649656,\n            \"periodic\": \"4184-06-21\",\n            \"routestatus\": 2,\n            \"needAttention\": true\n        }\n    ]\n}"},{"id":"337a11ce-79fc-4bc6-9e42-8164b1be6963","name":"Invalid tender passed","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getTenderChildren?tenderPeriodic={{tenderPeriodic}}","host":["{{host}}"],"path":["a","v2","rest","public","getTenderChildren"],"query":[{"key":"tenderPeriodic","value":"{{tenderPeriodic}}"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Route not found\",\n    \"relogin\": false\n}"},{"id":"95e30309-48ab-4917-a12d-a94443d88ce8","name":"Invalid token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getTenderChildren?tenderPeriodic={{tenderPeriodic}}","host":["{{host}}"],"path":["a","v2","rest","public","getTenderChildren"],"query":[{"key":"tenderPeriodic","value":"{{tenderPeriodic}}"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token is invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"cf2e4410-fad4-4ee0-ba99-54799595ea4b"},{"name":"Get Tender Results","event":[{"listen":"test","script":{"id":"288d164d-0f67-448c-ba6d-756c6ca8f542","exec":["var response = pm.response.json();","var isContains = pm.response.text();","","if (response.status === 200 || response.status === 'success'){","    pm.test(\"data in response matches object\", () => {","        pm.expect(response.data).to.be.an(\"object\");","    });","","    pm.test(\"data in response contains a completeRoutes\", () => {","        pm.expect(isContains).to.include(\"routes\");","    });","","    pm.test(\"completeRoutes in response matches array\", () => {","        pm.expect(response.data.routes).to.be.an(\"array\");","    });","","    pm.test(\"data in response contains a page\", () => {","        pm.expect(isContains).to.include(\"page\");","    });","","    pm.test(\"data in response contains a perPage\", () => {","        pm.expect(isContains).to.include(\"perPage\");","    });","","    pm.test(\"data in response contains a total\", () => {","        pm.expect(isContains).to.include(\"total\");","    });","","    pm.test(\"data in response contains a offset\", () => {","        pm.expect(isContains).to.include(\"offset\");","    });","","}else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","}","","",""],"type":"text/javascript"}}],"id":"5dcd05d0-fc09-4ab3-abfa-85927b13d098","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getTenderResults?route={{singleRoute}}","description":"<p>Returns the results of the tender. Results include bids, winner, etc.</p>\n<p>(!) NOTE: If you are a carrier you won't see names of other carriers but you will see their bids.</p>\n<ul>\n<li>if successful you will receive all the results of the tender</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getTenderResults"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Single tender periodic</p>\n","type":"text/plain"},"key":"route","value":"{{singleRoute}}"}],"variable":[]}},"response":[{"id":"8de13489-a263-4821-a4b2-dcb75ae79fed","name":"Success (by carrier)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getTenderResults?route={{singleRoute}}","host":["{{host}}"],"path":["a","v2","rest","public","getTenderResults"],"query":[{"key":"route","value":"{{singleRoute}}","description":"Single tender periodic"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"allQuotes\": [\n            {\n                \"periodic\": 1,\n                \"datetime\": \"2016-08-18 23:12:11\",\n                \"pricequote\": \"3450.00 UAH\",\n                \"loadquote\": \"3 rides\",\n                \"provider\": \"\"\n            },\n            {\n                \"periodic\": 2,\n                \"datetime\": \"2016-08-18 23:12:11\",\n                \"pricequote\": \"3300.00 UAH\",\n                \"loadquote\": \"5 rides\",\n                \"provider\": \"Super carrier\"\n            },\n            {\n                \"periodic\": 3,\n                \"datetime\": \"2016-08-18 23:12:11\",\n                \"pricequote\": \"3250.00 UAH\",\n                \"loadquote\": \"5 rides\",\n                \"provider\": \"\"\n            }\n        ],\n        \"bargainResults\": [\n            {\n                \"periodic\": 1,\n                \"provider\": \"\",\n                \"pricequote\": \"3250.00\",\n                \"winnerquote\": \"5 rides\",\n                \"contractnumber\": \"556-1/ZA5%\",\n                \"contractdate\": \"2012-08-01\"\n            },\n            {\n                \"periodic\": 2,\n                \"provider\": \"Super carrier\",\n                \"pricequote\": \"3300.00\",\n                \"winnerquote\": \"5 rides\",\n                \"contractnumber\": \"336/1\",\n                \"contractdate\": \"2016-08-18\"\n            }\n        ]\n    }\n}"},{"id":"f9741278-688e-4d31-aca2-ccfc70b6833a","name":"Not allowed to view the results of the tender","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getTenderResults?route={{singleRoute}}","host":["{{host}}"],"path":["a","v2","rest","public","getTenderResults"],"query":[{"key":"route","value":"{{singleRoute}}","description":"Single tender periodic"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"You don’t have permission to view this route.\",\n    \"relogin\": false\n}"},{"id":"014557a5-8b2d-4acc-8359-56bbbb81bd2d","name":"Success (by shipper)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getTenderResults?route={{singleRoute}}","host":["{{host}}"],"path":["a","v2","rest","public","getTenderResults"],"query":[{"key":"route","value":"{{singleRoute}}","description":"Single tender periodic"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"allQuotes\": [\n            {\n                \"periodic\": 1,\n                \"datetime\": \"2024-10-08 13:03:16\",\n                \"pricequote\": \"1000.00 €\",\n                \"loadquote\": \"3 rides\",\n                \"provider\": \"Seifert Sp.Z.o.p\"\n            }\n        ],\n        \"bargainResults\": [\n            {\n                \"periodic\": 1,\n                \"provider\": \"Seifert Sp.Z.o.p\",\n                \"pricequote\": \"1000.00\",\n                \"winnerquote\": \"3 rides\",\n                \"contractnumber\": \"1112\",\n                \"contractdate\": \"2024-08-01\",\n                \"providerNatcomid\": \"6700356984\",\n                \"providerHash\": \"316f03860bf020ffa01c50dceaaf7ba2\",\n                \"paymenttype\": \"Cash\"\n            }\n        ],\n        \"tenderData\": {\n            \"periodic\": \"31-10-24\",\n            \"complete\": \"0\",\n            \"numWinners\": 1,\n            \"currency\": \"€\",\n            \"startPrice\": \"0.00\",\n            \"totalCount\": \"3.00\",\n            \"tender_deadline\": \"2024-10-09 00:00:00\",\n            \"nds\": \"1\",\n            \"paymenttype\": \"Cash\"\n        }\n    }\n}"}],"_postman_id":"5dcd05d0-fc09-4ab3-abfa-85927b13d098"}],"id":"c78ecffe-d201-4de9-bd3c-7268958605cf","description":"<p>A list of generic tender-specific endpoints for both carriers and shippers.</p>\n","_postman_id":"c78ecffe-d201-4de9-bd3c-7268958605cf"},{"name":"Listings","item":[{"name":"Routes","item":[{"name":"Get Route Groups","event":[{"listen":"test","script":{"id":"25abdbd4-6142-4408-b3af-5be45f9b4264","exec":["var response = pm.response.json();\r","\r","if (response.status === 200 || response.status === 'success') {\r","    pm.test(\"data in response matches array\", () => {\r","         pm.expect(response.data).to.be.an(\"array\");\r","    });\r","} else {\r","    pm.test(\"Response have relogin an Boolean\", () => {\r","        pm.expect(response.relogin).to.be.an('boolean');\r","    });\r","   \r","};\r","\r",""],"type":"text/javascript"}}],"id":"acf51498-82e6-4be6-ac26-2d7341b4b397","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getRouteGroups","description":"<p>The method shows the groups or categories of routes available to the user.</p>\n<p>The contents differ depending on the type of user (shipper or carrier).</p>\n<p>For each group of routes, you also receive a list of route stati, that are included in this group. This list is useful when you have to sort the list of routes through groups.</p>\n<ul>\n<li>If successful, you will receive the groups of routes available to you</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getRouteGroups"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"e1f25090-4b3b-4263-b6b1-85684ee014bf","name":"Success for carrier","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/getRouteGroups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 33,\n            \"title\": \"Commit to doing jobs\",\n            \"stati\": [\n                4\n            ],\n            \"aux\": null\n        },\n        {\n            \"id\": 31,\n            \"title\": \"Available\",\n            \"stati\": [\n                2\n            ],\n            \"aux\": \"{\\\"api\\\":\\\"required\\\"}\"\n        },\n        {\n            \"id\": 34,\n            \"title\": \"In progress\",\n            \"stati\": [\n                5,\n                6,\n                8,\n                9,\n                11,\n                15,\n                16,\n                17\n            ],\n            \"aux\": \"{\\\"api\\\":\\\"required\\\"}\"\n        },\n        {\n            \"id\": 36,\n            \"title\": \"At loading\",\n            \"stati\": [\n                7\n            ],\n            \"aux\": \"{\\\"api\\\":\\\"required\\\"}\"\n        },\n        {\n            \"id\": 41,\n            \"title\": \"At unloading\",\n            \"stati\": [\n                10\n            ],\n            \"aux\": \"{\\\"api\\\":\\\"required\\\"}\"\n        },\n        {\n            \"id\": 32,\n            \"title\": \"Vehicle in ratification\",\n            \"stati\": [\n                3\n            ],\n            \"aux\": null\n        },\n        {\n            \"id\": 65,\n            \"title\": \"Complete\",\n            \"stati\": [\n                14\n            ],\n            \"aux\": \"{\\\"api\\\":\\\"required\\\"}\"\n        }\n    ]\n}"},{"id":"8acfb68f-1ed6-4706-ae15-a411aa3295d2","name":"Success for shipper","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/getRouteGroups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 24,\n            \"title\": \"Ratify carrier\",\n            \"stati\": [\n                3\n            ],\n            \"aux\": \"{\\\"api\\\":\\\"required\\\"}\"\n        },\n        {\n            \"id\": 27,\n            \"title\": \"Confirm loading\",\n            \"stati\": [\n                7\n            ],\n            \"aux\": \"{\\\"api\\\":\\\"required\\\"}\"\n        },\n        {\n            \"id\": 29,\n            \"title\": \"Confirm unloading\",\n            \"stati\": [\n                10\n            ],\n            \"aux\": \"{\\\"api\\\":\\\"required\\\"}\"\n        },\n        {\n            \"id\": 26,\n            \"title\": \"In progress\",\n            \"stati\": [\n                5,\n                8,\n                15,\n                16\n            ],\n            \"aux\": null\n        },\n        {\n            \"id\": 23,\n            \"title\": \"Open\",\n            \"stati\": [\n                2\n            ],\n            \"aux\": null\n        },\n        {\n            \"id\": 25,\n            \"title\": \"Waiting for confirmation\",\n            \"stati\": [\n                4\n            ],\n            \"aux\": \"{\\\"api\\\":\\\"required\\\"}\"\n        },\n        {\n            \"id\": 42,\n            \"title\": \"Complete\",\n            \"stati\": [\n                11,\n                14\n            ],\n            \"aux\": null\n        }\n    ]\n}"},{"id":"d17516dd-3d8e-4695-94ff-5d6dc61c3518","name":"Invalid token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"ru","type":"text"}],"url":"{{host}}/a/v2/rest/public/getRouteGroups"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"acf51498-82e6-4be6-ac26-2d7341b4b397"},{"name":"Get Route Actions","event":[{"listen":"test","script":{"id":"25abdbd4-6142-4408-b3af-5be45f9b4264","exec":["var response = pm.response.json();\r","\r","if (response.status === 200 || response.status === 'success') {\r","    pm.test(\"data in response matches array\", () => {\r","         pm.expect(response.data).to.be.an(\"array\");\r","    });\r","} else {\r","    pm.test(\"Response have relogin an Boolean\", () => {\r","        pm.expect(response.relogin).to.be.an('boolean');\r","    });\r","   \r","};\r","\r",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"418b9897-345e-4bea-9a21-f866ce7102e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getRouteActions?routes={{routePeriodic1}},{{routePeriodic2}}","description":"<p>The method shows the available actions for the routes or tenders.</p>\n<p>For each group of routes, you also receive a list of route stati, messages, and actions.</p>\n<ul>\n<li><p>If successful, you will receive the groups of routes available to you</p>\n</li>\n<li><p>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</p>\n</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getRouteActions"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Required. String. Comma-separated lisf of routes or tenders.</p>\n","type":"text/plain"},"key":"routes","value":"{{routePeriodic1}},{{routePeriodic2}}"}],"variable":[]}},"response":[{"id":"2f42907f-19c9-4bae-be97-e8ac3a7bf15a","name":"Invalid token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"ru","type":"text"}],"url":"{{host}}/a/v2/rest/public/getRouteGroups"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"418b9897-345e-4bea-9a21-f866ce7102e6"},{"name":"Get Active Routes","event":[{"listen":"test","script":{"id":"a6d5e30b-2075-4f91-97f4-da00989f50ee","exec":[" var response = pm.response.json();","","if (response.status === 200 || response.status === 'success') {","    pm.test(\"data in response matches array\", () => {","         pm.expect(response.data).to.be.an(\"array\");","    });","} else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","   ","};"],"type":"text/javascript"}}],"id":"eda3fe96-263e-4a3a-9da5-33fff98b1d8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getAllRoutes","description":"<p>Get the list of routes which are active at the moment for current user.</p>\n<p>The list excludes complete/finished routes.</p>\n<p>The list includes the routes that are:</p>\n<ul>\n<li>vacant and available for delivery</li>\n<li>in progress by current user</li>\n<li>in negotiation phase</li>\n</ul>\n<p>For each route within the list, you get id, route periodic (public route id), status and attention flag.</p>\n<ul>\n<li>If successful, you will receive the list of routes</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>(!) NOTE: routes with <code>needAttention</code> set to <code>true</code> are the ones in which immediate action is required by the user.</p>\n","urlObject":{"path":["a","v2","rest","public","getAllRoutes"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"b601460e-a82a-49fe-aab1-4c35e286b055","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/getAllRoutes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 99341,\n            \"periodic\": \"33-11-24\",\n            \"routestatus\": 4,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99366,\n            \"periodic\": \"57-11-24\",\n            \"routestatus\": 4,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": \"56-11-24\"\n        },\n        {\n            \"id\": 99398,\n            \"periodic\": \"3-12-24\",\n            \"routestatus\": 4,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99400,\n            \"periodic\": \"5-12-24\",\n            \"routestatus\": 17,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99725,\n            \"periodic\": \"175-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": true,\n            \"tenderparent\": \"171-01-25\"\n        },\n        {\n            \"id\": 99668,\n            \"periodic\": \"118-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": true,\n            \"tenderparent\": \"37-01-25\"\n        },\n        {\n            \"id\": 99669,\n            \"periodic\": \"119-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": true,\n            \"tenderparent\": \"37-01-25\"\n        },\n        {\n            \"id\": 99576,\n            \"periodic\": \"26-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": true,\n            \"tenderparent\": \"25-01-25\"\n        },\n        {\n            \"id\": 99574,\n            \"periodic\": \"24-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": true,\n            \"tenderparent\": \"21-01-25\"\n        },\n        {\n            \"id\": 99560,\n            \"periodic\": \"10-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": true,\n            \"tenderparent\": \"5-01-25\"\n        },\n        {\n            \"id\": 99557,\n            \"periodic\": \"7-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": true,\n            \"tenderparent\": \"5-01-25\"\n        },\n        {\n            \"id\": 99556,\n            \"periodic\": \"6-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": true,\n            \"tenderparent\": \"5-01-25\"\n        },\n        {\n            \"id\": 99554,\n            \"periodic\": \"4-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": true,\n            \"tenderparent\": \"3-01-25\"\n        },\n        {\n            \"id\": 99706,\n            \"periodic\": \"156-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99705,\n            \"periodic\": \"155-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99701,\n            \"periodic\": \"151-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99697,\n            \"periodic\": \"147-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99626,\n            \"periodic\": \"76-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99627,\n            \"periodic\": \"77-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99628,\n            \"periodic\": \"78-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99629,\n            \"periodic\": \"79-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99630,\n            \"periodic\": \"80-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99631,\n            \"periodic\": \"81-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99632,\n            \"periodic\": \"82-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99633,\n            \"periodic\": \"83-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99634,\n            \"periodic\": \"84-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99635,\n            \"periodic\": \"85-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99642,\n            \"periodic\": \"92-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99643,\n            \"periodic\": \"93-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99644,\n            \"periodic\": \"94-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99645,\n            \"periodic\": \"95-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99646,\n            \"periodic\": \"96-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99647,\n            \"periodic\": \"97-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99648,\n            \"periodic\": \"98-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99649,\n            \"periodic\": \"99-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99650,\n            \"periodic\": \"100-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99651,\n            \"periodic\": \"101-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99652,\n            \"periodic\": \"102-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99653,\n            \"periodic\": \"103-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99654,\n            \"periodic\": \"104-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99655,\n            \"periodic\": \"105-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99656,\n            \"periodic\": \"106-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99657,\n            \"periodic\": \"107-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99658,\n            \"periodic\": \"108-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99659,\n            \"periodic\": \"109-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99660,\n            \"periodic\": \"110-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99661,\n            \"periodic\": \"111-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99662,\n            \"periodic\": \"112-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99663,\n            \"periodic\": \"113-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99664,\n            \"periodic\": \"114-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99665,\n            \"periodic\": \"115-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99666,\n            \"periodic\": \"116-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99667,\n            \"periodic\": \"117-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99670,\n            \"periodic\": \"120-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99671,\n            \"periodic\": \"121-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99672,\n            \"periodic\": \"122-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99673,\n            \"periodic\": \"123-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99674,\n            \"periodic\": \"124-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99675,\n            \"periodic\": \"125-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99676,\n            \"periodic\": \"126-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99677,\n            \"periodic\": \"127-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99678,\n            \"periodic\": \"128-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99679,\n            \"periodic\": \"129-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99714,\n            \"periodic\": \"164-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99712,\n            \"periodic\": \"162-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99713,\n            \"periodic\": \"163-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99710,\n            \"periodic\": \"160-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99708,\n            \"periodic\": \"158-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99703,\n            \"periodic\": \"153-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99696,\n            \"periodic\": \"146-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99694,\n            \"periodic\": \"144-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99693,\n            \"periodic\": \"143-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99623,\n            \"periodic\": \"73-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99620,\n            \"periodic\": \"70-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99621,\n            \"periodic\": \"71-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99622,\n            \"periodic\": \"72-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99617,\n            \"periodic\": \"67-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99618,\n            \"periodic\": \"68-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99619,\n            \"periodic\": \"69-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99614,\n            \"periodic\": \"64-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99615,\n            \"periodic\": \"65-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99616,\n            \"periodic\": \"66-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99611,\n            \"periodic\": \"61-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99612,\n            \"periodic\": \"62-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99613,\n            \"periodic\": \"63-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99608,\n            \"periodic\": \"58-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99609,\n            \"periodic\": \"59-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99610,\n            \"periodic\": \"60-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99605,\n            \"periodic\": \"55-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99606,\n            \"periodic\": \"56-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99607,\n            \"periodic\": \"57-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99602,\n            \"periodic\": \"52-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99603,\n            \"periodic\": \"53-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99604,\n            \"periodic\": \"54-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99599,\n            \"periodic\": \"49-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99600,\n            \"periodic\": \"50-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99601,\n            \"periodic\": \"51-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99596,\n            \"periodic\": \"46-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99597,\n            \"periodic\": \"47-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99598,\n            \"periodic\": \"48-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99593,\n            \"periodic\": \"43-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99594,\n            \"periodic\": \"44-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99595,\n            \"periodic\": \"45-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99590,\n            \"periodic\": \"40-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99591,\n            \"periodic\": \"41-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99592,\n            \"periodic\": \"42-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99589,\n            \"periodic\": \"39-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99637,\n            \"periodic\": \"87-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99585,\n            \"periodic\": \"35-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99583,\n            \"periodic\": \"33-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99544,\n            \"periodic\": \"109-12-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99542,\n            \"periodic\": \"107-12-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99516,\n            \"periodic\": \"92-12-24\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99511,\n            \"periodic\": \"87-12-24\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99512,\n            \"periodic\": \"88-12-24\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99513,\n            \"periodic\": \"89-12-24\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99515,\n            \"periodic\": \"91-12-24\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99518,\n            \"periodic\": \"94-12-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99451,\n            \"periodic\": \"32-12-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99450,\n            \"periodic\": \"31-12-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99448,\n            \"periodic\": \"29-12-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99447,\n            \"periodic\": \"28-12-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99436,\n            \"periodic\": \"17-12-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99437,\n            \"periodic\": \"18-12-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99438,\n            \"periodic\": \"19-12-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99439,\n            \"periodic\": \"20-12-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99440,\n            \"periodic\": \"21-12-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99441,\n            \"periodic\": \"22-12-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99442,\n            \"periodic\": \"23-12-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99443,\n            \"periodic\": \"24-12-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99444,\n            \"periodic\": \"25-12-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99445,\n            \"periodic\": \"26-12-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99432,\n            \"periodic\": \"14-12-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99431,\n            \"periodic\": \"13-12-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99430,\n            \"periodic\": \"12-12-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99429,\n            \"periodic\": \"11-12-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99428,\n            \"periodic\": \"10-12-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99335,\n            \"periodic\": \"27-11-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99328,\n            \"periodic\": \"20-11-24\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": true,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99325,\n            \"periodic\": \"19-11-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99317,\n            \"periodic\": \"13-11-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99304,\n            \"periodic\": \"87-10-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99259,\n            \"periodic\": \"47-10-24\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": true,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99260,\n            \"periodic\": \"48-10-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99261,\n            \"periodic\": \"49-10-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99264,\n            \"periodic\": \"52-10-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99250,\n            \"periodic\": \"38-10-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99209,\n            \"periodic\": \"8-10-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99188,\n            \"periodic\": \"66-09-24\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99175,\n            \"periodic\": \"57-09-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99171,\n            \"periodic\": \"53-09-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99145,\n            \"periodic\": \"30-09-24\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99140,\n            \"periodic\": \"28-09-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99138,\n            \"periodic\": \"26-09-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99137,\n            \"periodic\": \"25-09-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99134,\n            \"periodic\": \"22-09-24\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99131,\n            \"periodic\": \"19-09-24\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99132,\n            \"periodic\": \"20-09-24\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99133,\n            \"periodic\": \"21-09-24\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99130,\n            \"periodic\": \"18-09-24\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99129,\n            \"periodic\": \"17-09-24\",\n            \"routestatus\": 2,\n            \"needAttention\": true,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99106,\n            \"periodic\": \"54-08-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99104,\n            \"periodic\": \"52-08-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99103,\n            \"periodic\": \"51-08-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99102,\n            \"periodic\": \"50-08-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99101,\n            \"periodic\": \"49-08-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99100,\n            \"periodic\": \"48-08-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99099,\n            \"periodic\": \"47-08-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99098,\n            \"periodic\": \"46-08-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99097,\n            \"periodic\": \"45-08-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99085,\n            \"periodic\": \"33-08-24\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99681,\n            \"periodic\": \"131-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99683,\n            \"periodic\": \"133-01-25\",\n            \"routestatus\": 2,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99399,\n            \"periodic\": \"4-12-24\",\n            \"routestatus\": 3,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99545,\n            \"periodic\": \"110-12-24\",\n            \"routestatus\": 3,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99547,\n            \"periodic\": \"112-12-24\",\n            \"routestatus\": 3,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99108,\n            \"periodic\": \"56-08-24\",\n            \"routestatus\": 5,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99123,\n            \"periodic\": \"12-09-24\",\n            \"routestatus\": 5,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": \"11-09-24\"\n        },\n        {\n            \"id\": 99139,\n            \"periodic\": \"27-09-24\",\n            \"routestatus\": 5,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99265,\n            \"periodic\": \"53-10-24\",\n            \"routestatus\": 5,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99322,\n            \"periodic\": \"16-11-24\",\n            \"routestatus\": 5,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99323,\n            \"periodic\": \"17-11-24\",\n            \"routestatus\": 5,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99337,\n            \"periodic\": \"29-11-24\",\n            \"routestatus\": 5,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99372,\n            \"periodic\": \"63-11-24\",\n            \"routestatus\": 5,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": \"62-11-24\"\n        },\n        {\n            \"id\": 99378,\n            \"periodic\": \"69-11-24\",\n            \"routestatus\": 5,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": \"68-11-24\"\n        },\n        {\n            \"id\": 99395,\n            \"periodic\": \"80-11-24\",\n            \"routestatus\": 5,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99396,\n            \"periodic\": \"81-11-24\",\n            \"routestatus\": 5,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99724,\n            \"periodic\": \"174-01-25\",\n            \"routestatus\": 5,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99303,\n            \"periodic\": \"86-10-24\",\n            \"routestatus\": 8,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99514,\n            \"periodic\": \"90-12-24\",\n            \"routestatus\": 8,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99200,\n            \"periodic\": \"74-09-24\",\n            \"routestatus\": 11,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99202,\n            \"periodic\": \"76-09-24\",\n            \"routestatus\": 11,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99086,\n            \"periodic\": \"34-08-24\",\n            \"routestatus\": 10,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99198,\n            \"periodic\": \"72-09-24\",\n            \"routestatus\": 10,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        },\n        {\n            \"id\": 99301,\n            \"periodic\": \"84-10-24\",\n            \"routestatus\": 10,\n            \"needAttention\": false,\n            \"bookedbyclient\": null,\n            \"tenderparent\": null\n        }\n    ]\n}"},{"id":"229201aa-dace-4cc3-a130-8f5a34fa29f6","name":"Token is required","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getAllRoutes"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"eda3fe96-263e-4a3a-9da5-33fff98b1d8a"},{"name":"Get My Active Routes","event":[{"listen":"test","script":{"id":"b95f2111-7659-4239-bad2-9efc1c978bed","exec":["  var response = pm.response.json();\r","\r","if (response.status === 200 || response.status === 'success') {\r","    pm.test(\"data in response matches array\", () => {\r","         pm.expect(response.data).to.be.an(\"array\");\r","    });\r","} else {\r","    pm.test(\"Response have relogin an Boolean\", () => {\r","        pm.expect(response.relogin).to.be.an('boolean');\r","    });\r","   \r","};"],"type":"text/javascript"}}],"id":"27261783-1fd3-446e-be4f-46068f8c7689","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getMyRoutes","description":"<p>Get the list of routes which are active at the moment for you current user. This method is different from <code>getAllRoutes</code> because it returns the routes for a particular user:</p>\n<ul>\n<li>if you represent a shipper, the method will return routes that the current user had published</li>\n<li>if you represent a carrier, the method will return routes in which the current user had offered truck</li>\n</ul>\n<p>This method, as opposed to <code>getAllRoutes</code> is useful when there are more than manager working in the company.</p>\n<p>The list excludes complete/finished routes.</p>\n<p>The list includes the routes that are:</p>\n<ul>\n<li>vacant and available for delivery</li>\n<li>in progress</li>\n<li>in negotiation phase</li>\n</ul>\n<p>For each route within the list, you get id, route periodic (public route id), status and attention flag.</p>\n<ul>\n<li>If successful, you will receive the list of routes</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>(!) NOTE: routes with <code>needAttention</code> set to <code>true</code> are the ones in which immediate action is required by the user.</p>\n","urlObject":{"path":["a","v2","rest","public","getMyRoutes"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"1b63aa31-883c-4ba0-af8c-177df3cbf9b8","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getMyRoutes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 120162,\n            \"periodic\": \"461-05-20\",\n            \"routestatus\": 6,\n            \"needAttention\": true\n        },\n        {\n            \"id\": 120331,\n            \"periodic\": \"610-05-20\",\n            \"routestatus\": 6,\n            \"needAttention\": true\n        },\n        {\n            \"id\": 124004,\n            \"periodic\": \"1257-03-21\",\n            \"routestatus\": 6,\n            \"needAttention\": true\n        },\n        {\n            \"id\": 124246,\n            \"periodic\": \"1457-03-21\",\n            \"routestatus\": 6,\n            \"needAttention\": true\n        },\n        {\n            \"id\": 138702,\n            \"periodic\": \"1228-08-21\",\n            \"routestatus\": 6,\n            \"needAttention\": true\n        },\n        {\n            \"id\": 119329,\n            \"periodic\": \"549-04-20\",\n            \"routestatus\": 3,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 119334,\n            \"periodic\": \"554-04-20\",\n            \"routestatus\": 3,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 129435,\n            \"periodic\": \"1513-06-21\",\n            \"routestatus\": 7,\n            \"needAttention\": false\n        }\n    ]\n}"},{"id":"59a3f239-219f-4dd8-8ad4-4cdd81bf59c5","name":"Get my active routes","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getMyRoutes"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"27261783-1fd3-446e-be4f-46068f8c7689"},{"name":"Get Complete Routes","event":[{"listen":"test","script":{"id":"0cc1edf5-9623-4c48-9cee-853729452df3","exec":["var response = pm.response.json();","var isContains = pm.response.text();","","if (response.status === 200 || response.status === 'success'){","    pm.test(\"data in response matches object\", () => {","        pm.expect(response.data).to.be.an(\"object\");","    });","","    pm.test(\"data in response contains a completeRoutes\", () => {","        pm.expect(isContains).to.include(\"completeRoutes\");","    });","","    pm.test(\"completeRoutes in response matches array\", () => {","        pm.expect(response.data.completeRoutes).to.be.an(\"array\");","    });","","    pm.test(\"data in response contains a page\", () => {","        pm.expect(isContains).to.include(\"page\");","    });","","    pm.test(\"data in response contains a perPage\", () => {","        pm.expect(isContains).to.include(\"perPage\");","    });","","    pm.test(\"data in response contains a total\", () => {","        pm.expect(isContains).to.include(\"total\");","    });","","    pm.test(\"data in response contains a offset\", () => {","        pm.expect(isContains).to.include(\"offset\");","    });","","}else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","}","","",""],"type":"text/javascript"}}],"id":"7aed1281-42da-4b47-8521-1501a8817959","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getCompleteRoutes?page={{page}}&perPage={{routesPerPage}}","description":"<p>Returns the list of the complete routes of your company.</p>\n<ul>\n<li>if successful you will receive the list of the current company/your completed routes </li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getCompleteRoutes"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Optional, int. Default = 1. Number of the page</p>\n","type":"text/plain"},"key":"page","value":"{{page}}"},{"description":{"content":"<p>Optional, int. Default = 100 (max). Amount of the routes per page</p>\n","type":"text/plain"},"key":"perPage","value":"{{routesPerPage}}"}],"variable":[]}},"response":[{"id":"9684da96-0e23-4e16-837b-d4cea9386768","name":"Success (Shipper)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCompleteRoutes?page={{page}}&perPage={{routesPerPage}}","host":["{{host}}"],"path":["a","v2","rest","public","getCompleteRoutes"],"query":[{"key":"page","value":"{{page}}","description":"Optional, int. Default = 1. Number of the page"},{"key":"perPage","value":"{{routesPerPage}}","description":"Optional, int. Default = 100 (max). Amount of the routes per page"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"page\": 1,\n        \"perPage\": 100,\n        \"total\": 614,\n        \"offset\": 0,\n        \"routes\": [\n            {\n                \"id\": 125618,\n                \"periodic\": \"1229-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 125617,\n                \"periodic\": \"1228-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 125616,\n                \"periodic\": \"1227-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 125450,\n                \"periodic\": \"1079-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 125395,\n                \"periodic\": \"1027-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 125394,\n                \"periodic\": \"1026-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 125284,\n                \"periodic\": \"928-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 125245,\n                \"periodic\": \"895-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 125240,\n                \"periodic\": \"890-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 125213,\n                \"periodic\": \"863-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 125190,\n                \"periodic\": \"841-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 125184,\n                \"periodic\": \"835-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 125182,\n                \"periodic\": \"833-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 125174,\n                \"periodic\": \"827-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 125074,\n                \"periodic\": \"733-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 125069,\n                \"periodic\": \"728-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 125067,\n                \"periodic\": \"726-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 125053,\n                \"periodic\": \"712-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 124992,\n                \"periodic\": \"664-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 124974,\n                \"periodic\": \"648-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 124721,\n                \"periodic\": \"425-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 124600,\n                \"periodic\": \"323-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 124599,\n                \"periodic\": \"322-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 124444,\n                \"periodic\": \"181-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 124443,\n                \"periodic\": \"180-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 124397,\n                \"periodic\": \"140-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 124390,\n                \"periodic\": \"133-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 124389,\n                \"periodic\": \"132-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 124320,\n                \"periodic\": \"75-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 124319,\n                \"periodic\": \"74-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 124282,\n                \"periodic\": \"37-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 124280,\n                \"periodic\": \"35-04-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 124097,\n                \"periodic\": \"1332-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 124096,\n                \"periodic\": \"1331-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 124014,\n                \"periodic\": \"1267-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 123758,\n                \"periodic\": \"1035-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 123756,\n                \"periodic\": \"1033-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 123701,\n                \"periodic\": \"978-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 123700,\n                \"periodic\": \"977-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 123652,\n                \"periodic\": \"935-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 123651,\n                \"periodic\": \"934-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 123457,\n                \"periodic\": \"758-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 123451,\n                \"periodic\": \"752-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 123449,\n                \"periodic\": \"750-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 123448,\n                \"periodic\": \"749-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 123257,\n                \"periodic\": \"582-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 123252,\n                \"periodic\": \"577-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 123251,\n                \"periodic\": \"576-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 123047,\n                \"periodic\": \"390-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122929,\n                \"periodic\": \"290-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122928,\n                \"periodic\": \"289-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122835,\n                \"periodic\": \"202-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122832,\n                \"periodic\": \"199-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122830,\n                \"periodic\": \"197-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122770,\n                \"periodic\": \"138-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122769,\n                \"periodic\": \"137-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122718,\n                \"periodic\": \"86-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122717,\n                \"periodic\": \"85-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122710,\n                \"periodic\": \"78-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122709,\n                \"periodic\": \"77-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122708,\n                \"periodic\": \"76-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122707,\n                \"periodic\": \"75-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122677,\n                \"periodic\": \"52-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122675,\n                \"periodic\": \"50-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122655,\n                \"periodic\": \"30-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122652,\n                \"periodic\": \"27-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122644,\n                \"periodic\": \"19-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122634,\n                \"periodic\": \"9-03-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122621,\n                \"periodic\": \"442-07-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122618,\n                \"periodic\": \"441-07-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122493,\n                \"periodic\": \"317-07-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122480,\n                \"periodic\": \"304-07-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122474,\n                \"periodic\": \"298-07-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122385,\n                \"periodic\": \"209-07-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122340,\n                \"periodic\": \"173-07-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122229,\n                \"periodic\": \"73-07-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122163,\n                \"periodic\": \"7-07-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122095,\n                \"periodic\": \"1200-06-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122038,\n                \"periodic\": \"1152-06-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 122032,\n                \"periodic\": \"1146-06-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 121876,\n                \"periodic\": \"990-06-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 121866,\n                \"periodic\": \"980-06-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 121795,\n                \"periodic\": \"918-06-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 121771,\n                \"periodic\": \"894-06-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 121762,\n                \"periodic\": \"885-06-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 121704,\n                \"periodic\": \"836-06-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 121695,\n                \"periodic\": \"827-06-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 121578,\n                \"periodic\": \"723-06-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 121501,\n                \"periodic\": \"655-06-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 121500,\n                \"periodic\": \"654-06-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 121469,\n                \"periodic\": \"630-06-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 121467,\n                \"periodic\": \"628-06-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 121458,\n                \"periodic\": \"619-06-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 121447,\n                \"periodic\": \"611-06-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 121329,\n                \"periodic\": \"502-06-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 121187,\n                \"periodic\": \"369-06-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 121017,\n                \"periodic\": \"199-06-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 120784,\n                \"periodic\": \"5-06-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 120728,\n                \"periodic\": \"941-05-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 120688,\n                \"periodic\": \"903-05-20\",\n                \"routestatus\": 11\n            }\n        ]\n    }\n}"},{"id":"c5ede196-8924-4c27-88df-d297634adfc7","name":"Success (Carrier)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCompleteRoutes?page={{page}}&perPage={{routesPerPage}}","host":["{{host}}"],"path":["a","v2","rest","public","getCompleteRoutes"],"query":[{"key":"page","value":"{{page}}","description":"Optional, int. Default = 1. Number of the page"},{"key":"perPage","value":"{{routesPerPage}}","description":"Optional, int. Default = 100 (max). Amount of the routes per page"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"page\": 1,\n        \"perPage\": 100,\n        \"total\": 40,\n        \"offset\": 0,\n        \"routes\": [\n            {\n                \"id\": 660420,\n                \"periodic\": \"4145-07-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 659247,\n                \"periodic\": \"3042-07-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 659244,\n                \"periodic\": \"3039-07-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 659241,\n                \"periodic\": \"3036-07-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 658216,\n                \"periodic\": \"2073-07-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 657939,\n                \"periodic\": \"1806-07-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 656070,\n                \"periodic\": \"46-07-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 655673,\n                \"periodic\": \"9839-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 655589,\n                \"periodic\": \"9758-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 655251,\n                \"periodic\": \"9429-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 654382,\n                \"periodic\": \"8620-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 653070,\n                \"periodic\": \"7395-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 651707,\n                \"periodic\": \"6133-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 651681,\n                \"periodic\": \"6111-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 650670,\n                \"periodic\": \"5155-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 650666,\n                \"periodic\": \"5151-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 650398,\n                \"periodic\": \"4892-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 650360,\n                \"periodic\": \"4854-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 649127,\n                \"periodic\": \"3680-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 649117,\n                \"periodic\": \"3670-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 648859,\n                \"periodic\": \"3429-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 648776,\n                \"periodic\": \"3354-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 648640,\n                \"periodic\": \"3226-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 648639,\n                \"periodic\": \"3225-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 648596,\n                \"periodic\": \"3188-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 648584,\n                \"periodic\": \"3176-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 648533,\n                \"periodic\": \"3132-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 648096,\n                \"periodic\": \"2737-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 648088,\n                \"periodic\": \"2729-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 647631,\n                \"periodic\": \"2318-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 647598,\n                \"periodic\": \"2286-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 647452,\n                \"periodic\": \"2147-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 647435,\n                \"periodic\": \"2132-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 647420,\n                \"periodic\": \"2119-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 647410,\n                \"periodic\": \"2109-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 647403,\n                \"periodic\": \"2102-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 646984,\n                \"periodic\": \"1706-06-21\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 565729,\n                \"periodic\": \"8665-10-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 565688,\n                \"periodic\": \"8624-10-20\",\n                \"routestatus\": 11\n            },\n            {\n                \"id\": 533793,\n                \"periodic\": \"1468-08-20\",\n                \"routestatus\": 11\n            }\n        ]\n    }\n}"},{"id":"841f0fa1-7892-4c6f-af82-85e2e62bb591","name":"Invalid token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCompleteRoutes?page={{page}}&perPage={{routesPerPage}}","host":["{{host}}"],"path":["a","v2","rest","public","getCompleteRoutes"],"query":[{"key":"page","value":"{{page}}","description":"Optional, int. Default = 1. Number of the page"},{"key":"perPage","value":"{{routesPerPage}}","description":"Optional, int. Default = 100 (max). Amount of the routes per page"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token is invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"7aed1281-42da-4b47-8521-1501a8817959"},{"name":"Get Hidden Routes","event":[{"listen":"test","script":{"id":"0cc1edf5-9623-4c48-9cee-853729452df3","exec":["var response = pm.response.json();","var isContains = pm.response.text();","","if (response.status === 200 || response.status === 'success'){","    pm.test(\"data in response matches object\", () => {","        pm.expect(response.data).to.be.an(\"object\");","    });","","    pm.test(\"data in response contains a completeRoutes\", () => {","        pm.expect(isContains).to.include(\"completeRoutes\");","    });","","    pm.test(\"completeRoutes in response matches array\", () => {","        pm.expect(response.data.completeRoutes).to.be.an(\"array\");","    });","","    pm.test(\"data in response contains a page\", () => {","        pm.expect(isContains).to.include(\"page\");","    });","","    pm.test(\"data in response contains a perPage\", () => {","        pm.expect(isContains).to.include(\"perPage\");","    });","","    pm.test(\"data in response contains a total\", () => {","        pm.expect(isContains).to.include(\"total\");","    });","","    pm.test(\"data in response contains a offset\", () => {","        pm.expect(isContains).to.include(\"offset\");","    });","","}else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","}","","",""],"type":"text/javascript","packages":{}}}],"id":"0b7c17ac-794d-4d42-a3c2-8a0fa480654d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getNotInterested","description":"<p>Returns the list of the complete routes of your company.</p>\n<ul>\n<li>if successful you will receive the list of the current company/your completed routes </li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getNotInterested"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"18858baa-a126-4c8d-9901-0c49983422e3","name":"Invalid token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCompleteRoutes?page={{page}}&perPage={{routesPerPage}}","host":["{{host}}"],"path":["a","v2","rest","public","getCompleteRoutes"],"query":[{"key":"page","value":"{{page}}","description":"Optional, int. Default = 1. Number of the page"},{"key":"perPage","value":"{{routesPerPage}}","description":"Optional, int. Default = 100 (max). Amount of the routes per page"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token is invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"0b7c17ac-794d-4d42-a3c2-8a0fa480654d"}],"id":"07b0ed91-ca3e-473c-92b9-16e6f1b5f8e5","_postman_id":"07b0ed91-ca3e-473c-92b9-16e6f1b5f8e5","description":""},{"name":"Tenders","item":[{"name":"Get Tender Groups","event":[{"listen":"test","script":{"id":"b50ecea9-4969-4962-aef4-296302056450","exec":[" var response = pm.response.json();\r"," \r","if (response.status === 200 || response.status === 'success') {\r","    pm.test(\"data in response matches array\", () => {\r","         pm.expect(response.data).to.be.an(\"array\");\r","    });\r","} else {\r","    pm.test(\"Response have relogin an Boolean\", () => {\r","        pm.expect(response.relogin).to.be.an('boolean');\r","    });\r","   \r","};"],"type":"text/javascript"}}],"id":"5d89decc-d30f-434f-b62f-6d1f6d46c07b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getTenderGroups","description":"<p>The endpoint shows the groups or categories of tenders available to the user.</p>\n<p>The contents differ depending on the type of user (shipper or carrier).</p>\n<p>For each group of tenders, you also receive a list of tenders stati, that are included in this group. This list is useful when you have to sort the list of tenders through groups.</p>\n<ul>\n<li>If successful, you will receive the groups of tenders available to you</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getTenderGroups"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"4130022c-5411-4ae5-b789-d6de51a31f7a","name":"Success for shipper","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/getTenderGroups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1,\n            \"title\": \"Текущие\",\n            \"aux\": {\n                \"api\": \"required\"\n            },\n            \"stati\": [\n                91\n            ]\n        },\n        {\n            \"id\": 2,\n            \"title\": \"Время истекло\",\n            \"aux\": {\n                \"api\": \"required\"\n            },\n            \"stati\": [\n                null\n            ]\n        },\n        {\n            \"id\": 3,\n            \"title\": \"Выигранные\",\n            \"aux\": {\n                \"api\": \"required\"\n            },\n            \"stati\": [\n                92\n            ]\n        },\n        {\n            \"id\": 8,\n            \"title\": \"Запланированные\",\n            \"aux\": {\n                \"api\": \"required\"\n            },\n            \"stati\": [\n                null\n            ]\n        },\n        {\n            \"id\": 6,\n            \"title\": \"Архив\",\n            \"aux\": {\n                \"api\": \"required\"\n            },\n            \"stati\": [\n                0\n            ]\n        }\n    ]\n}"},{"id":"df826c97-72f1-447f-95ed-366a27093f2c","name":"Success for carrier","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/getTenderGroups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1,\n            \"title\": \"Текущие\",\n            \"aux\": {\n                \"api\": \"required\"\n            },\n            \"stati\": [\n                91\n            ]\n        },\n        {\n            \"id\": 3,\n            \"title\": \"Выигранные\",\n            \"aux\": {\n                \"api\": \"required\"\n            },\n            \"stati\": [\n                92\n            ]\n        },\n        {\n            \"id\": 4,\n            \"title\": \"В которых я участвовал\",\n            \"aux\": {\n                \"api\": \"required\"\n            },\n            \"stati\": [\n                93\n            ]\n        },\n        {\n            \"id\": 6,\n            \"title\": \"Архив\",\n            \"aux\": {\n                \"api\": \"required\"\n            },\n            \"stati\": [\n                0\n            ]\n        }\n    ]\n}"},{"id":"9636e4b0-7633-4259-ba0e-403d674f3413","name":"Get tender groups","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"ru","type":"text"}],"url":"{{host}}/a/v2/rest/public/getTenderGroups"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Токен недействителен\",\n    \"relogin\": true\n}"}],"_postman_id":"5d89decc-d30f-434f-b62f-6d1f6d46c07b"},{"name":"Get All Tenders","event":[{"listen":"test","script":{"id":"7f2a1b40-a1be-48ae-8546-c43c5bb89b53","exec":["var response = pm.response.json();\r","\r","if (response.status === 200 || response.status === 'success') {\r","    pm.test(\"data in response matches array\", () => {\r","         pm.expect(response.data).to.be.an(\"array\");\r","    });\r","} else {\r","    pm.test(\"Response have relogin an Boolean\", () => {\r","        pm.expect(response.relogin).to.be.an('boolean');\r","    });\r","   \r","};"],"type":"text/javascript","packages":{}}}],"id":"c887d844-eba5-4abc-a04a-05479151b882","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getAllTenders","description":"<p>Get the list of tenders which are active at the moment for current user.</p>\n<p>For shipper, the list excludes complete/finished tenders. For carrier, complete tenders are included.</p>\n<p>The list includes the tenders that are:</p>\n<ul>\n<li><p>vacant and available for bids</p>\n</li>\n<li><p>in active bargain</p>\n</li>\n<li><p>bargain complete and implementation in progress</p>\n</li>\n<li><p>implemented ones</p>\n</li>\n</ul>\n<p>For each tender within the list, you get id, route periodic (public route id), status and attention flag.</p>\n<ul>\n<li><p>If successful, you will receive the list of tenders</p>\n</li>\n<li><p>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</p>\n</li>\n</ul>\n<p>(!) NOTE: tenders with <code>needAttention</code> set to <code>true</code> are the ones in which immediate action is required by the user.</p>\n","urlObject":{"path":["a","v2","rest","public","getAllTenders"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"e9db3172-3863-42f4-a891-fe2c6024a0af","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getAllTenders"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 129653,\n            \"periodic\": \"1716-06-21\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 129638,\n            \"periodic\": \"1701-06-21\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 128974,\n            \"periodic\": \"1083-06-21\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 128374,\n            \"periodic\": \"564-06-21\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 128242,\n            \"periodic\": \"449-06-21\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 127456,\n            \"periodic\": \"1501-05-21\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 119352,\n            \"periodic\": \"572-04-20\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 99050,\n            \"periodic\": \"100-03-19\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 95614,\n            \"periodic\": \"28-09-16\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 91042,\n            \"periodic\": \"338-09-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 89847,\n            \"periodic\": \"1486-06-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 88970,\n            \"periodic\": \"624-06-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 85749,\n            \"periodic\": \"1324-05-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 84866,\n            \"periodic\": \"460-05-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 84856,\n            \"periodic\": \"452-05-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 84833,\n            \"periodic\": \"429-05-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 84782,\n            \"periodic\": \"378-05-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 84731,\n            \"periodic\": \"329-05-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 81406,\n            \"periodic\": \"542-04-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 79160,\n            \"periodic\": \"778-03-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 78657,\n            \"periodic\": \"301-03-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 74863,\n            \"periodic\": \"1934-01-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 70443,\n            \"periodic\": \"1873-12-14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 68544,\n            \"periodic\": \"4650-11-14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 67123,\n            \"periodic\": \"3259-11-14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 58459,\n            \"periodic\": \"2057-09-14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 54109,\n            \"periodic\": \"1110-08-14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 52450,\n            \"periodic\": \"3525-07-14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 46190,\n            \"periodic\": \"612_06_14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 45130,\n            \"periodic\": \"2566_05_14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 44106,\n            \"periodic\": \"1557_05_14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 43962,\n            \"periodic\": \"1414_05_14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 42428,\n            \"periodic\": \"772_05_14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 34611,\n            \"periodic\": \"618_05_14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 25912,\n            \"periodic\": \"2050_04_14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 24057,\n            \"periodic\": \"381_04_14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 15179,\n            \"periodic\": \"341_10_13\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 127406,\n            \"periodic\": \"1452-05-21\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 95614,\n            \"periodic\": \"28-09-16\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 91042,\n            \"periodic\": \"338-09-15\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 79334,\n            \"periodic\": \"952-03-15\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 74238,\n            \"periodic\": \"1351-01-15\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 73770,\n            \"periodic\": \"890-01-15\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 70443,\n            \"periodic\": \"1873-12-14\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 57288,\n            \"periodic\": \"899-09-14\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 54109,\n            \"periodic\": \"1110-08-14\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 53656,\n            \"periodic\": \"676-08-14\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 49590,\n            \"periodic\": \"695-07-14\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 47141,\n            \"periodic\": \"1558_06_14\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 76061,\n            \"periodic\": \"674-02-15\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 46118,\n            \"periodic\": \"540_06_14\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 24388,\n            \"periodic\": \"562_04_14\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        }\n    ]\n}"},{"id":"8df5597c-e518-4acf-b8c4-b10f38a4a211","name":"Invalid token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getAllTenders"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Токен недействителен\",\n    \"relogin\": true\n}"}],"_postman_id":"c887d844-eba5-4abc-a04a-05479151b882"},{"name":"Get Current Tenders","event":[{"listen":"test","script":{"id":"7f2a1b40-a1be-48ae-8546-c43c5bb89b53","exec":["var response = pm.response.json();\r","\r","if (response.status === 200 || response.status === 'success') {\r","    pm.test(\"data in response matches array\", () => {\r","         pm.expect(response.data).to.be.an(\"array\");\r","    });\r","} else {\r","    pm.test(\"Response have relogin an Boolean\", () => {\r","        pm.expect(response.relogin).to.be.an('boolean');\r","    });\r","   \r","};"],"type":"text/javascript","packages":{}}}],"id":"eb56f154-73cb-48f3-9e61-0f02056feeb6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getCurrentTenders","description":"<p>Get the list of tenders which are active at the moment for current user.</p>\n<p>For shipper, the list excludes complete/finished tenders. For carrier, complete tenders are included.</p>\n<p>The list includes the tenders that are:</p>\n<ul>\n<li><p>vacant and available for bids</p>\n</li>\n<li><p>in active bargain</p>\n</li>\n<li><p>bargain complete and implementation in progress</p>\n</li>\n</ul>\n<p>For each tender within the list, you get id, route periodic (public route id), status and attention flag.</p>\n<ul>\n<li><p>If successful, you will receive the list of tenders</p>\n</li>\n<li><p>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</p>\n</li>\n</ul>\n<p>(!) NOTE: tenders with <code>needAttention</code> set to <code>true</code> are the ones in which immediate action is required by the user.</p>\n","urlObject":{"path":["a","v2","rest","public","getCurrentTenders"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"9aee9d68-03d6-460d-8f63-b4db3fc9d50e","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getAllTenders"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 129653,\n            \"periodic\": \"1716-06-21\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 129638,\n            \"periodic\": \"1701-06-21\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 128974,\n            \"periodic\": \"1083-06-21\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 128374,\n            \"periodic\": \"564-06-21\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 128242,\n            \"periodic\": \"449-06-21\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 127456,\n            \"periodic\": \"1501-05-21\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 119352,\n            \"periodic\": \"572-04-20\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 99050,\n            \"periodic\": \"100-03-19\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 95614,\n            \"periodic\": \"28-09-16\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 91042,\n            \"periodic\": \"338-09-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 89847,\n            \"periodic\": \"1486-06-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 88970,\n            \"periodic\": \"624-06-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 85749,\n            \"periodic\": \"1324-05-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 84866,\n            \"periodic\": \"460-05-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 84856,\n            \"periodic\": \"452-05-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 84833,\n            \"periodic\": \"429-05-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 84782,\n            \"periodic\": \"378-05-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 84731,\n            \"periodic\": \"329-05-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 81406,\n            \"periodic\": \"542-04-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 79160,\n            \"periodic\": \"778-03-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 78657,\n            \"periodic\": \"301-03-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 74863,\n            \"periodic\": \"1934-01-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 70443,\n            \"periodic\": \"1873-12-14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 68544,\n            \"periodic\": \"4650-11-14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 67123,\n            \"periodic\": \"3259-11-14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 58459,\n            \"periodic\": \"2057-09-14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 54109,\n            \"periodic\": \"1110-08-14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 52450,\n            \"periodic\": \"3525-07-14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 46190,\n            \"periodic\": \"612_06_14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 45130,\n            \"periodic\": \"2566_05_14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 44106,\n            \"periodic\": \"1557_05_14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 43962,\n            \"periodic\": \"1414_05_14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 42428,\n            \"periodic\": \"772_05_14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 34611,\n            \"periodic\": \"618_05_14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 25912,\n            \"periodic\": \"2050_04_14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 24057,\n            \"periodic\": \"381_04_14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 15179,\n            \"periodic\": \"341_10_13\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 127406,\n            \"periodic\": \"1452-05-21\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 95614,\n            \"periodic\": \"28-09-16\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 91042,\n            \"periodic\": \"338-09-15\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 79334,\n            \"periodic\": \"952-03-15\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 74238,\n            \"periodic\": \"1351-01-15\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 73770,\n            \"periodic\": \"890-01-15\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 70443,\n            \"periodic\": \"1873-12-14\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 57288,\n            \"periodic\": \"899-09-14\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 54109,\n            \"periodic\": \"1110-08-14\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 53656,\n            \"periodic\": \"676-08-14\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 49590,\n            \"periodic\": \"695-07-14\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 47141,\n            \"periodic\": \"1558_06_14\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 76061,\n            \"periodic\": \"674-02-15\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 46118,\n            \"periodic\": \"540_06_14\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 24388,\n            \"periodic\": \"562_04_14\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        }\n    ]\n}"},{"id":"88d64408-ed98-4c13-bd05-80d25915c254","name":"Invalid token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getAllTenders"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Токен недействителен\",\n    \"relogin\": true\n}"}],"_postman_id":"eb56f154-73cb-48f3-9e61-0f02056feeb6"},{"name":"Get My Active Tenders","event":[{"listen":"test","script":{"id":"21a2a7e3-5759-4021-80e8-5c89d8d9c7f1","exec":["var response = pm.response.json();\r","\r","if (response.status === 200 || response.status === 'success') {\r","    pm.test(\"data in response matches array\", () => {\r","         pm.expect(response.data).to.be.an(\"array\");\r","    });\r","} else {\r","    pm.test(\"Response have relogin an Boolean\", () => {\r","        pm.expect(response.relogin).to.be.an('boolean');\r","    });\r","   \r","};"],"type":"text/javascript"}}],"id":"afcc4ff4-a99b-4620-876c-7216b914bf55","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getMyTenders","description":"<p>Get the list of tenders which are active at the moment for current user. This method is different from <code>getAllTenders</code> in that is intended for this particular user. Namely:</p>\n<ul>\n<li>if you represent a shipper, the method will return tenders that the current user had published</li>\n<li>if you represent a carrier, the method will return tenders, in which the current user offered delivery price</li>\n</ul>\n<p>The list excludes complete/finished tenders.\nThe list includes the tenders that are:</p>\n<ul>\n<li>vacant and available for delivery</li>\n<li>in progress</li>\n<li>in negotiation phase</li>\n</ul>\n<p>For each tender within the list, you get id, tender periodic (public tender id), status and attention flag.</p>\n<ul>\n<li>If successful, you will receive the list of tenders</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>(!) NOTE: tenders with <code>needAttention</code> set to true are the ones in which immediate action is required by the user.</p>\n","urlObject":{"path":["a","v2","rest","public","getMyTenders"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"e5a539fe-1cce-4a55-bb5c-95036174408c","name":"Get my active tenders","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getMyTenders"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 129653,\n            \"periodic\": \"1716-06-21\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 129638,\n            \"periodic\": \"1701-06-21\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 128974,\n            \"periodic\": \"1083-06-21\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 128374,\n            \"periodic\": \"564-06-21\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 128242,\n            \"periodic\": \"449-06-21\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 127456,\n            \"periodic\": \"1501-05-21\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 119352,\n            \"periodic\": \"572-04-20\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 99050,\n            \"periodic\": \"100-03-19\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 95614,\n            \"periodic\": \"28-09-16\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 91042,\n            \"periodic\": \"338-09-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 89847,\n            \"periodic\": \"1486-06-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 88970,\n            \"periodic\": \"624-06-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 85749,\n            \"periodic\": \"1324-05-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 84866,\n            \"periodic\": \"460-05-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 84856,\n            \"periodic\": \"452-05-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 84833,\n            \"periodic\": \"429-05-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 84782,\n            \"periodic\": \"378-05-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 84731,\n            \"periodic\": \"329-05-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 81406,\n            \"periodic\": \"542-04-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 79160,\n            \"periodic\": \"778-03-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 78657,\n            \"periodic\": \"301-03-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 74863,\n            \"periodic\": \"1934-01-15\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 70443,\n            \"periodic\": \"1873-12-14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 68544,\n            \"periodic\": \"4650-11-14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 67123,\n            \"periodic\": \"3259-11-14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 58459,\n            \"periodic\": \"2057-09-14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 54109,\n            \"periodic\": \"1110-08-14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 52450,\n            \"periodic\": \"3525-07-14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 46190,\n            \"periodic\": \"612_06_14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 45130,\n            \"periodic\": \"2566_05_14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 44106,\n            \"periodic\": \"1557_05_14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 43962,\n            \"periodic\": \"1414_05_14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 42428,\n            \"periodic\": \"772_05_14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 34611,\n            \"periodic\": \"618_05_14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 25912,\n            \"periodic\": \"2050_04_14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 24057,\n            \"periodic\": \"381_04_14\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 15179,\n            \"periodic\": \"341_10_13\",\n            \"contextstatus\": 92,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 127406,\n            \"periodic\": \"1452-05-21\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 95614,\n            \"periodic\": \"28-09-16\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 91042,\n            \"periodic\": \"338-09-15\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 79334,\n            \"periodic\": \"952-03-15\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 74238,\n            \"periodic\": \"1351-01-15\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 73770,\n            \"periodic\": \"890-01-15\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 70443,\n            \"periodic\": \"1873-12-14\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 57288,\n            \"periodic\": \"899-09-14\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 54109,\n            \"periodic\": \"1110-08-14\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 53656,\n            \"periodic\": \"676-08-14\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 49590,\n            \"periodic\": \"695-07-14\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 47141,\n            \"periodic\": \"1558_06_14\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 76061,\n            \"periodic\": \"674-02-15\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 46118,\n            \"periodic\": \"540_06_14\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        },\n        {\n            \"id\": 24388,\n            \"periodic\": \"562_04_14\",\n            \"contextstatus\": 93,\n            \"needAttention\": false\n        }\n    ]\n}"},{"id":"07045661-be56-4a6f-9c10-6555cc0a5f86","name":"Invalid token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getMyTenders"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Sun, 29 Aug 2021 17:40:35 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Токен недействителен\",\n    \"relogin\": true\n}"}],"_postman_id":"afcc4ff4-a99b-4620-876c-7216b914bf55"},{"name":"Get Complete Tenders","event":[{"listen":"test","script":{"id":"0cc1edf5-9623-4c48-9cee-853729452df3","exec":["var response = pm.response.json();","var isContains = pm.response.text();","","if (response.status === 200 || response.status === 'success'){","    pm.test(\"data in response matches object\", () => {","        pm.expect(response.data).to.be.an(\"object\");","    });","","    pm.test(\"data in response contains a completeRoutes\", () => {","        pm.expect(isContains).to.include(\"routes\");","    });","","    pm.test(\"completeRoutes in response matches array\", () => {","        pm.expect(response.data.routes).to.be.an(\"array\");","    });","","    pm.test(\"data in response contains a page\", () => {","        pm.expect(isContains).to.include(\"page\");","    });","","    pm.test(\"data in response contains a perPage\", () => {","        pm.expect(isContains).to.include(\"perPage\");","    });","","    pm.test(\"data in response contains a total\", () => {","        pm.expect(isContains).to.include(\"total\");","    });","","    pm.test(\"data in response contains a offset\", () => {","        pm.expect(isContains).to.include(\"offset\");","    });","","}else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","}","","",""],"type":"text/javascript"}}],"id":"f3a579d8-fe6b-4800-bf23-b18bbb288911","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getCompleteTenders?page={{page}}&perPage={{tendersPerPage}}\n","description":"<p>Returns the list of the complete tenders of your company. Tender is complete when all routes within this tender are complete.</p>\n<ul>\n<li>if successful you will receive the list of the current company/your completed tenders</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getCompleteTenders"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Optional, int. Default = 1. Number of the page</p>\n","type":"text/plain"},"key":"page","value":"{{page}}"},{"description":{"content":"<p>Optional, int. Default = 100 (max). Amount of the tenders per page</p>\n","type":"text/plain"},"key":"perPage","value":"{{tendersPerPage}}\n"}],"variable":[]}},"response":[{"id":"ae7fa6f1-41c0-4ef7-9038-3be3ff495cc1","name":"Success (Shipper)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCompleteTenders?page={{page}}&perPage={{tendersPerPage}}","host":["{{host}}"],"path":["a","v2","rest","public","getCompleteTenders"],"query":[{"key":"page","value":"{{page}}","description":"Optional, int. Default = 1. Number of the page"},{"key":"perPage","value":"{{tendersPerPage}}","description":"Optional, int. Default = 100 (max). Amount of the tenders per page"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"page\": 1,\n        \"perPage\": 5,\n        \"total\": 126,\n        \"offset\": 0,\n        \"routes\": [\n            {\n                \"id\": 125189,\n                \"periodic\": \"840-04-21\",\n                \"routestatus\": -1\n            },\n            {\n                \"id\": 124818,\n                \"periodic\": \"510-04-21\",\n                \"routestatus\": -1\n            },\n            {\n                \"id\": 124598,\n                \"periodic\": \"321-04-21\",\n                \"routestatus\": -1\n            },\n            {\n                \"id\": 124442,\n                \"periodic\": \"179-04-21\",\n                \"routestatus\": -1\n            },\n            {\n                \"id\": 124388,\n                \"periodic\": \"131-04-21\",\n                \"routestatus\": -1\n            }\n        ]\n    }\n}"},{"id":"40b2e597-4e6d-434a-b90e-39cca98d16ab","name":"Success (Carrier)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCompleteTenders?page={{page}}&perPage={{tendersPerPage}}","host":["{{host}}"],"path":["a","v2","rest","public","getCompleteTenders"],"query":[{"key":"page","value":"{{page}}","description":"Optional, int. Default = 1. Number of the page"},{"key":"perPage","value":"{{tendersPerPage}}","description":"Optional, int. Default = 100 (max). Amount of the tenders per page"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"page\": 1,\n        \"perPage\": 5,\n        \"total\": 25,\n        \"offset\": 0,\n        \"routes\": [\n            {\n                \"id\": 660151,\n                \"periodic\": \"3894-07-21\",\n                \"routestatus\": -1\n            },\n            {\n                \"id\": 658844,\n                \"periodic\": \"2654-07-21\",\n                \"routestatus\": -1\n            },\n            {\n                \"id\": 658810,\n                \"periodic\": \"2620-07-21\",\n                \"routestatus\": -1\n            },\n            {\n                \"id\": 658211,\n                \"periodic\": \"2068-07-21\",\n                \"routestatus\": -1\n            },\n            {\n                \"id\": 657193,\n                \"periodic\": \"1110-07-21\",\n                \"routestatus\": -1\n            }\n        ]\n    }\n}"},{"id":"50e87545-5be2-4970-b64c-e8217a79f492","name":"Invalid Token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCompleteTenders?page={{page}}&perPage={{tendersPerPage}}","host":["{{host}}"],"path":["a","v2","rest","public","getCompleteTenders"],"query":[{"key":"page","value":"{{page}}","description":"Optional, int. Default = 1. Number of the page"},{"key":"perPage","value":"{{tendersPerPage}}","description":"Optional, int. Default = 100 (max). Amount of the tenders per page"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"page\": 1,\n        \"perPage\": 5,\n        \"total\": 25,\n        \"offset\": 0,\n        \"routes\": [\n            {\n                \"id\": 660151,\n                \"periodic\": \"3894-07-21\",\n                \"routestatus\": -1\n            },\n            {\n                \"id\": 658844,\n                \"periodic\": \"2654-07-21\",\n                \"routestatus\": -1\n            },\n            {\n                \"id\": 658810,\n                \"periodic\": \"2620-07-21\",\n                \"routestatus\": -1\n            },\n            {\n                \"id\": 658211,\n                \"periodic\": \"2068-07-21\",\n                \"routestatus\": -1\n            },\n            {\n                \"id\": 657193,\n                \"periodic\": \"1110-07-21\",\n                \"routestatus\": -1\n            }\n        ]\n    }\n}"}],"_postman_id":"f3a579d8-fe6b-4800-bf23-b18bbb288911"},{"name":"Get Hidden Tenders","event":[{"listen":"test","script":{"id":"0cc1edf5-9623-4c48-9cee-853729452df3","exec":["var response = pm.response.json();","var isContains = pm.response.text();","","if (response.status === 200 || response.status === 'success'){","    pm.test(\"data in response matches object\", () => {","        pm.expect(response.data).to.be.an(\"object\");","    });","","    pm.test(\"data in response contains a completeRoutes\", () => {","        pm.expect(isContains).to.include(\"completeRoutes\");","    });","","    pm.test(\"completeRoutes in response matches array\", () => {","        pm.expect(response.data.completeRoutes).to.be.an(\"array\");","    });","","    pm.test(\"data in response contains a page\", () => {","        pm.expect(isContains).to.include(\"page\");","    });","","    pm.test(\"data in response contains a perPage\", () => {","        pm.expect(isContains).to.include(\"perPage\");","    });","","    pm.test(\"data in response contains a total\", () => {","        pm.expect(isContains).to.include(\"total\");","    });","","    pm.test(\"data in response contains a offset\", () => {","        pm.expect(isContains).to.include(\"offset\");","    });","","}else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","}","","",""],"type":"text/javascript","packages":{}}}],"id":"684a9253-672e-4c4b-a824-39c0aaa7e718","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getNotInterested?tender=1","description":"<p>Returns the list of the complete routes of your company.</p>\n<ul>\n<li>if successful you will receive the list of the current company/your completed routes </li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getNotInterested"],"host":["{{host}}"],"query":[{"key":"tender","value":"1"}],"variable":[]}},"response":[{"id":"65b0d1c7-9a08-41ef-9b8e-70ea2e32ebe9","name":"Invalid token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCompleteRoutes?page={{page}}&perPage={{routesPerPage}}","host":["{{host}}"],"path":["a","v2","rest","public","getCompleteRoutes"],"query":[{"key":"page","value":"{{page}}","description":"Optional, int. Default = 1. Number of the page"},{"key":"perPage","value":"{{routesPerPage}}","description":"Optional, int. Default = 100 (max). Amount of the routes per page"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token is invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"684a9253-672e-4c4b-a824-39c0aaa7e718"}],"id":"90b89c17-4a57-4af9-b9bd-50352fa3fdf8","_postman_id":"90b89c17-4a57-4af9-b9bd-50352fa3fdf8","description":""},{"name":"Search routes or tenders","id":"2b92c6aa-611f-4d26-938c-6b313ba66cfb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"searchQuery","value":"","description":"<p>String. Required</p>\n","type":"text","uuid":"3e62d67d-d037-4511-a8d2-f12de399b5a2"},{"key":"by","value":"","type":"text","uuid":"6f61ab39-8116-4a55-9fe5-edfa06ad20ba"}]},"url":"{{host}}/a/v2/rest/public/searchRoutes","urlObject":{"path":["a","v2","rest","public","searchRoutes"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2b92c6aa-611f-4d26-938c-6b313ba66cfb"}],"id":"17b6bea8-aac9-429b-95f6-8bc94636b741","description":"<p>A list of endpoints that allow retrieval of available routes/tenders lists for monitoring and further decision making.</p>\n","_postman_id":"17b6bea8-aac9-429b-95f6-8bc94636b741"},{"name":"Route specific","item":[{"name":"Get Basic Details of Some Routes","event":[{"listen":"test","script":{"id":"0cc1edf5-9623-4c48-9cee-853729452df3","exec":["var response = pm.response.json();","var isContains = pm.response.text();","if (response.status === 200 || response.status === 'success') {","    pm.test(\"data in response matches object\", () => {","        pm.expect(response.data).to.be.an(\"object\");","    });","","    pm.test(\"response contains a routes\", () => {","        pm.expect(isContains).to.include(\"routes\");","    });","","    pm.test(\"routes in response matches array\", () => {","    pm.expect(response.data.routes).to.be.an(\"array\");","    });","","    pm.test(\"response contains a dictionary\", () => {","        pm.expect(pm.response.text()).to.include(\"dic\");","    });","    pm.test(\"dic in response matches object\", () => {","        pm.expect(response.data.dic).to.be.an(\"object\");","    });","} else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","   ","};",""],"type":"text/javascript"}}],"id":"e5caeae7-a5b6-4ea7-8577-b5da4c244646","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getBasicDetailsOfRoutes?routes={{routeList}}","description":"<p>The method returns basic details of the routes/tenders passed. Those basic details include shipper and carrier titles, truck/driver/trailer details, loading and unloading geography and metrics, payload parameters, dates, etc.</p>\n<ul>\n<li>if successful you will receive the details of routes that you passed in the route list</li>\n<li>if unsuccessful you will receive an error explaining the problem in the language you supplied with the header</li>\n</ul>\n<p>(!) NOTE: the method will return data only for the routes/tenders that current user has access to, ignoring others, regardless of whether they were passed in parameter for listing.</p>\n","urlObject":{"path":["a","v2","rest","public","getBasicDetailsOfRoutes"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Comma-separated list of periodics.</p>\n","type":"text/plain"},"key":"routes","value":"{{routeList}}"}],"variable":[]}},"response":[{"id":"8e530b8a-22cb-4682-98b8-af0781965348","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getBasicDetailsOfRoutes?routes={{routeList}}","host":["{{host}}"],"path":["a","v2","rest","public","getBasicDetailsOfRoutes"],"query":[{"key":"routes","value":"{{routeList}}","description":"Comma-separated list of periodics."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"routes\": [\n            {\n                \"id\": 94352,\n                \"routestatus\": 6,\n                \"defaultcurrency\": null,\n                \"budget\": 15230,\n                \"distance\": 47,\n                \"periodic\": \"243-06-16\",\n                \"routeresponse\": 73702,\n                \"client\": 1274,\n                \"operator\": 180,\n                \"tenderavailableuntilmoment\": \"0000-00-00 00:00:00\",\n                \"istender\": false,\n                \"blindtender\": false,\n                \"maxquotewithcommission\": null,\n                \"stepwithcommission\": null,\n                \"completemoment\": null,\n                \"bookedsince\": null,\n                \"bookedtill\": null,\n                \"client_relation\": {\n                    \"hash\": \"3c5e448b11f15293807d9cfdedf21582\",\n                    \"company_relation\": {\n                        \"title_ru\": \"Super Shipper, LTD\",\n                        \"natcomid\": \"1231231231231\"\n                    }\n                },\n                \"operator_relation\": {\n                    \"id\": 278,\n                    \"company\": 844,\n                    \"hash\": \"da9cc741ae2ca7e4adf596b773a7b187\",\n                    \"company_relation\": {\n                        \"title_ru\": \"Mega Carrier, LTD\",\n                        \"natcomid\": \"37534111223\"\n                    }\n                },\n                \"routeparts\": [\n                    {\n                        \"route\": 94352,\n                        \"id\": 111365645,\n                        \"date1\": \"2016-06-16\",\n                        \"date2\": \"2016-06-21\",\n                        \"time1\": \"08:30:00\",\n                        \"time2\": \"14:00:00\",\n                        \"workaction\": 1,\n                        \"triggered\": true,\n                        \"complete\": false,\n                        \"cargo\": \"Aggregates\",\n                        \"bordercrossforoperator\": false,\n                        \"checkpoint_relation\": {\n                            \"id\": 3941,\n                            \"town_relation\": {\n                                \"title_ru\": \"Berdiansk\",\n                                \"district\": \"\"\n                            }\n                        }\n                    },\n                    {\n                        \"route\": 94352,\n                        \"id\": 111365646,\n                        \"date1\": \"2016-06-21\",\n                        \"date2\": \"0000-00-00\",\n                        \"time1\": \"00:00:00\",\n                        \"time2\": \"00:00:00\",\n                        \"workaction\": 1,\n                        \"triggered\": false,\n                        \"complete\": false,\n                        \"cargo\": \"А\",\n                        \"bordercrossforoperator\": false,\n                        \"checkpoint_relation\": {\n                            \"id\": 4518,\n                            \"town_relation\": {\n                                \"title_ru\": \"Bucha\",\n                                \"district\": \"Irpin\"\n                            }\n                        }\n                    },\n                    {\n                        \"route\": 94352,\n                        \"id\": 111365647,\n                        \"date1\": \"2016-06-30\",\n                        \"date2\": \"2016-06-23\",\n                        \"time1\": \"08:30:00\",\n                        \"time2\": \"22:00:00\",\n                        \"workaction\": 2,\n                        \"triggered\": false,\n                        \"complete\": false,\n                        \"cargo\": \"\",\n                        \"bordercrossforoperator\": false,\n                        \"checkpoint_relation\": {\n                            \"id\": 4518,\n                            \"town_relation\": {\n                                \"title_ru\": \"Bucha\",\n                                \"district\": \"Irpin\"\n                            }\n                        }\n                    }\n                ],\n                \"routeresponse_relation\": [\n                    {\n                        \"id\": 73702,\n                        \"route\": 94352,\n                        \"driver\": 14793,\n                        \"driver2\": null,\n                        \"car\": 15677,\n                        \"trailer\": null,\n                        \"moment\": \"2016-06-16 16:59:02\",\n                        \"pricequotewithcommission\": null,\n                        \"cancelled\": 0,\n                        \"driver_relation\": {\n                            \"id\": 14793,\n                            \"firstname\": \"123\",\n                            \"lastname\": \"/0\",\n                            \"patronymic\": \"\",\n                            \"maincellphone\": \"123\"\n                        },\n                        \"driver2_relation\": null,\n                        \"car_relation\": {\n                            \"id\": 15677,\n                            \"number\": \"123\",\n                            \"model\": null,\n                            \"make\": 6,\n                            \"make_relation\": {\n                                \"id\": 6,\n                                \"title_ru\": \"Citroen\"\n                            }\n                        },\n                        \"trailer_relation\": null\n                    }\n                ],\n                \"routetender\": {\n                    \"winnerpricewithcommission\": null,\n                    \"currentminpricewithcommission\": null,\n                    \"tenderstatus\": null,\n                    \"winnerstatus\": null\n                },\n                \"needAttention\": true,\n                \"tenderparent\": \"18-02-26\",\n                \"minquote\": null,\n                \"tenderuntil\": {\n                    \"date\": \"0000-00-00\",\n                    \"time\": \"00:00:00\"\n                },\n                \"booktime\": 30,\n                \"bookedbyme\": false,\n                \"cartypeRelation\": [],\n                \"chargetype\": [\n                    null\n                ],\n                \"ferryproperty\": [\n                    \"Aggregates 15 pcs\",\n                    \"temperature\",\n                    \"belts 5 pcs\"\n                ],\n                \"unitPrices\": [\n                    {\n                        \"value\": null,\n                        \"title\": \"UAH/tonn\"\n                    },\n                    {\n                        \"value\": null,\n                        \"title\": \"UAH/mcub\"\n                    },\n                    {\n                        \"value\": null,\n                        \"title\": \"UAH/km\"\n                    }\n                ],\n                \"newMessages\": 0,\n                \"context\": {\n                    \"title\": null,\n                    \"iconTitle\": null\n                },\n                \"kmprice\": 0,\n                \"mcubeprice\": 0,\n                \"tonnprice\": 0,\n                \"tenderparticipant\": false\n            },\n            {\n                \"id\": 94362,\n                \"routestatus\": 6,\n                \"defaultcurrency\": null,\n                \"budget\": 7500,\n                \"distance\": 566,\n                \"periodic\": \"253-06-16\",\n                \"routeresponse\": 73719,\n                \"client\": 1274,\n                \"operator\": 180,\n                \"tenderavailableuntilmoment\": \"0000-00-00 00:00:00\",\n                \"istender\": false,\n                \"blindtender\": false,\n                \"maxquotewithcommission\": null,\n                \"stepwithcommission\": null,\n                \"completemoment\": null,\n                \"bookedsince\": null,\n                \"bookedtill\": null,\n                \"client_relation\": {\n                    \"company_relation\": {\n                        \"title_ru\": \"The client, LTD\"\n                    }\n                },\n                \"operator_relation\": {\n                    \"id\": 180,\n                    \"company\": 406,\n                    \"company_relation\": {\n                        \"title_ru\": \"Carrier 1, LTD\"\n                    }\n                },\n                \"routeparts\": [\n                    {\n                        \"route\": 94362,\n                        \"id\": 111365673,\n                        \"date1\": \"2016-06-27\",\n                        \"date2\": \"2016-06-21\",\n                        \"time1\": \"09:30:00\",\n                        \"time2\": \"12:30:00\",\n                        \"workaction\": 1,\n                        \"triggered\": true,\n                        \"complete\": false,\n                        \"cargo\": \"груз 1\",\n                        \"bordercrossforoperator\": false,\n                        \"checkpoint_relation\": {\n                            \"id\": 6665,\n                            \"town_relation\": {\n                                \"title_ru\": \"Odesa\",\n                                \"district\": \"\"\n                            }\n                        }\n                    },\n                    {\n                        \"route\": 94362,\n                        \"id\": 111365674,\n                        \"date1\": \"2016-06-28\",\n                        \"date2\": \"2016-06-24\",\n                        \"time1\": \"13:00:00\",\n                        \"time2\": \"19:00:00\",\n                        \"workaction\": 1,\n                        \"triggered\": false,\n                        \"complete\": false,\n                        \"cargo\": \"груз 2\",\n                        \"bordercrossforoperator\": false,\n                        \"checkpoint_relation\": {\n                            \"id\": 4518,\n                            \"town_relation\": {\n                                \"title_ru\": \"Bucha\",\n                                \"district\": \"Irpin\"\n                            }\n                        }\n                    },\n                    {\n                        \"route\": 94362,\n                        \"id\": 111365675,\n                        \"date1\": \"2016-06-29\",\n                        \"date2\": \"2016-06-23\",\n                        \"time1\": \"00:00:00\",\n                        \"time2\": \"00:00:00\",\n                        \"workaction\": 2,\n                        \"triggered\": false,\n                        \"complete\": false,\n                        \"cargo\": \"\",\n                        \"bordercrossforoperator\": false,\n                        \"checkpoint_relation\": {\n                            \"id\": 5251,\n                            \"town_relation\": {\n                                \"title_ru\": \"Brovary\",\n                                \"district\": \"\"\n                            }\n                        }\n                    },\n                    {\n                        \"route\": 94362,\n                        \"id\": 111365676,\n                        \"date1\": \"2016-06-30\",\n                        \"date2\": \"2016-06-24\",\n                        \"time1\": \"09:00:00\",\n                        \"time2\": \"15:00:00\",\n                        \"workaction\": 2,\n                        \"triggered\": false,\n                        \"complete\": false,\n                        \"cargo\": \"\",\n                        \"bordercrossforoperator\": false,\n                        \"checkpoint_relation\": {\n                            \"id\": 6665,\n                            \"town_relation\": {\n                                \"title_ru\": \"Odesa\",\n                                \"district\": \"\"\n                            }\n                        }\n                    }\n                ],\n                \"routeresponse_relation\": [\n                    {\n                        \"id\": 73719,\n                        \"route\": 94362,\n                        \"driver\": 7953,\n                        \"driver2\": null,\n                        \"car\": 8062,\n                        \"trailer\": 8120,\n                        \"moment\": \"2016-06-17 10:45:41\",\n                        \"pricequotewithcommission\": null,\n                        \"cancelled\": 0,\n                        \"driver_relation\": {\n                            \"id\": 7953,\n                            \"firstname\": \"John\",\n                            \"lastname\": \"Driver\",\n                            \"patronymic\": \"\",\n                            \"maincellphone\": \"38(050)111-22-33\"\n                        },\n                        \"driver2_relation\": null,\n                        \"car_relation\": {\n                            \"id\": 8062,\n                            \"number\": \"АА1122ЕЕ\",\n                            \"model\": null,\n                            \"make\": 8,\n                            \"make_relation\": {\n                                \"id\": 8,\n                                \"title_ru\": \"DAF\"\n                            }\n                        },\n                        \"trailer_relation\": {\n                            \"id\": 8120,\n                            \"number\": \"АА2211ХХ\",\n                            \"model\": null\n                        }\n                    }\n                ],\n                \"routetender\": {\n                    \"winnerpricewithcommission\": null,\n                    \"currentminpricewithcommission\": null,\n                    \"tenderstatus\": null,\n                    \"winnerstatus\": null\n                },\n                \"needAttention\": true,\n                \"minquote\": null,\n                \"tenderuntil\": {\n                    \"date\": \"0000-0-00\",\n                    \"time\": \"00:00:00\"\n                },\n                \"booktime\": 30,\n                \"bookedbyme\": false,\n                \"cartypeRelation\": [],\n                \"chargetype\": [\n                    null\n                ],\n                \"ferryproperty\": [\n                    \"Aggregates 10 pcs\"\n                ],\n                \"unitPrices\": [\n                    {\n                        \"value\": null,\n                        \"title\": \"UAH/tonn\"\n                    },\n                    {\n                        \"value\": null,\n                        \"title\": \"UAH/mcub\"\n                    },\n                    {\n                        \"value\": null,\n                        \"title\": \"UAH/km\"\n                    }\n                ],\n                \"newMessages\": 1,\n                \"context\": {\n                    \"title\": null,\n                    \"iconTitle\": null\n                },\n                \"kmprice\": 0,\n                \"mcubeprice\": 0,\n                \"tonnprice\": 0,\n                \"tenderparticipant\": false\n            },\n            {\n                \"id\": 94352,\n                \"routestatus\": 6,\n                \"defaultcurrency\": null,\n                \"budget\": 15230,\n                \"distance\": 47,\n                \"periodic\": \"243-06-16\",\n                \"routeresponse\": 73702,\n                \"client\": 1274,\n                \"operator\": 180,\n                \"tenderavailableuntilmoment\": \"0000-00-00 00:00:00\",\n                \"istender\": false,\n                \"blindtender\": false,\n                \"maxquotewithcommission\": null,\n                \"stepwithcommission\": null,\n                \"completemoment\": null,\n                \"bookedsince\": null,\n                \"bookedtill\": null,\n                \"client_relation\": {\n                    \"company_relation\": {\n                        \"title_ru\": \"The client, LTD\"\n                    }\n                },\n                \"operator_relation\": {\n                    \"id\": 180,\n                    \"company\": 406,\n                    \"company_relation\": {\n                        \"title_ru\": \"Carrier 1, LTD\"\n                    }\n                },\n                \"routeparts\": [\n                    {\n                        \"route\": 94352,\n                        \"id\": 111365645,\n                        \"date1\": \"2016-06-16\",\n                        \"date2\": \"2016-06-21\",\n                        \"time1\": \"08:30:00\",\n                        \"time2\": \"14:00:00\",\n                        \"workaction\": 1,\n                        \"triggered\": true,\n                        \"complete\": false,\n                        \"cargo\": \"Aggregates\",\n                        \"bordercrossforoperator\": false,\n                        \"checkpoint_relation\": {\n                            \"id\": 3941,\n                            \"town_relation\": {\n                                \"title_ru\": \"Berdiansk\",\n                                \"district\": \"\"\n                            }\n                        }\n                    },\n                    {\n                        \"route\": 94352,\n                        \"id\": 111365646,\n                        \"date1\": \"2016-06-21\",\n                        \"date2\": \"0000-00-00\",\n                        \"time1\": \"00:00:00\",\n                        \"time2\": \"00:00:00\",\n                        \"workaction\": 1,\n                        \"triggered\": false,\n                        \"complete\": false,\n                        \"cargo\": \"А\",\n                        \"bordercrossforoperator\": false,\n                        \"checkpoint_relation\": {\n                            \"id\": 4518,\n                            \"town_relation\": {\n                                \"title_ru\": \"Bucha\",\n                                \"district\": \"Irpin\"\n                            }\n                        }\n                    },\n                    {\n                        \"route\": 94352,\n                        \"id\": 111365647,\n                        \"date1\": \"2016-06-30\",\n                        \"date2\": \"2016-06-23\",\n                        \"time1\": \"08:30:00\",\n                        \"time2\": \"22:00:00\",\n                        \"workaction\": 2,\n                        \"triggered\": false,\n                        \"complete\": false,\n                        \"cargo\": \"\",\n                        \"bordercrossforoperator\": false,\n                        \"checkpoint_relation\": {\n                            \"id\": 4518,\n                            \"town_relation\": {\n                                \"title_ru\": \"Bucha\",\n                                \"district\": \"Irpin\"\n                            }\n                        }\n                    }\n                ],\n                \"routeresponse_relation\": [\n                    {\n                        \"id\": 73702,\n                        \"route\": 94352,\n                        \"driver\": 14793,\n                        \"driver2\": null,\n                        \"car\": 15677,\n                        \"trailer\": null,\n                        \"moment\": \"2016-06-16 16:59:02\",\n                        \"pricequotewithcommission\": null,\n                        \"cancelled\": 0,\n                        \"driver_relation\": {\n                            \"id\": 14793,\n                            \"firstname\": \"123\",\n                            \"lastname\": \"/0\",\n                            \"patronymic\": \"\",\n                            \"maincellphone\": \"123\"\n                        },\n                        \"driver2_relation\": null,\n                        \"car_relation\": {\n                            \"id\": 15677,\n                            \"number\": \"123\",\n                            \"model\": null,\n                            \"make\": 6,\n                            \"make_relation\": {\n                                \"id\": 6,\n                                \"title_ru\": \"Citroen\"\n                            }\n                        },\n                        \"trailer_relation\": null\n                    }\n                ],\n                \"routetender\": {\n                    \"winnerpricewithcommission\": null,\n                    \"currentminpricewithcommission\": null,\n                    \"tenderstatus\": null,\n                    \"winnerstatus\": null\n                },\n                \"needAttention\": true,\n                \"minquote\": null,\n                \"tenderuntil\": {\n                    \"date\": \"0000-00-00\",\n                    \"time\": \"00:00:00\"\n                },\n                \"booktime\": 30,\n                \"bookedbyme\": false,\n                \"cartypeRelation\": [],\n                \"chargetype\": [\n                    null\n                ],\n                \"ferryproperty\": [\n                    \"Aggregates 15 pcs\",\n                    \"temperature\",\n                    \"belts 5 pcs\"\n                ],\n                \"unitPrices\": [\n                    {\n                        \"value\": null,\n                        \"title\": \"UAH/tonn\"\n                    },\n                    {\n                        \"value\": null,\n                        \"title\": \"UAH/mcub\"\n                    },\n                    {\n                        \"value\": null,\n                        \"title\": \"UAH/km\"\n                    }\n                ],\n                \"newMessages\": 0,\n                \"context\": {\n                    \"title\": null,\n                    \"iconTitle\": null\n                },\n                \"kmprice\": 0,\n                \"mcubeprice\": 0,\n                \"tonnprice\": 0,\n                \"tenderparticipant\": false\n            },\n            {\n                \"id\": 94363,\n                \"routestatus\": 9,\n                \"defaultcurrency\": null,\n                \"budget\": 45,\n                \"distance\": 493,\n                \"periodic\": \"254-06-16\",\n                \"routeresponse\": 80828,\n                \"client\": 1274,\n                \"operator\": 180,\n                \"tenderavailableuntilmoment\": \"0000-00-00 00:00:00\",\n                \"istender\": false,\n                \"blindtender\": false,\n                \"maxquotewithcommission\": null,\n                \"stepwithcommission\": null,\n                \"completemoment\": null,\n                \"bookedsince\": null,\n                \"bookedtill\": null,\n                \"client_relation\": {\n                    \"company_relation\": {\n                        \"title_ru\": \"The client, LTD\"\n                    }\n                },\n                \"operator_relation\": {\n                    \"id\": 180,\n                    \"company\": 406,\n                    \"company_relation\": {\n                        \"title_ru\": \"Carrier 1, LTD\"\n                    }\n                },\n                \"routeparts\": [\n                    {\n                        \"route\": 94363,\n                        \"id\": 111365677,\n                        \"date1\": \"2016-06-18\",\n                        \"date2\": \"0000-00-00\",\n                        \"time1\": \"09:30:00\",\n                        \"time2\": \"00:00:00\",\n                        \"workaction\": 1,\n                        \"triggered\": true,\n                        \"complete\": true,\n                        \"cargo\": \"d\",\n                        \"bordercrossforoperator\": false,\n                        \"checkpoint_relation\": {\n                            \"id\": 5251,\n                            \"town_relation\": {\n                                \"title_ru\": \"Brovary\",\n                                \"district\": \"\"\n                            }\n                        }\n                    },\n                    {\n                        \"route\": 94363,\n                        \"id\": 111365678,\n                        \"date1\": \"2016-06-20\",\n                        \"date2\": \"0000-00-00\",\n                        \"time1\": \"09:30:00\",\n                        \"time2\": \"00:00:00\",\n                        \"workaction\": 2,\n                        \"triggered\": true,\n                        \"complete\": false,\n                        \"cargo\": \"\",\n                        \"bordercrossforoperator\": false,\n                        \"checkpoint_relation\": {\n                            \"id\": 6665,\n                            \"town_relation\": {\n                                \"title_ru\": \"Odesa\",\n                                \"district\": \"\"\n                            }\n                        }\n                    }\n                ],\n                \"routeresponse_relation\": [\n                    {\n                        \"id\": 73720,\n                        \"route\": 94363,\n                        \"driver\": 9501,\n                        \"driver2\": null,\n                        \"car\": 9820,\n                        \"trailer\": 9704,\n                        \"moment\": \"2016-06-17 10:54:02\",\n                        \"pricequotewithcommission\": null,\n                        \"cancelled\": 0,\n                        \"driver_relation\": {\n                            \"id\": 9501,\n                            \"firstname\": \"asd\",\n                            \"lastname\": \"asd\",\n                            \"patronymic\": \"asd\",\n                            \"maincellphone\": \"222\"\n                        },\n                        \"driver2_relation\": null,\n                        \"car_relation\": {\n                            \"id\": 9820,\n                            \"number\": \"444\",\n                            \"model\": null,\n                            \"make\": 11,\n                            \"make_relation\": {\n                                \"id\": 11,\n                                \"title_ru\": \"ERF\"\n                            }\n                        },\n                        \"trailer_relation\": {\n                            \"id\": 9704,\n                            \"number\": \"666\",\n                            \"model\": null\n                        }\n                    },\n                    {\n                        \"id\": 80828,\n                        \"route\": 94363,\n                        \"driver\": 14857,\n                        \"driver2\": null,\n                        \"car\": 15741,\n                        \"trailer\": 9704,\n                        \"moment\": \"2020-01-29 14:48:11\",\n                        \"pricequotewithcommission\": null,\n                        \"cancelled\": 0,\n                        \"driver_relation\": {\n                            \"id\": 14857,\n                            \"firstname\": \"Jesse\",\n                            \"lastname\": \"Pinkman\",\n                            \"patronymic\": \"\",\n                            \"maincellphone\": \"3805011111111\"\n                        },\n                        \"driver2_relation\": null,\n                        \"car_relation\": {\n                            \"id\": 15741,\n                            \"number\": \"АА1111AА\",\n                            \"model\": null,\n                            \"make\": 8,\n                            \"make_relation\": {\n                                \"id\": 8,\n                                \"title_ru\": \"DAF\"\n                            }\n                        },\n                        \"trailer_relation\": {\n                            \"id\": 9704,\n                            \"number\": \"666\",\n                            \"model\": null\n                        }\n                    }\n                ],\n                \"routetender\": {\n                    \"winnerpricewithcommission\": null,\n                    \"currentminpricewithcommission\": null,\n                    \"tenderstatus\": null,\n                    \"winnerstatus\": null\n                },\n                \"needAttention\": true,\n                \"minquote\": null,\n                \"tenderuntil\": {\n                    \"date\": \"0000-00-00\",\n                    \"time\": \"00:00:00\"\n                },\n                \"booktime\": 30,\n                \"bookedbyme\": false,\n                \"cartypeRelation\": [],\n                \"chargetype\": [\n                    null\n                ],\n                \"unitPrices\": [\n                    {\n                        \"value\": null,\n                        \"title\": \"UAH/tonn\"\n                    },\n                    {\n                        \"value\": null,\n                        \"title\": \"UAH/mcub\"\n                    },\n                    {\n                        \"value\": null,\n                        \"title\": \"UAH/km\"\n                    }\n                ],\n                \"newMessages\": 0,\n                \"context\": {\n                    \"title\": null,\n                    \"iconTitle\": null\n                },\n                \"kmprice\": 0,\n                \"mcubeprice\": 0,\n                \"tonnprice\": 0,\n                \"tenderparticipant\": false\n            },\n            {\n                \"id\": 94352,\n                \"routestatus\": 6,\n                \"defaultcurrency\": null,\n                \"budget\": 15230,\n                \"distance\": 47,\n                \"periodic\": \"243-06-16\",\n                \"routeresponse\": 73702,\n                \"client\": 1274,\n                \"operator\": 180,\n                \"tenderavailableuntilmoment\": \"0000-00-00 00:00:00\",\n                \"istender\": false,\n                \"blindtender\": false,\n                \"maxquotewithcommission\": null,\n                \"stepwithcommission\": null,\n                \"completemoment\": null,\n                \"bookedsince\": null,\n                \"bookedtill\": null,\n                \"client_relation\": {\n                    \"company_relation\": {\n                        \"title_ru\": \"The client, LTD\"\n                    }\n                },\n                \"operator_relation\": {\n                    \"id\": 180,\n                    \"company\": 406,\n                    \"company_relation\": {\n                        \"title_ru\": \"Carrier 1, LTD\"\n                    }\n                },\n                \"routeparts\": [\n                    {\n                        \"route\": 94352,\n                        \"id\": 111365645,\n                        \"date1\": \"2016-06-16\",\n                        \"date2\": \"2016-06-21\",\n                        \"time1\": \"08:30:00\",\n                        \"time2\": \"14:00:00\",\n                        \"workaction\": 1,\n                        \"triggered\": true,\n                        \"complete\": false,\n                        \"cargo\": \"Aggregates\",\n                        \"bordercrossforoperator\": false,\n                        \"checkpoint_relation\": {\n                            \"id\": 3941,\n                            \"town_relation\": {\n                                \"title_ru\": \"Berdiansk\",\n                                \"district\": \"\"\n                            }\n                        }\n                    },\n                    {\n                        \"route\": 94352,\n                        \"id\": 111365646,\n                        \"date1\": \"2016-06-21\",\n                        \"date2\": \"0000-00-00\",\n                        \"time1\": \"00:00:00\",\n                        \"time2\": \"00:00:00\",\n                        \"workaction\": 1,\n                        \"triggered\": false,\n                        \"complete\": false,\n                        \"cargo\": \"А\",\n                        \"bordercrossforoperator\": false,\n                        \"checkpoint_relation\": {\n                            \"id\": 4518,\n                            \"town_relation\": {\n                                \"title_ru\": \"Bucha\",\n                                \"district\": \"Irpin\"\n                            }\n                        }\n                    },\n                    {\n                        \"route\": 94352,\n                        \"id\": 111365647,\n                        \"date1\": \"2016-06-30\",\n                        \"date2\": \"2016-06-23\",\n                        \"time1\": \"08:30:00\",\n                        \"time2\": \"22:00:00\",\n                        \"workaction\": 2,\n                        \"triggered\": false,\n                        \"complete\": false,\n                        \"cargo\": \"\",\n                        \"bordercrossforoperator\": false,\n                        \"checkpoint_relation\": {\n                            \"id\": 4518,\n                            \"town_relation\": {\n                                \"title_ru\": \"Bucha\",\n                                \"district\": \"Irpin\"\n                            }\n                        }\n                    }\n                ],\n                \"routeresponse_relation\": [\n                    {\n                        \"id\": 73702,\n                        \"route\": 94352,\n                        \"driver\": 14793,\n                        \"driver2\": null,\n                        \"car\": 15677,\n                        \"trailer\": null,\n                        \"moment\": \"2016-06-16 16:59:02\",\n                        \"pricequotewithcommission\": null,\n                        \"cancelled\": 0,\n                        \"driver_relation\": {\n                            \"id\": 14793,\n                            \"firstname\": \"123\",\n                            \"lastname\": \"/0\",\n                            \"patronymic\": \"\",\n                            \"maincellphone\": \"123\"\n                        },\n                        \"driver2_relation\": null,\n                        \"car_relation\": {\n                            \"id\": 15677,\n                            \"number\": \"123\",\n                            \"model\": null,\n                            \"make\": 6,\n                            \"make_relation\": {\n                                \"id\": 6,\n                                \"title_ru\": \"Citroen\"\n                            }\n                        },\n                        \"trailer_relation\": null\n                    }\n                ],\n                \"routetender\": {\n                    \"winnerpricewithcommission\": null,\n                    \"currentminpricewithcommission\": null,\n                    \"tenderstatus\": null,\n                    \"winnerstatus\": null\n                },\n                \"needAttention\": true,\n                \"minquote\": null,\n                \"tenderuntil\": {\n                    \"date\": \"0000-00-00\",\n                    \"time\": \"00:00:00\"\n                },\n                \"booktime\": 30,\n                \"bookedbyme\": false,\n                \"cartypeRelation\": [],\n                \"chargetype\": [\n                    null\n                ],\n                \"ferryproperty\": [\n                    \"Aggregates 15 pcs\",\n                    \"temperature\",\n                    \"belts 5 pcs\"\n                ],\n                \"unitPrices\": [\n                    {\n                        \"value\": null,\n                        \"title\": \"UAH/tonn\"\n                    },\n                    {\n                        \"value\": null,\n                        \"title\": \"UAH/mcub\"\n                    },\n                    {\n                        \"value\": null,\n                        \"title\": \"UAH/km\"\n                    }\n                ],\n                \"newMessages\": 0,\n                \"context\": {\n                    \"title\": null,\n                    \"iconTitle\": null\n                },\n                \"kmprice\": 0,\n                \"mcubeprice\": 0,\n                \"tonnprice\": 0,\n                \"tenderparticipant\": false\n            }\n        ]\n    }\n}"},{"id":"8049b273-c854-469d-aa95-eacb9302935b","name":"Missing token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text","disabled":true},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getBasicDetailsOfRoutes?routes={{routeList}}","host":["{{host}}"],"path":["a","v2","rest","public","getBasicDetailsOfRoutes"],"query":[{"key":"routes","value":"{{routeList}}","description":"Comma-separated list of periodics."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Fri, 31 May 2024 12:31:03 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token is required\",\n    \"relogin\": true\n}"}],"_postman_id":"e5caeae7-a5b6-4ea7-8577-b5da4c244646"},{"name":"Get Single Route/Tender Details","event":[{"listen":"test","script":{"id":"fdad7ccd-2c45-4f83-9edf-2a06f23bb6bd","exec":["var response = pm.response.json();","var isContains = pm.response.text();","","if (response.status === 200 || response.status === 'success') {","    pm.test(\"data in response matches object\", () => {","        pm.expect(response.data).to.be.an(\"object\");","    });","","    pm.test(\"response contains a route\", () => {","        pm.expect(isContains).to.include(\"route\");","    });","","    pm.test(\"route in response matches object\", () => {","        pm.expect(response.data.route).to.be.an(\"object\");","    });","","    pm.test(\"response contains a dictionary\", () => {","        pm.expect(pm.response.text()).to.include(\"dic\");","    });","","","    pm.test(\"dic in response matches object\", () => {","        pm.expect(response.data.dic).to.be.an(\"object\");","    });","","} else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","   ","};","",""],"type":"text/javascript","packages":{}}}],"id":"4acb4720-d82e-45c9-b9e3-94a78a56dabe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{host}}/a/v2/rest/public/singleRoute?route={{singleRoute}}","description":"<p>Shows all the available details of a single route or tender. The response includes all the necessary and available information about the route/tender, much more than the data returned in the method <code>getBasicDetailsOfRoutes</code>.</p>\n<ul>\n<li>if successful you will receive the details of the route or tender</li>\n<li>if unsuccessful you will receive an error explaining the problem in the language you supplied with the header or in the language set within the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","singleRoute"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Single route/tender periodic</p>\n","type":"text/plain"},"key":"route","value":"{{singleRoute}}"}],"variable":[]}},"response":[{"id":"27a02e4b-42c5-4a37-bbdf-fdcfa29f9f38","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/singleRoute?route={{singleRoute}}","host":["{{host}}"],"path":["a","v2","rest","public","singleRoute"],"query":[{"key":"route","value":"{{singleRoute}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"route\": {\n            \"context\": {\n                \"title\": null,\n                \"iconTitle\": null\n            },\n            \"periodic\": \"243-06-16\",\n            \"distance\": 47,\n            \"budget\": 15230,\n            \"kmprice\": 0,\n            \"tonnprice\": 331.09,\n            \"mcubeprice\": 0,\n            \"paymenttype\": {\n                \"id\": 3,\n                \"title\": \"Cash\"\n            },\n            \"payorcompany\": {\n                \"id\": 0,\n                \"title\": null,\n                \"natcomid\": null\n            },\n            \"cartype\": null,\n            \"ferryproperty\": [\n                \"Pallets 15 pcs\",\n                \"Temperature 0 ° C\",\n                \"Belts 5 pcs\"\n            ],\n            \"chargetype\": null,\n            \"defaultcurrency\": null,\n            \"totalweight\": 46,\n            \"routestatus\": 6,\n            \"companydata\": {\n                \"title_ru\": \"ОрджМеталлПромИнweightт, АО\",\n                \"natcomid\": \"1231231231231\"\n            },\n            \"clientdata\": {\n                \"hash\": \"3c5e448b11f15293807d9cfdedf21582\"\n            },\n            \"userclientdata\": {\n                \"name\": \"John\",\n                \"email\": \"email@gmail.com\",\n                \"cellnum\": \"+380991231212\"\n            },\n            \"useroperatordata\": {\n                \"name\": \"Josh Potter\",\n                \"email\": \"email@gmail.com\",\n                \"cellnum\": \"0671231212\"\n            },\n            \"routeresponse\": 73702,\n            \"response\": {\n                \"73702\": {\n                    \"id\": 73702,\n                    \"route\": 94352,\n                    \"operator\": 180,\n                    \"user\": 269,\n                    \"driver\": {\n                        \"id\": 14793,\n                        \"lastname\": \"/0\",\n                        \"firstname\": \"123\",\n                        \"patronymic\": \"\",\n                        \"maincellphone\": \"123\",\n                        \"passportserial\": \"\",\n                        \"driverlicenseserial\": \"/0\",\n                        \"driverlicenseissued\": \"123\",\n                        \"inblacklist\": \"0\",\n                        \"driverlicensenumber\": null,\n                        \"driverlicenseissuedby\": null,\n                        \"car\": 15677,\n                        \"taxid\": \"\",\n                        \"demographicid\": \"123123123123-123123123\"\n                    },\n                    \"driver2\": null,\n                    \"car\": {\n                        \"id\": 15677,\n                        \"number\": \"123\",\n                        \"make\": {\n                            \"id\": 6,\n                            \"title_ru\": \"Citroen\"\n                        },\n                        \"cartype\": 10,\n                        \"loadcapacity\": \"0.000\",\n                        \"length\": 0.999,\n                        \"volume\": 0.999,\n                        \"remark\": \"\",\n                        \"carstyle\": \"singlecarstyle\",\n                        \"cellnum\": \"\",\n                        \"vin\": \"\",\n                        \"width\": 0,\n                        \"height\": 0,\n                        \"insuredTil\": \"0000-00-00\",\n                        \"weight\": 0,\n                        \"total_weight\": \"20.500\",\n                        \"axes\": 0,\n                        \"model\": null,\n                        \"vehicleclass\": null,\n                        \"trailer\": 180256,\n                        \"actual_provider_natcomid\": \"37534432\",\n                        \"actual_provider_title\": \"Sovtes, LTD\",\n                        \"body_type\": \"TIPPER\",\n                        \"body_type_unique_id\": 113\n                    },\n                    \"trailer\": {\n                        \"id\": \"180256\",\n                        \"number\": \"АА0000РІ\",\n                        \"loadcapacity\": \"0.000\",\n                        \"length\": \"13.000\",\n                        \"volume\": \"0.000\",\n                        \"width\": \"2.000\",\n                        \"axes\": \"0\",\n                        \"model\": \"SDR 27\",\n                        \"make\": \"KRONE\",\n                        \"total_weight\": \"35.000\",\n                        \"weight\": \"10.540\",\n                        \"height\": \"4.000\",\n                        \"body_type\": \"11-TIPPER\",\n                        \"body_type_unique_id\": 213\n                    },\n                    \"pricequote\": 0,\n                    \"loadquote\": null,\n                    \"pricequoteavailableuntil\": \"\",\n                    \"status\": \"\",\n                    \"remark\": \"\",\n                    \"selected\": \"0\",\n                    \"paymenttype\": \"0\",\n                    \"checkedtender\": \"0\",\n                    \"moment\": \"2016-06-16 16:59:02\",\n                    \"pricequoteavailableuntilmoment\": \"0000-00-00 00:00:00\",\n                    \"pricequotewing\": null,\n                    \"companytitle\": null,\n                    \"companytitlewing\": null,\n                    \"pricequotewithcommission\": null,\n                    \"orderlist\": null,\n                    \"cancelled\": \"0\",\n                    \"operatorsupervisorid\": null,\n                    \"operatorispartnerwithclient\": \"0\",\n                    \"isMine\": true\n                }\n            },\n            \"unitPrices\": [\n                {\n                    \"value\": \"331.09\",\n                    \"title\": \"UAH/tonn\"\n                },\n                {\n                    \"value\": \"0.00\",\n                    \"title\": \"UAH/mcub\"\n                },\n                {\n                    \"value\": \"0.00\",\n                    \"title\": \"UAH/km\"\n                }\n            ],\n            \"booktime\": 30,\n            \"bookedsince\": \"2019-12-06 13:23:04\",\n            \"bookedtill\": \"0000-00-00 00:00:00\",\n            \"bookedbyme\": false,\n            \"istender\": false,\n            \"maxquotewithcommission\": 0,\n            \"newMessages\": 0,\n            \"remark\": \"\",\n            \"nds\": false,\n            \"autosubscribe\": false,\n            \"blindtender\": false,\n            \"complete\": false,\n            \"deleted\":false,\n            \"operatordata\": {\n                \"title_ru\": \"Carrier 1, LTD\",\n                \"natcomid\":\"88888888\",\n                \"hash\": \"77f085a461d24c90296abcd5ff4cf62f\",\n                \"contract_number\": \"CSW-11\",\n                \"contract_date\": \"2024-08-01\"\n            },\n            \"routeparts\": [\n                {\n                    \"id\": 111365645,\n                    \"workaction\": 1,\n                    \"workaction_data\": {\n                        \"id\": \"1\",\n                        \"title_ru\": \"loading\",\n                        \"title_ru_rod_case\": \"loading\",\n                        \"title_ua\": \"loading\",\n                        \"title_ua_rod_case\": \"loading\",\n                        \"doer_ru\": \"shipper\",\n                        \"title_ru_accus_case\": \"loading\",\n                        \"instance_accus_case\": \"point of loading\",\n                        \"classic\": \"1\",\n                        \"title\": \"charge\"\n                    },\n                    \"checkpoint\": {\n                        \"id\": \"3941\",\n                        \"company\": {\n                            \"id\": \"3463\",\n                            \"title_ru\": \"Loader, LTD\",\n                            \"title_full_ru\": \"\",\n                            \"othercontactinfo\": \"\",\n                            \"country\": \"215\",\n                            \"ownership\": \"\",\n                            \"legaladdress\": \"\",\n                            \"factaddress\": \"\",\n                            \"bankaccount\": \"\",\n                            \"ifoid\": \"\",\n                            \"natcomid\": \"\",\n                            \"taxid\": \"\",\n                            \"vatid\": \"\",\n                            \"telnum\": \"\",\n                            \"faxnum\": \"\",\n                            \"email\": \"\",\n                            \"website\": \"\",\n                            \"bankname\": \"\",\n                            \"korraccount\": \"\",\n                            \"signer\": \"\",\n                            \"director\": \"\",\n                            \"actsonbaseof\": \"\",\n                            \"directorfirstname\": \"\",\n                            \"directorpatronymic\": \"\",\n                            \"cardnum\": \"\",\n                            \"cardholdername\": \"\",\n                            \"cardholdercode\": \"\",\n                            \"signer_case\": \"\",\n                            \"director_case\": \"\",\n                            \"apikeyNP\": \"\",\n                            \"logisticsratified\": \"0\",\n                            \"logisticsratifiedbyuser\": \"0\",\n                            \"logisticsratifiedmoment\": \"0000-00-00 00:00:00\",\n                            \"swift\": null,\n                            \"registryvalidated\": null\n                        },\n                        \"address\": \"1, High Street\",\n                        \"remark\": \"\",\n                        \"town\": {\n                            \"id\": \"7556\",\n                            \"title_ru\": \"Berdiansk\",\n                            \"region\": {\n                                \"id\": \"7\",\n                                \"title_ru\": \"Zaporizhzha oblast\",\n                                \"country\": \"215\",\n                                \"timezone\": \"\",\n                                \"title_ua\": \"Zaporizhzha oblast\"\n                            },\n                            \"country\": {\n                                \"id\": \"215\",\n                                \"title_ru\": \"Ukraine\",\n                                \"title_full_ru\": \" \",\n                                \"title_en\": \"Ukraine\",\n                                \"domainname\": \"UA\",\n                                \"iso_code\": \"UKR\",\n                                \"iso_num\": \"804\",\n                                \"continent\": \"Europe\",\n                                \"subcontinent\": \"East Europe\",\n                                \"currency\": \"грн\",\n                                \"currencycode\": \"uah\",\n                                \"webdomain\": \"sovtes.ua\",\n                                \"timezone\": \"+2\",\n                                \"title_alphabeta\": \"Ukraine\",\n                                \"vat\": \"20\",\n                                \"title_ua\": \"Ukraine\"\n                            },\n                            \"district\": \"\",\n                            \"latit\": \"46.7636100000\",\n                            \"longit\": \"36.7986100000\",\n                            \"borderswith\": \"0\",\n                            \"googleplaceid\": \"\",\n                            \"title_ua\": \"Berdiansk\",\n                            \"nationalid\": \"2310400000\",\n                            \"nationaltitle\": \"Berdiansk\"\n                        },\n                        \"start-workinghours\": \"\",\n                        \"end-workinghours\": \"\",\n                        \"customs\": \"0\",\n                        \"zip\": null,\n                        \"apicode\": \"3941\",\n                        \"json\": \"\",\n                        \"latit\": \"46.762989000000000\",\n                        \"longit\": \"36.793458000000000\",\n                        \"googleplaceid\": \"\",\n                        \"townstring\": \"\",\n                        \"duration\": \"120\",\n                        \"badcoords\": \"0\",\n                        \"radius_km\": \"0.5\",\n                        \"service\": \"0\",\n                        \"classic\": \"1\",\n                        \"client\": \"760\",\n                        \"harbor\": null,\n                        \"technote\":null\n                    },\n                    \"date1\": \"2016-06-16\",\n                    \"date2\": \"2016-06-21\",\n                    \"time1\": \"08:30:00\",\n                    \"time2\": \"14:00:00\",\n                    \"cargo\": \"Pallets\",\n                    \"dimensions\": [\n                        {\n                            \"value\": 45,\n                            \"title\": \"t weight\"\n                        },\n                        {\n                            \"value\": 0,\n                            \"title\": \"mcub volume\"\n                        },\n                        {\n                            \"value\": 0,\n                            \"title\": \"m length\"\n                        },\n                        {\n                            \"value\": 0,\n                            \"title\": \"m width\"\n                        },\n                        {\n                            \"value\": 0,\n                            \"title\": \"m height\"\n                        },\n                        {\n                            \"value\": 0,\n                            \"title\": null\n                        }\n                    ],\n                    \"complete\": false,\n                    \"triggered\": true,\n                    \"bordercrossforoperator\": false,\n                    \"checkpointcontacts\": {\n                        \"id\":1111,\n                        \"contactperson\": \"3067\",\n                        \"cellnum\": \"\",\n                        \"remark\": \"\"\n                    },\n                    \"plannedarrivaldate\": \"0000-00-00\",\n                    \"plannedarrivaltime\": \"00:00:00\",\n                    \"factarrivaldate\":\"0000-00-00\",\n                    \"factarrivaltime\":\"00:00:00\",\n                    \"workstartdate\":\"0000-00-00\",\n                    \"workstarttime\":\"00:00:00\",\n                    \"workcompletedate\":\"0000-00-00\",\n                    \"workcompletetime\":\"00:00:00\",\n                    \"suggestedOrder\":null\n                },\n                {\n                    \"id\": 111365646,\n                    \"workaction\": 1,\n                    \"workaction_data\": {\n                        \"id\": \"1\",\n                        \"title_ru\": \"loading\",\n                        \"title_ru_rod_case\": \"loading\",\n                        \"title_ua\": \"loading\",\n                        \"title_ua_rod_case\": \"loading\",\n                        \"doer_ru\": \"shipper\",\n                        \"title_ru_accus_case\": \"loading\",\n                        \"instance_accus_case\": \"point of loading\",\n                        \"classic\": \"1\",\n                        \"title\": \"charge\"\n                    },\n                    \"checkpoint\": {\n                        \"id\": \"4518\",\n                        \"company\": {\n                            \"id\": \"170\",\n                            \"title_ru\": \"ооо\",\n                            \"title_full_ru\": \"\",\n                            \"othercontactinfo\": \"\",\n                            \"country\": \"215\",\n                            \"ownership\": \"\",\n                            \"legaladdress\": \"\",\n                            \"factaddress\": \"\",\n                            \"bankaccount\": \"\",\n                            \"ifoid\": \"\",\n                            \"natcomid\": \"\",\n                            \"taxid\": \"\",\n                            \"vatid\": \"\",\n                            \"telnum\": \"\",\n                            \"faxnum\": \"\",\n                            \"email\": \"\",\n                            \"website\": \"\",\n                            \"bankname\": \"\",\n                            \"korraccount\": \"\",\n                            \"signer\": \"\",\n                            \"director\": \"\",\n                            \"actsonbaseof\": \"\",\n                            \"directorfirstname\": \"\",\n                            \"directorpatronymic\": \"\",\n                            \"cardnum\": \"\",\n                            \"cardholdername\": \"\",\n                            \"cardholdercode\": \"\",\n                            \"signer_case\": \"\",\n                            \"director_case\": \"\",\n                            \"apikeyNP\": \"\",\n                            \"logisticsratified\": \"0\",\n                            \"logisticsratifiedbyuser\": \"0\",\n                            \"logisticsratifiedmoment\": \"0000-00-00 00:00:00\",\n                            \"swift\": null,\n                            \"registryvalidated\": null\n                        },\n                        \"address\": \"1, Low Street\",\n                        \"remark\": \"\",\n                        \"town\": {\n                            \"id\": \"9327\",\n                            \"title_ru\": \"Bucha\",\n                            \"region\": {\n                                \"id\": \"9\",\n                                \"title_ru\": \"Kyiv region\",\n                                \"country\": \"215\",\n                                \"timezone\": \"\",\n                                \"title_ua\": \"Kyiv region\"\n                            },\n                            \"country\": {\n                                \"id\": \"215\",\n                                \"title_ru\": \"Ukraine\",\n                                \"title_full_ru\": \" \",\n                                \"title_en\": \"Ukraine\",\n                                \"domainname\": \"UA\",\n                                \"iso_code\": \"UKR\",\n                                \"iso_num\": \"804\",\n                                \"continent\": \"Europe\",\n                                \"subcontinent\": \"East Europe\",\n                                \"currency\": \"грн\",\n                                \"currencycode\": \"uah\",\n                                \"webdomain\": \"sovtes.ua\",\n                                \"timezone\": \"+2\",\n                                \"title_alphabeta\": \"Ukraine\",\n                                \"vat\": \"20\",\n                                \"title_ua\": \"Ukraine\"\n                            },\n                            \"district\": \"Irpin\",\n                            \"latit\": \"50.4461100000\",\n                            \"longit\": \"30.0652800000\",\n                            \"borderswith\": \"0\",\n                            \"googleplaceid\": \"\",\n                            \"title_ua\": \"Bucha\",\n                            \"nationalid\": \"3222480802\",\n                            \"nationaltitle\": \"Bucha\"\n                        },\n                        \"start-workinghours\": \"\",\n                        \"end-workinghours\": \"\",\n                        \"customs\": \"0\",\n                        \"zip\": null,\n                        \"apicode\": \"4518\",\n                        \"json\": \"\",\n                        \"latit\": \"50.550696000000000\",\n                        \"longit\": \"30.225138000000000\",\n                        \"googleplaceid\": \"\",\n                        \"townstring\": \"\",\n                        \"duration\": \"120\",\n                        \"badcoords\": \"0\",\n                        \"radius_km\": \"0.5\",\n                        \"service\": \"0\",\n                        \"classic\": \"1\",\n                        \"client\": \"760\",\n                        \"harbor\": null,\n                        \"technote\":null\n                    },\n                    \"date1\": \"2016-06-21\",\n                    \"date2\": \"0000-00-00\",\n                    \"time1\": \"00:00:00\",\n                    \"time2\": \"00:00:00\",\n                    \"cargo\": \"А\",\n                    \"dimensions\": [\n                        {\n                            \"value\": 1,\n                            \"title\": \"t weight\"\n                        },\n                        {\n                            \"value\": 0,\n                            \"title\": \"mcub volume\"\n                        },\n                        {\n                            \"value\": 0,\n                            \"title\": \"m length\"\n                        },\n                        {\n                            \"value\": 0,\n                            \"title\": \"m width\"\n                        },\n                        {\n                            \"value\": 0,\n                            \"title\": \"m height\"\n                        },\n                        {\n                            \"value\": 0,\n                            \"title\": null\n                        }\n                    ],\n                    \"complete\": false,\n                    \"triggered\": false,\n                    \"bordercrossforoperator\": false,\n                    \"checkpointcontacts\": {\n                        \"id\":1111,\n                        \"contactperson\": \"Jenny\",\n                        \"cellnum\": \"0676227670\",\n                        \"remark\": \"\"\n                    },\n                    \"plannedarrivaldate\": \"0000-00-00\",\n                    \"plannedarrivaltime\": \"00:00:00\",\n                    \"factarrivaldate\":\"0000-00-00\",\n                    \"factarrivaltime\":\"00:00:00\",   \n                    \"workstartdate\":\"0000-00-00\",\n                    \"workstarttime\":\"00:00:00\", \n                    \"workcompletedate\":\"0000-00-00\",\n                    \"workcompletetime\":\"00:00:00\",\n                    \"suggestedOrder\":null\n                },\n                {\n                    \"id\": 111365647,\n                    \"workaction\": 2,\n                    \"workaction_data\": {\n                        \"id\": \"2\",\n                        \"title_ru\": \"Unloading\",\n                        \"title_ru_rod_case\": \"unloading\",\n                        \"title_ua\": \"unloading\",\n                        \"title_ua_rod_case\": \"unloading\",\n                        \"doer_ru\": \"consignee\",\n                        \"title_ru_accus_case\": \"unloading\",\n                        \"instance_accus_case\": \"point of unloading\",\n                        \"classic\": \"1\",\n                        \"title\": \"uncharge\"\n                    },\n                    \"checkpoint\": {\n                        \"id\": \"4518\",\n                        \"company\": {\n                            \"id\": \"170\",\n                            \"title_ru\": \"ооо\",\n                            \"title_full_ru\": \"\",\n                            \"othercontactinfo\": \"\",\n                            \"country\": \"215\",\n                            \"ownership\": \"\",\n                            \"legaladdress\": \"\",\n                            \"factaddress\": \"\",\n                            \"bankaccount\": \"\",\n                            \"ifoid\": \"\",\n                            \"natcomid\": \"\",\n                            \"taxid\": \"\",\n                            \"vatid\": \"\",\n                            \"telnum\": \"\",\n                            \"faxnum\": \"\",\n                            \"email\": \"\",\n                            \"website\": \"\",\n                            \"bankname\": \"\",\n                            \"korraccount\": \"\",\n                            \"signer\": \"\",\n                            \"director\": \"\",\n                            \"actsonbaseof\": \"\",\n                            \"directorfirstname\": \"\",\n                            \"directorpatronymic\": \"\",\n                            \"cardnum\": \"\",\n                            \"cardholdername\": \"\",\n                            \"cardholdercode\": \"\",\n                            \"signer_case\": \"\",\n                            \"director_case\": \"\",\n                            \"apikeyNP\": \"\",\n                            \"logisticsratified\": \"0\",\n                            \"logisticsratifiedbyuser\": \"0\",\n                            \"logisticsratifiedmoment\": \"0000-00-00 00:00:00\",\n                            \"swift\": null,\n                            \"registryvalidated\": null\n                        },\n                        \"address\": \"1, Low Street\",\n                        \"remark\": \"\",\n                        \"town\": {\n                            \"id\": \"9327\",\n                            \"title_ru\": \"Bucha\",\n                            \"region\": {\n                                \"id\": \"9\",\n                                \"title_ru\": \"Kyiv region\",\n                                \"country\": \"215\",\n                                \"timezone\": \"\",\n                                \"title_ua\": \"Kyiv region\"\n                            },\n                            \"country\": {\n                                \"id\": \"215\",\n                                \"title_ru\": \"Ukraine\",\n                                \"title_full_ru\": \" \",\n                                \"title_en\": \"Ukraine\",\n                                \"domainname\": \"UA\",\n                                \"iso_code\": \"UKR\",\n                                \"iso_num\": \"804\",\n                                \"continent\": \"Europe\",\n                                \"subcontinent\": \"East Europe\",\n                                \"currency\": \"грн\",\n                                \"currencycode\": \"uah\",\n                                \"webdomain\": \"sovtes.ua\",\n                                \"timezone\": \"+2\",\n                                \"title_alphabeta\": \"Ukraine\",\n                                \"vat\": \"20\",\n                                \"title_ua\": \"Ukraine\"\n                            },\n                            \"district\": \"Irpin\",\n                            \"latit\": \"50.4461100000\",\n                            \"longit\": \"30.0652800000\",\n                            \"borderswith\": \"0\",\n                            \"googleplaceid\": \"\",\n                            \"title_ua\": \"Bucha\",\n                            \"nationalid\": \"3222480802\",\n                            \"nationaltitle\": \"Bucha\"\n                        },\n                        \"start-workinghours\": \"\",\n                        \"end-workinghours\": \"\",\n                        \"customs\": \"0\",\n                        \"zip\": null,\n                        \"apicode\": \"4518\",\n                        \"json\": \"\",\n                        \"latit\": \"50.550696000000000\",\n                        \"longit\": \"30.225138000000000\",\n                        \"googleplaceid\": \"\",\n                        \"townstring\": \"\",\n                        \"duration\": \"120\",\n                        \"badcoords\": \"0\",\n                        \"radius_km\": \"0.5\",\n                        \"service\": \"0\",\n                        \"classic\": \"1\",\n                        \"client\": \"760\",\n                        \"harbor\": null,\n                        \"technote\":null\n                    },\n                    \"date1\": \"2016-06-30\",\n                    \"date2\": \"2016-06-23\",\n                    \"time1\": \"08:30:00\",\n                    \"time2\": \"22:00:00\",\n                    \"cargo\": \"\",\n                    \"dimensions\": [\n                        {\n                            \"value\": 0,\n                            \"title\": \"t weight\"\n                        },\n                        {\n                            \"value\": 0,\n                            \"title\": \"mcub volume\"\n                        },\n                        {\n                            \"value\": 0,\n                            \"title\": \"m length\"\n                        },\n                        {\n                            \"value\": 0,\n                            \"title\": \"m width\"\n                        },\n                        {\n                            \"value\": 0,\n                            \"title\": \"m height\"\n                        },\n                        {\n                            \"value\": 0,\n                            \"title\": null\n                        }\n                    ],\n                    \"complete\": false,\n                    \"triggered\": false,\n                    \"bordercrossforoperator\": false,\n                    \"checkpointcontacts\": {\n                        \"id\":1111,\n                        \"contactperson\": \"Jenny\",\n                        \"cellnum\": \"0676227670\",\n                        \"remark\": \"\"\n                    },\n                    \"plannedarrivaldate\": \"0000-00-00\",\n                    \"plannedarrivaltime\": \"00:00:00\"\n                }\n            ]\n        }\n    }\n}"},{"id":"31b2b992-87df-4640-8ab6-dcdf919c9ac8","name":"Missing route number","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":{"raw":"{{host}}/a/v2/rest/public/singleRoute?route={{routePeriodic}}","host":["{{host}}"],"path":["a","v2","rest","public","singleRoute"],"query":[{"key":"route","value":"{{routePeriodic}}","description":"Single route/tender periodic"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"We couldn’t find such a route.\",\n    \"relogin\": false\n}"},{"id":"26894755-d7ba-48e8-bf6d-c2ef86b2c597","name":"Missing token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":{"raw":"{{host}}/a/v2/rest/public/singleRoute?route={{routePeriodic}}","host":["{{host}}"],"path":["a","v2","rest","public","singleRoute"],"query":[{"key":"route","value":"{{routePeriodic}}","description":"Single route/tender periodic"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token is required\",\n    \"relogin\": true\n}"},{"id":"ca642fc9-c866-4714-9639-58911250f517","name":"Success (tender)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":{"raw":"{{host}}/a/v2/rest/public/singleRoute?route={{tenderPeriodic}}","host":["{{host}}"],"path":["a","v2","rest","public","singleRoute"],"query":[{"key":"route","value":"{{tenderPeriodic}}","description":"Single route/tender periodic"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Server","value":"nginx/1.27.3"},{"key":"Date","value":"Thu, 09 Oct 2025 12:58:48 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"X-Xdebug-Profile-Filename","value":"/var/tmp/cachegrind.out.51724"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"route\": {\n            \"context\": {\n                \"title\": null,\n                \"iconTitle\": null\n            },\n            \"periodic\": \"163-07-25\",\n            \"id\": 104105,\n            \"userroutenumber\": \"asd\",\n            \"distance\": 1761.75,\n            \"budget\": 0,\n            \"budgetcomment\": \"tenderгрн Terms tender-genetiveYour-offer-was-selected. \",\n            \"kmprice\": 0.57,\n            \"tonnprice\": 23.81,\n            \"mcubeprice\": 0,\n            \"paymenttype\": {\n                \"id\": 2,\n                \"title\": \"Bank transfer\"\n            },\n            \"pricefor\": \"ride\",\n            \"cartype\": null,\n            \"ferryproperty\": [],\n            \"chargetype\": null,\n            \"defaultcurrency\": null,\n            \"totalweight\": 42,\n            \"routestatus\": -1,\n            \"companydata\": {\n                \"title_ru\": \"Client, LTD\",\n                \"natcomid\": \"1231231231231\"\n            },\n            \"clientdata\": {\n                \"hash\": \"3c5e448b11f15293807d9cfdedf21582\"\n            },\n            \"userclientdata\": {\n                \"name\": \"John Specialist\",\n                \"email\": \"email@email.com\",\n                \"cellnum\": \"+380673453456\"\n            },\n            \"useroperatordata\": {\n                \"name\": \"\",\n                \"email\": null,\n                \"cellnum\": null\n            },\n            \"routeresponse\": 76393,\n            \"response\": {\n                \"76393\": {\n                    \"id\": 76393,\n                    \"route\": 104105,\n                    \"operator\": 538,\n                    \"user\": 921,\n                    \"driver\": null,\n                    \"driver2\": null,\n                    \"car\": {\n                        \"id\": 0,\n                        \"number\": null,\n                        \"make\": {\n                            \"id\": 0\n                        },\n                        \"cartype\": 0,\n                        \"loadcapacity\": null,\n                        \"length\": 0,\n                        \"volume\": 0,\n                        \"remark\": null,\n                        \"carstyle\": null,\n                        \"cellnum\": null,\n                        \"vin\": null,\n                        \"width\": 0,\n                        \"height\": 0,\n                        \"insuredTil\": null,\n                        \"weight\": 0,\n                        \"total_weight\": null,\n                        \"axes\": 0,\n                        \"model\": null,\n                        \"vehicleclass\": null,\n                        \"trailer\": null,\n                        \"actual_provider_natcomid\": null,\n                        \"actual_provider_title\": null,\n                        \"body_type\": null,\n                        \"body_type_unique_id\": null,\n                        \"year_of_manufact\": 0,\n                        \"latit\": null,\n                        \"longit\": null\n                    },\n                    \"trailer\": null,\n                    \"pricequote\": 1000,\n                    \"loadquote\": \"2.00\",\n                    \"pricequoteavailableuntil\": \"\",\n                    \"status\": \"\",\n                    \"remark\": \"\",\n                    \"selected\": \"0\",\n                    \"paymenttype\": null,\n                    \"checkedtender\": \"0\",\n                    \"moment\": \"2025-07-24 12:32:08\",\n                    \"pricequoteavailableuntilmoment\": \"0000-00-00 00:00:00\",\n                    \"pricequotewing\": null,\n                    \"companytitle\": null,\n                    \"companytitlewing\": null,\n                    \"pricequotewithcommission\": \"1000.00\",\n                    \"orderlist\": null,\n                    \"cancelled\": \"0\",\n                    \"operatorsupervisorid\": \"278\",\n                    \"operatorispartnerwithclient\": \"1\",\n                    \"vat\": \"0.00\",\n                    \"nullified\": \"0\",\n                    \"classic_price_strategy\": \"0\",\n                    \"isMine\": true\n                }\n            },\n            \"unitPrices\": [\n                {\n                    \"value\": \"23.81\",\n                    \"title\": \"UAH/tonn\"\n                },\n                {\n                    \"value\": \"0.00\",\n                    \"title\": \"UAH/mcub\"\n                },\n                {\n                    \"value\": \"0.57\",\n                    \"title\": \"UAH/km\"\n                },\n                {\n                    \"value\": \"0.00\",\n                    \"title\": \"UAH/decaliter\"\n                },\n                {\n                    \"value\": \"0.00\",\n                    \"title\": \"UAH/pallet\"\n                }\n            ],\n            \"booktime\": 60,\n            \"bookedsince\": \"0000-00-00 00:00:00\",\n            \"bookedtill\": \"0000-00-00 00:00:00\",\n            \"bookedbyme\": false,\n            \"istender\": true,\n            \"maxquotewithcommission\": 0,\n            \"maxquote\": 0,\n            \"currentMinQuote\": 1000,\n            \"newMessages\": 0,\n            \"remark\": \"Quo qui perferendis modi placeat porro.\",\n            \"nds\": true,\n            \"autosubscribe\": false,\n            \"blindtender\": false,\n            \"freeforall\": false,\n            \"complete\": false,\n            \"deleted\": false,\n            \"operatordata\": {\n                \"title_ru\": \"Carrier 1, LTD\",\n                \"natcomid\": \"6722356984\",\n                \"hash\": \"316f03860bf020ffa01c50dceaaf7ba2\",\n                \"contract_number\": \"\",\n                \"contract_date\": \"0000-00-00\"\n            },\n            \"clientSettings\": {\n                \"forcestepquotes\": \"1\",\n                \"forcemaxquote\": \"1\",\n                \"allowOperatorIndicateRoutepartOrder\": \"1\",\n                \"showLoadSummary\": \"1\",\n                \"detailedLoadInfo\": \"1\",\n                \"warehouserForceLoadingArrival\": \"0\",\n                \"forceOperatorUnloadConfirm\": \"1\",\n                \"forceBorderInput\": \"1\",\n                \"routeresponseLimitHours\": \"3\",\n                \"allowRemarkPricequote\": \"1\"\n            },\n            \"tenderavailableunillmoment\": \"2025-07-24 22:22:00\",\n            \"tendertimetobepublished\": \"2025-07-24 12:31:52\",\n            \"step\": 0,\n            \"fastwinprice\": 0,\n            \"totalcount\": 2,\n            \"tenderterms\": null,\n            \"routetender\": {\n                \"tenderstatus\": 1,\n                \"winnerstatus\": 2\n            },\n            \"usermark\": {\n                \"userLevel\": null,\n                \"clientLevel\": null\n            },\n            \"routeparts\": [\n                {\n                    \"id\": 111391427,\n                    \"workaction\": 1,\n                    \"workaction_data\": {\n                        \"id\": \"1\",\n                        \"title_ru\": \"Loading\",\n                        \"title_ru_rod_case\": \"Loading\",\n                        \"title_ua\": \"Loading\",\n                        \"title_ua_rod_case\": \"Loading\",\n                        \"doer_ru\": \"shipper\",\n                        \"title_ru_accus_case\": \"loading\",\n                        \"instance_accus_case\": \"point of Loading\",\n                        \"classic\": \"1\",\n                        \"title\": \"charge\"\n                    },\n                    \"checkpoint\": {\n                        \"id\": \"10875\",\n                        \"address\": \"Bartley Park\",\n                        \"remark\": \"\",\n                        \"town\": {\n                            \"id\": \"2402083\",\n                            \"title_ru\": \"Southampton\",\n                            \"region\": {\n                                \"id\": \"3391\",\n                                \"title_ru\": \"England\",\n                                \"country\": \"193\",\n                                \"timezone\": \"\",\n                                \"title_ua\": \"\"\n                            },\n                            \"country\": {\n                                \"id\": \"193\",\n                                \"title_ru\": \"Great Britain\",\n                                \"title_full_ru\": \"The United Kingdom of Great Britain and Northern Ireland\",\n                                \"title_en\": \"United Kingdom\",\n                                \"domainname\": \"GB\",\n                                \"iso_code\": \"GBR\",\n                                \"iso_num\": \"826\",\n                                \"continent\": \"Europe\",\n                                \"subcontinent\": \"Northern Europe\",\n                                \"currency\": \"GBP\",\n                                \"currencycode\": \"gbp\",\n                                \"webdomain\": \".co.uk\",\n                                \"timezone\": \"+0\",\n                                \"title_alphabeta\": \"United Kingdom\",\n                                \"vat\": \"20\",\n                                \"title_ua\": \"Great Britain\"\n                            },\n                            \"district\": \"Hampshire\",\n                            \"latit\": \"50.9141239000\",\n                            \"longit\": \"-1.4985934000\",\n                            \"borderswith\": null,\n                            \"googleplaceid\": \"ChIJY3fauPyJc0gRKO3dNsgzN-A\",\n                            \"title_ua\": \"\",\n                            \"nationalid\": null,\n                            \"nationaltitle\": null\n                        },\n                        \"start-workinghours\": \"\",\n                        \"end-workinghours\": \"\",\n                        \"customs\": \"0\",\n                        \"zip\": null,\n                        \"apicode\": \"\",\n                        \"json\": \"0\",\n                        \"latit\": \"50.910540100000000\",\n                        \"longit\": \"-1.508143800000000\",\n                        \"googleplaceid\": \"ChIJY3fauPyJc0gRKO3dNsgzN-A\",\n                        \"townstring\": \"\",\n                        \"badcoords\": \"0\",\n                        \"radius_km\": \"0.5\",\n                        \"service\": \"0\",\n                        \"classic\": \"1\",\n                        \"client\": \"279\",\n                        \"harbor\": null,\n                        \"technote\": null\n                    },\n                    \"date1\": \"2025-07-31\",\n                    \"date2\": \"0000-00-00\",\n                    \"time1\": \"00:00:00\",\n                    \"time2\": \"00:00:00\",\n                    \"cargo\": \"Cargo 412506000\",\n                    \"chargeparams\": [\n                        [\n                            {\n                                \"title\": \"Esport declaration\",\n                                \"value\": \"exportDeclarationFromSupplier\"\n                            },\n                            {\n                                \"title\": \"Temperature requirements\",\n                                \"value\": \" ˚C\"\n                            }\n                        ]\n                    ],\n                    \"dimensions\": [\n                        {\n                            \"value\": 42,\n                            \"dimension\": \"weight\",\n                            \"measureunit\": \"tonn-abbr\",\n                            \"title\": \"tonn-abbr weight\"\n                        },\n                        {\n                            \"value\": 0,\n                            \"dimension\": \"volume\",\n                            \"measureunit\": \"mcube-abbr\",\n                            \"title\": \"mcube-abbr volume\"\n                        },\n                        {\n                            \"value\": 0,\n                            \"dimension\": \"length\",\n                            \"measureunit\": \"meter-abbr\",\n                            \"title\": \"meter-abbr length\"\n                        },\n                        {\n                            \"value\": 0,\n                            \"dimension\": \"width\",\n                            \"measureunit\": \"meter-abbr\",\n                            \"title\": \"meter-abbr width\"\n                        },\n                        {\n                            \"value\": 0,\n                            \"dimension\": \"height\",\n                            \"measureunit\": \"meter-abbr\",\n                            \"title\": \"meter-abbr height\"\n                        },\n                        {\n                            \"value\": 0,\n                            \"dimension\": \"dalvolume\",\n                            \"measureunit\": \"\",\n                            \"title\": \" dalvolume\"\n                        },\n                        {\n                            \"value\": 0,\n                            \"dimension\": \"palletplaces\",\n                            \"measureunit\": \"\",\n                            \"title\": \" palletplaces\"\n                        }\n                    ],\n                    \"complete\": false,\n                    \"triggered\": false,\n                    \"bordercrossforoperator\": false,\n                    \"checkpointcontacts\": null,\n                    \"plannedarrivaldate\": \"0000-00-00\",\n                    \"plannedarrivaltime\": \"00:00:00\",\n                    \"factarrivaldate\": \"0000-00-00\",\n                    \"factarrivaltime\": \"00:00:00\",\n                    \"workstartdate\": \"0000-00-00\",\n                    \"workstarttime\": \"00:00:00\",\n                    \"workcompletedate\": \"0000-00-00\",\n                    \"workcompletetime\": \"00:00:00\",\n                    \"suggestedOrder\": \"0\"\n                },\n                {\n                    \"id\": 111391428,\n                    \"workaction\": 2,\n                    \"workaction_data\": {\n                        \"id\": \"2\",\n                        \"title_ru\": \"unloading\",\n                        \"title_ru_rod_case\": \"unloading\",\n                        \"title_ua\": \"unloading\",\n                        \"title_ua_rod_case\": \"unloading\",\n                        \"doer_ru\": \"consignee\",\n                        \"title_ru_accus_case\": \"unloading\",\n                        \"instance_accus_case\": \"point of unloading\",\n                        \"classic\": \"1\",\n                        \"title\": \"uncharge\"\n                    },\n                    \"checkpoint\": {\n                        \"id\": \"10871\",\n                        \"address\": \"ul. some street, 12a\",\n                        \"remark\": \"\",\n                        \"town\": {\n                            \"id\": \"2402077\",\n                            \"title_ru\": \"Warsaw\",\n                            \"region\": {\n                                \"id\": \"3386\",\n                                \"title_ru\": \"\",\n                                \"country\": \"165\",\n                                \"timezone\": \"\",\n                                \"title_ua\": \"\"\n                            },\n                            \"country\": {\n                                \"id\": \"165\",\n                                \"title_ru\": \"Poland\",\n                                \"title_full_ru\": \"Republic of Poland\",\n                                \"title_en\": \"Poland\",\n                                \"domainname\": \"PL\",\n                                \"iso_code\": \"POL\",\n                                \"iso_num\": \"616\",\n                                \"continent\": \"Europe\",\n                                \"subcontinent\": \"East Europe\",\n                                \"currency\": \"\",\n                                \"currencycode\": \"\",\n                                \"webdomain\": \"\",\n                                \"timezone\": \"\",\n                                \"title_alphabeta\": \"Poland\",\n                                \"vat\": \"0\",\n                                \"title_ua\": \"Poland\"\n                            },\n                            \"district\": \"\",\n                            \"latit\": \"0.0000000000\",\n                            \"longit\": \"0.0000000000\",\n                            \"borderswith\": null,\n                            \"googleplaceid\": \"\",\n                            \"title_ua\": \"\",\n                            \"nationalid\": null,\n                            \"nationaltitle\": null\n                        },\n                        \"start-workinghours\": \"\",\n                        \"end-workinghours\": \"\",\n                        \"customs\": \"0\",\n                        \"zip\": null,\n                        \"apicode\": \"\",\n                        \"json\": \"0\",\n                        \"latit\": \"52.225118800000000\",\n                        \"longit\": \"21.012047400000000\",\n                        \"googleplaceid\": \"\",\n                        \"townstring\": \"\",\n                        \"badcoords\": \"0\",\n                        \"radius_km\": \"0.5\",\n                        \"service\": \"0\",\n                        \"classic\": \"1\",\n                        \"client\": \"279\",\n                        \"harbor\": null,\n                        \"technote\": null\n                    },\n                    \"date1\": \"2025-07-31\",\n                    \"date2\": \"0000-00-00\",\n                    \"time1\": \"00:00:00\",\n                    \"time2\": \"00:00:00\",\n                    \"cargo\": null,\n                    \"chargeparams\": [\n                        [\n                            {\n                                \"title\": \"Esport declaration\",\n                                \"value\": \"exportDeclarationFromSupplier\"\n                            },\n                            {\n                                \"title\": \"Temperature requirements\",\n                                \"value\": \" ˚C\"\n                            }\n                        ]\n                    ],\n                    \"dimensions\": [\n                        {\n                            \"value\": 42,\n                            \"dimension\": \"weight\",\n                            \"measureunit\": \"tonn-abbr\",\n                            \"title\": \"tonn-abbr weight\"\n                        },\n                        {\n                            \"value\": 0,\n                            \"dimension\": \"volume\",\n                            \"measureunit\": \"mcube-abbr\",\n                            \"title\": \"mcube-abbr volume\"\n                        },\n                        {\n                            \"value\": 0,\n                            \"dimension\": \"length\",\n                            \"measureunit\": \"meter-abbr\",\n                            \"title\": \"meter-abbr length\"\n                        },\n                        {\n                            \"value\": 0,\n                            \"dimension\": \"width\",\n                            \"measureunit\": \"meter-abbr\",\n                            \"title\": \"meter-abbr width\"\n                        },\n                        {\n                            \"value\": 0,\n                            \"dimension\": \"height\",\n                            \"measureunit\": \"meter-abbr\",\n                            \"title\": \"meter-abbr height\"\n                        },\n                        {\n                            \"value\": 0,\n                            \"dimension\": \"dalvolume\",\n                            \"measureunit\": \"\",\n                            \"title\": \" dalvolume\"\n                        },\n                        {\n                            \"value\": 0,\n                            \"dimension\": \"palletplaces\",\n                            \"measureunit\": \"\",\n                            \"title\": \" palletplaces\"\n                        }\n                    ],\n                    \"complete\": false,\n                    \"triggered\": false,\n                    \"bordercrossforoperator\": false,\n                    \"checkpointcontacts\": null,\n                    \"plannedarrivaldate\": \"0000-00-00\",\n                    \"plannedarrivaltime\": \"00:00:00\",\n                    \"factarrivaldate\": \"0000-00-00\",\n                    \"factarrivaltime\": \"00:00:00\",\n                    \"workstartdate\": \"0000-00-00\",\n                    \"workstarttime\": \"00:00:00\",\n                    \"workcompletedate\": \"0000-00-00\",\n                    \"workcompletetime\": \"00:00:00\",\n                    \"suggestedOrder\": \"0\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"4acb4720-d82e-45c9-b9e3-94a78a56dabe"},{"name":"Get Route Message Groups","event":[{"listen":"test","script":{"id":"99d9b58c-b40f-4ae2-8afb-88cbc3a2992d","exec":["var response = pm.response.json();\r","  \r","if (response.status === 200 || response.status === 'success') {\r","    pm.test(\"data in response matches array\", () => {\r","         pm.expect(response.data).to.be.an(\"array\");\r","    });\r","} else {\r","    pm.test(\"Response have relogin an Boolean\", () => {\r","        pm.expect(response.relogin).to.be.an('boolean');\r","    });\r","   \r","};"],"type":"text/javascript"}}],"id":"5b7f194b-4c42-48bc-8b7c-53aac36299c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getRouteMessageGroups?route={{periodic}}&collocutor={{companyHash}}","description":"<p>The method returns groups of messages for a given route/tender. Groups are grouped by collocutor, with last message included.</p>\n<p>If a certain collocutor company passed as <code>collocutor</code> param, then <em>all</em> messages from that collocutor are listed.</p>\n<ul>\n<li>if successful you will receive message groups or all messages of a collocutor</li>\n<li>if unsuccessful you will receive an error explaining the problem in the language you supplied with the header, or in the language set within the app if the route is unavailable</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getRouteMessageGroups"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Periodic of route/tender</p>\n","type":"text/plain"},"key":"route","value":"{{periodic}}"},{"description":{"content":"<p>Optional. If passed, shows all messages from the passed collocutor within the passed route/tender.</p>\n","type":"text/plain"},"key":"collocutor","value":"{{companyHash}}"}],"variable":[]}},"response":[{"id":"97239090-111d-4655-886c-becb628aafce","name":"Two companies (collocutors) in route/tender","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getRouteMessageGroups?route={{periodic}}","host":["{{host}}"],"path":["a","v2","rest","public","getRouteMessageGroups"],"query":[{"key":"route","value":"{{periodic}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"companyTitle\": \"Partner LTD\",\n            \"clientHash\": \"4901c7a773bcc4c5d124302482b88fbe\",\n            \"clientNatcomid\": \"6722356984\",\n            \"lastMessageShort\": \"first message\",\n            \"haveNewMessages\": true,\n            \"lastMessageDate\": \"2021-08-29 21:01:12\",\n            \"userAvatar\": \"\"\n        },\n        {\n            \"companyTitle\": \"Another Partner, LTD\",\n            \"clientHash\": \"302482b88fbe4901c7a773bcc4c5d124\",\n            \"clientNatcomid\": \"6721356984\",\n            \"lastMessageShort\": \"second message\",\n            \"haveNewMessages\": true,\n            \"lastMessageDate\": \"2021-08-29 21:00:47\",\n            \"userAvatar\": null\n        }\n    ]\n}"},{"id":"a0079572-f979-4b06-ab81-a554bca9c44b","name":"All messages from one company (collocutor) in route/tender","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getRouteMessageGroups?route={{periodic}}&collocutor={{companyHash}}","host":["{{host}}"],"path":["a","v2","rest","public","getRouteMessageGroups"],"query":[{"key":"route","value":"{{periodic}}"},{"key":"collocutor","value":"{{companyHash}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"158030\": {\n            \"content\": \"Please inform us in advance about the vehicle’s arrival.\",\n            \"authorName\": \"Sender\",\n            \"authorCompanyTitle\": \"Partner, LTD\",\n            \"authorHash\":\"a88a8888aaa8d88aa8a8d8a888a8aa88\",\n            \"authorNatcomid\": \"6722356984\",\n            \"new\": true,\n            \"userAvatar\": \"\",\n            \"moment\": \"2021-08-29 21:00:47\",\n            \"priority\": \"normal\",\n            \"content_plaintext\":\"content\"\n        },\n        \"158032\": {\n            \"content\": \"second message\",\n            \"authorName\": \"Sender\",\n            \"authorCompanyTitle\": \"Partner, LTD\",\n            \"authorHash\":\"a88a8888aaa8d88aa8a8d8a888a8aa88\",\n            \"authorNatcomid\": \"6712356984\",\n            \"new\": true,\n            \"userAvatar\": \"\",\n            \"moment\": \"2021-08-29 21:04:32\",\n            \"priority\": \"normal\",\n            \"content_plaintext\":\"content\"\n        }\n    }\n}"},{"id":"b4f9c3b6-0a45-4716-a2fb-f8ffb8330de2","name":"No messages for you in route/tender","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getRouteMessageGroups?route={{periodic}}","host":["{{host}}"],"path":["a","v2","rest","public","getRouteMessageGroups"],"query":[{"key":"route","value":"{{periodic}}","description":"Periodic of route/tender"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"804c2141-ee95-40f0-b5a3-55d1d576e4c0","name":"Invalid collocutor for valid route/tender","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getRouteMessageGroups?route={{periodic}}&collocutor={{companyHash}}","host":["{{host}}"],"path":["a","v2","rest","public","getRouteMessageGroups"],"query":[{"key":"route","value":"{{periodic}}","description":"Periodic of route/tender"},{"key":"collocutor","value":"{{companyHash}}","description":"Optional. If passed, shows all messages from the passed collocutor within the passed route/tender."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Company not found\",\n    \"relogin\": false\n}"},{"id":"3b2e3b14-7187-4489-8bb0-7f47f91be346","name":"Route not found","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getRouteMessageGroups?route={{periodic}}&collocutor={{companyHash}}","host":["{{host}}"],"path":["a","v2","rest","public","getRouteMessageGroups"],"query":[{"key":"route","value":"{{periodic}}","description":"Periodic of route/tender"},{"key":"collocutor","value":"{{companyHash}}","description":"Optional. If passed, shows all messages from the passed collocutor within the passed route/tender."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Route not found\",\n    \"relogin\": false\n}"},{"id":"719835f7-0532-42d0-a036-b74d60ae47a2","name":"No permission to view route/tender","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getRouteMessageGroups?route={{periodic}}","host":["{{host}}"],"path":["a","v2","rest","public","getRouteMessageGroups"],"query":[{"key":"route","value":"{{periodic}}"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"You dont have permission to view this route\",\n    \"relogin\": false\n}"}],"_postman_id":"5b7f194b-4c42-48bc-8b7c-53aac36299c1"},{"name":"Get Potential Message Recepients","event":[{"listen":"test","script":{"id":"99d9b58c-b40f-4ae2-8afb-88cbc3a2992d","exec":["var response = pm.response.json();\r","  \r","if (response.status === 200 || response.status === 'success') {\r","    pm.test(\"data in response matches array\", () => {\r","         pm.expect(response.data).to.be.an(\"array\");\r","    });\r","} else {\r","    pm.test(\"Response have relogin an Boolean\", () => {\r","        pm.expect(response.relogin).to.be.an('boolean');\r","    });\r","   \r","};"],"type":"text/javascript"}}],"id":"6e9a7a79-2ee8-4c42-a2c3-cec2766c41db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getRouteMessageRecepients?route={{singleRoute}}","description":"<p>This endpoint retrieves a list of potential message recipients for a specified route or tender. It requires a valid JWT token for authentication and allows specifying a preferred language for the feedback messages. The endpoint is particularly useful for obtaining relevant contacts for communication related to specific routes or tenders.</p>\n<ul>\n<li>if success response will include a list of potential message recipients</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getRouteMessageRecepients"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Periodic of route/tender</p>\n","type":"text/plain"},"key":"route","value":"{{singleRoute}}"}],"variable":[]}},"response":[{"id":"1ec84829-791a-4973-9d5a-1d085c4c9e91","name":"Route not found","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getRouteMessageRecepients?route={{periodic}}","host":["{{host}}"],"path":["a","v2","rest","public","getRouteMessageRecepients"],"query":[{"key":"route","value":"{{periodic}}","description":"Periodic of route/tender"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Route not found\",\n    \"relogin\": false\n}"},{"id":"4a73b050-606b-4262-aaf8-f87099cf7eef","name":"No permission to view route/tender","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getRouteMessageRecepients?","host":["{{host}}"],"path":["a","v2","rest","public","getRouteMessageRecepients"],"query":[{"key":"","value":null}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"You don’t have permission to view this route.\",\n    \"relogin\": false\n}"},{"id":"2da455ab-a1be-4756-8334-b6c7d5a3c8d7","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getRouteMessageRecepients?route={{singleRoute}}","host":["{{host}}"],"path":["a","v2","rest","public","getRouteMessageRecepients"],"query":[{"key":"route","value":"{{singleRoute}}","description":"Periodic of route/tender"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.25.1"},{"key":"Date","value":"Wed, 20 Dec 2023 14:12:51 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"recepientHash\": \"da9cc741ae2ca7e4adf596b773a7b187\",\n            \"recepientCompany\": \"Shipper LTD\",\n            \"recepientNatcomid\": \"37534432223\"\n        },\n        {\n            \"recepientHash\": \"316f03860bf020ffa01c50dceaaf7ba2\",\n            \"recepientCompany\": \"Shipper 2 LTD\",\n            \"recepientNatcomid\": \"47534432223\"\n        }\n    ]\n}"}],"_postman_id":"6e9a7a79-2ee8-4c42-a2c3-cec2766c41db"},{"name":"Send Message","id":"52193d8d-9dc2-44f8-9668-b02494f44d8f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"},{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"periodic\": \"{{singleRoute}}\",\n    \"recipient\": \"{{operatorHash}}\",\n    \"message\": \"{{plainTextMessage}}\" \n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/sendMessage","description":"<p>Allows shipper to send a plain text message to the carrier that pertains to a particular route.</p>\n<p>Params:</p>\n<ul>\n<li><strong>periodic</strong>: string, required, periodic of the route in question</li>\n<li><strong>recepient</strong>: string, requried, hash of the carrier</li>\n<li><strong>message</strong>: string, required, plain text message</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","sendMessage"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"ed95046a-f354-41a6-bf88-f532d6d4e8a7","name":"Token not supplied","originalRequest":{"method":"POST","header":[{"key":"Language","value":"{{language}}","type":"text"},{"key":"Authentication","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"periodic\": \"{{singleRoute}}\",\n    \"recipient\": \"{{operatorHash}}\",\n    \"message\": \"{{plainTextMessage}}\" \n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/sendMessage"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Mon, 01 May 2023 14:28:17 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"token is required\",\n    \"relogin\": true\n}"},{"id":"1e697d1b-ce89-4f88-a7d5-11103c833352","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Language","value":"{{language}}","type":"text"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"periodic\": \"18-07-21\",\n    \"recipient\": \"316f03860bf020ffa01c50dceaaf7ba2\",\n    \"message\": \"test message https://sovt.es\" \n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/sendMessage"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.25.1"},{"key":"Date","value":"Wed, 06 Dec 2023 17:06:43 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true\n}"}],"_postman_id":"52193d8d-9dc2-44f8-9668-b02494f44d8f"},{"name":"Get Route Chronology","event":[{"listen":"test","script":{"id":"d295adcf-31ef-4ba3-8269-7ec7cbb2f717","exec":["var response = pm.response.json();","var isContains = pm.response.text();","","if (response.status === 200 || response.status === 'success'){","    pm.test(\"data in response matches object\", () => {","        pm.expect(response.data).to.be.an(\"object\");","    });","","    pm.test(\"data in response contains a completeRoutes\", () => {","        pm.expect(isContains).to.include(\"routes\");","    });","","    pm.test(\"completeRoutes in response matches array\", () => {","        pm.expect(response.data.routes).to.be.an(\"array\");","    });","","    pm.test(\"data in response contains a page\", () => {","        pm.expect(isContains).to.include(\"page\");","    });","","    pm.test(\"data in response contains a perPage\", () => {","        pm.expect(isContains).to.include(\"perPage\");","    });","","    pm.test(\"data in response contains a total\", () => {","        pm.expect(isContains).to.include(\"total\");","    });","","    pm.test(\"data in response contains a offset\", () => {","        pm.expect(isContains).to.include(\"offset\");","    });","","}else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","}","","",""],"type":"text/javascript","packages":{}}}],"id":"38b25cce-2fb2-435d-a817-ef33bbc857d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/routeChronology?route={{singleRoute}}","description":"<p>Returns the list of actions (changes) performed with a single route/tender.</p>\n<ul>\n<li>if successful you will receive your route chronology </li>\n<li>if unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>(!) NOTE: If requested by a shipper account the endpoint returns all information. If requested by a carrier account, some limitations apply.</p>\n","urlObject":{"path":["a","v2","rest","public","routeChronology"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Single route periodic</p>\n","type":"text/plain"},"key":"route","value":"{{singleRoute}}"}],"variable":[]}},"response":[{"id":"e2d82f08-5a2f-47cd-8684-d302718e7db9","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/routeChronology?route={{singleRoute}}","host":["{{host}}"],"path":["a","v2","rest","public","routeChronology"],"query":[{"key":"route","value":"{{singleRoute}}","description":"Single route periodic"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"action\": \"Route published\",\n            \"author\": \"John Doe\",\n            \"date\": \"2020-01-20\",\n            \"time\": \"10:16\",\n            \"isMyCompany\": true\n        },\n        {\n            \"action\": \"The carrier proposed a vehicle.\",\n            \"author\": \"\",\n            \"date\": \"2020-01-20\",\n            \"time\": \"10:17\",\n            \"isMyCompany\": false\n        },\n        {\n            \"action\": \"The customer approved the proposal.\",\n            \"author\": \"\",\n            \"date\": \"2020-01-20\",\n            \"time\": \"10:17\",\n            \"isMyCompany\": false\n        },\n        {\n            \"action\": \"The carrier confirmed the work on the route.\",\n            \"author\": \"\",\n            \"date\": \"2020-01-20\",\n            \"time\": \"10:17\",\n            \"isMyCompany\": false\n        },\n        {\n            \"action\": \"The vehicle arrived for loading.\",\n            \"author\": \"\",\n            \"date\": \"2020-01-20\",\n            \"time\": \"10:17\",\n            \"isMyCompany\": false\n        },\n        {\n            \"action\": \"Loading confirmed successfully.\",\n            \"author\": \"\",\n            \"date\": \"2020-01-20\",\n            \"time\": \"10:17\",\n            \"isMyCompany\": false\n        },\n        {\n            \"action\": \"The vehicle arrived at customs.\",\n            \"author\": \"\",\n            \"date\": \"2020-01-20\",\n            \"time\": \"10:17\",\n            \"isMyCompany\": false\n        },\n        {\n            \"action\": \"The vehicle is back on the road.\",\n            \"author\": \"\",\n            \"date\": \"2020-01-20\",\n            \"time\": \"10:18\",\n            \"isMyCompany\": false\n        }\n    ]\n}"},{"id":"6fa3615a-2d0b-4657-ae16-fa66474d7db1","name":"Not allowed to view route","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/routeChronology?route={{singleRoute}}","host":["{{host}}"],"path":["a","v2","rest","public","routeChronology"],"query":[{"key":"route","value":"{{singleRoute}}","description":"Single route periodic"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"You don’t have permission to view this route.\",\n    \"relogin\": false\n}"}],"_postman_id":"38b25cce-2fb2-435d-a817-ef33bbc857d3"},{"name":"Get Route Fleet","event":[{"listen":"test","script":{"id":"7fb3cc3d-55b4-4126-8249-a0a96dca9f46","exec":["var response = pm.response.json();","var isContains = pm.response.text();","","if (response.status === 200 || response.status === 'success'){","    pm.test(\"data in response matches object\", () => {","        pm.expect(response.data).to.be.an(\"object\");","    });","","    pm.test(\"data in response contains a completeRoutes\", () => {","        pm.expect(isContains).to.include(\"routes\");","    });","","    pm.test(\"completeRoutes in response matches array\", () => {","        pm.expect(response.data.routes).to.be.an(\"array\");","    });","","    pm.test(\"data in response contains a page\", () => {","        pm.expect(isContains).to.include(\"page\");","    });","","    pm.test(\"data in response contains a perPage\", () => {","        pm.expect(isContains).to.include(\"perPage\");","    });","","    pm.test(\"data in response contains a total\", () => {","        pm.expect(isContains).to.include(\"total\");","    });","","    pm.test(\"data in response contains a offset\", () => {","        pm.expect(isContains).to.include(\"offset\");","    });","","}else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","}","","",""],"type":"text/javascript"}}],"id":"f984c434-2ee9-4c97-9f90-543d026b5db7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getRouteFleet?route={{singleRoute}}","description":"<p>Returns the information about the confirmed carrier, truck, drivers and trailer for the specified route.</p>\n<ul>\n<li>If successful you will receive information about the vehicle and the drivers on the route</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getRouteFleet"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Single route periodic</p>\n","type":"text/plain"},"key":"route","value":"{{singleRoute}}"}],"variable":[]}},"response":[{"id":"a96c530c-b2df-4a09-81b5-42896144fadf","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getRouteFleet?route={{singleRoute}}","host":["{{host}}"],"path":["a","v2","rest","public","getRouteFleet"],"query":[{"key":"route","value":"{{singleRoute}}","description":"Single route periodic"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"operator\": \"Carrier LTD\",\n        \"operatorhash\": \"a919ffa2c7a3be99212d75a631a46d4c\",\n        \"operatorNatcomid\": \"6722356984\",\n        \"operatorContractNumber\": \"\",\n        \"operatorContractDate\": \"0000-00-00\",\n        \"useroperator\": {\n            \"name\": \"Carrier Manager\",\n            \"cellnum\": \"+380692675706\",\n            \"email\": \"ktsom@some.com\"\n        },\n        \"driver\": {\n            \"inblacklist\": 0,\n            \"lastname\": \"White\",\n            \"firstname\": \"Walter\",\n            \"patronymic\": \"\",\n            \"passportserial\": \"\",\n            \"passportnumber\": \"\",\n            \"driverlicenseserial\": \"GGG\",\n            \"driverlicensenumber\": \"673329\",\n            \"maincellphone\": null,\n            \"demographicid\": \"123123123\"\n        },\n        \"driver2\": null,\n        \"car\": {\n            \"number\": \"CС9147EЕ\",\n            \"make\": \"Iveco\",\n            \"model\": \"STRALIS\",\n            \"actual_provider_natcomid\": null,\n            \"actual_provider_title\": null,\n            \"cartype\": \"тягач\",\n            \"loadcapacity\": \"0.000\",\n            \"length\": \"5.000\",\n            \"volume\": \"0.000\",\n            \"width\": \"2.500\",\n            \"height\": \"3.500\",\n            \"weight\": \"7.870\",\n            \"total_weight\": \"20.500\",\n            \"axes\": 0,\n            \"year_of_manufact\": 2011,\n            \"carstyle\": \"forcesplitcarstyle\",\n            \"cellnum\": \"\",\n            \"availabledatetime\": \"2022-11-24 00:00:00\",\n            \"vin\": \"WJMM1VTH904984751\",\n            \"gpsid\": null,\n            \"body_type\": \"Tractor unit (semi-truck)\",\n            \"body_type_unique_id\": 113,\n            \"insuredTil\": \"0000-00-00\"\n        },\n        \"trailer\": {\n            \"number\": \"ВВ1789ХА\",\n            \"make\": \"Kogel\",\n            \"model\": \"sn24\",\n            \"loadcapacity\": \"23.000\",\n            \"length\": \"13.000\",\n            \"width\": \"2.000\",\n            \"height\": \"2.750\",\n            \"volume\": \"0.000\",\n            \"weight\": \"7.000\",\n            \"total_weight\": \"35.000\",\n            \"axes\": 0,\n            \"cartype\": \"тент\",\n            \"year_of_manufact\": 2008,\n            \"vin\": \"wk0s0001401796987\",\n            \"body_type\": \"Flatbed truck with a tarpaulin (curtain-sided)\",\n            \"body_type_unique_id\": 213\n        }\n    }\n}"},{"id":"60db6519-0971-4520-8cba-81e017b4499e","name":"Not allowed to view route","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getRouteFleet?route={{singleRoute}}","host":["{{host}}"],"path":["a","v2","rest","public","getRouteFleet"],"query":[{"key":"route","value":"{{singleRoute}}","description":"Single route periodic"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"You don’t have permission to view this route.\",\n    \"relogin\": false\n}"}],"_postman_id":"f984c434-2ee9-4c97-9f90-543d026b5db7"},{"name":"Get Route Distance","event":[{"listen":"test","script":{"id":"7fb3cc3d-55b4-4126-8249-a0a96dca9f46","exec":["var response = pm.response.json();","var isContains = pm.response.text();","","if (response.status === 200 || response.status === 'success'){","    pm.test(\"data in response matches object\", () => {","        pm.expect(response.data).to.be.an(\"object\");","    });","","    pm.test(\"data in response contains a completeRoutes\", () => {","        pm.expect(isContains).to.include(\"routes\");","    });","","    pm.test(\"completeRoutes in response matches array\", () => {","        pm.expect(response.data.routes).to.be.an(\"array\");","    });","","    pm.test(\"data in response contains a page\", () => {","        pm.expect(isContains).to.include(\"page\");","    });","","    pm.test(\"data in response contains a perPage\", () => {","        pm.expect(isContains).to.include(\"perPage\");","    });","","    pm.test(\"data in response contains a total\", () => {","        pm.expect(isContains).to.include(\"total\");","    });","","    pm.test(\"data in response contains a offset\", () => {","        pm.expect(isContains).to.include(\"offset\");","    });","","}else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","}","","",""],"type":"text/javascript","packages":{}}}],"id":"0770b8a6-e27e-4814-a64e-1905b1244ff9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getRouteDistance?route={{singleRoute}}","description":"<p>Returns the information about the total route distance, as well as the distance to border, and the detailed distance between all points.</p>\n<ul>\n<li><p>If successful you will receive information about the vehicle and the drivers on the route</p>\n</li>\n<li><p>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</p>\n</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getRouteDistance"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Single route periodic</p>\n","type":"text/plain"},"key":"route","value":"{{singleRoute}}"}],"variable":[]}},"response":[{"id":"2fd0987a-c296-4d90-a762-12e84faa65f8","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getRouteDistance?route={{singleRoute}}","host":["{{host}}"],"path":["a","v2","rest","public","getRouteDistance"],"query":[{"key":"route","value":"{{singleRoute}}","description":"Single route periodic"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.27.3"},{"key":"Date","value":"Fri, 25 Apr 2025 16:29:29 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"X-Xdebug-Profile-Filename","value":"/var/tmp/cachegrind.out.82151"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"unit\": \"km\",\n        \"distance\": 3575.65,\n        \"distanceToBorder\": 760.16,\n        \"distanceAfterBorder\": 2815.4900000000002,\n        \"legs\": [\n            {\n                \"0\": {\n                    \"title\": \"Kyiv\",\n                    \"country\": \"UKR\",\n                    \"country_iso\": \"804\",\n                    \"latit\": 50.4167119,\n                    \"longit\": 30.539385\n                },\n                \"1\": {\n                    \"title\": \"Kyiv\",\n                    \"country\": \"UKR\",\n                    \"country_iso\": \"804\",\n                    \"latit\": 50.4449244,\n                    \"longit\": 30.5069196\n                },\n                \"distance\": 5.7\n            },\n            {\n                \"0\": {\n                    \"title\": \"Kyiv\",\n                    \"country\": \"UKR\",\n                    \"country_iso\": \"804\",\n                    \"latit\": 50.4449244,\n                    \"longit\": 30.5069196\n                },\n                \"1\": {\n                    \"title\": \"Reni\",\n                    \"country\": \"UKR\",\n                    \"country_iso\": \"804\",\n                    \"latit\": 45.46056,\n                    \"longit\": 28.28611\n                },\n                \"distance\": 754.46\n            },\n            {\n                \"0\": {\n                    \"title\": \"Reni\",\n                    \"country\": \"UKR\",\n                    \"country_iso\": \"804\",\n                    \"latit\": 45.46056,\n                    \"longit\": 28.28611\n                },\n                \"1\": {\n                    \"title\": \"Southampton\",\n                    \"country\": \"GBR\",\n                    \"country_iso\": \"826\",\n                    \"latit\": 50.9110102,\n                    \"longit\": -1.404417\n                },\n                \"distance\": 2815.49\n            }\n        ]\n    }\n}"},{"id":"74e10b11-e2e0-4237-bd3a-09a5c866cc69","name":"Not allowed to view route","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getRouteFleet?route={{singleRoute}}","host":["{{host}}"],"path":["a","v2","rest","public","getRouteFleet"],"query":[{"key":"route","value":"{{singleRoute}}","description":"Single route periodic"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"You don’t have permission to view this route.\",\n    \"relogin\": false\n}"}],"_postman_id":"0770b8a6-e27e-4814-a64e-1905b1244ff9"},{"name":"Get Route Documents","event":[{"listen":"test","script":{"id":"7fb3cc3d-55b4-4126-8249-a0a96dca9f46","exec":["var response = pm.response.json();","var isContains = pm.response.text();","","if (response.status === 200 || response.status === 'success'){","    pm.test(\"data in response matches object\", () => {","        pm.expect(response.data).to.be.an(\"object\");","    });","","    pm.test(\"data in response contains a completeRoutes\", () => {","        pm.expect(isContains).to.include(\"routes\");","    });","","    pm.test(\"completeRoutes in response matches array\", () => {","        pm.expect(response.data.routes).to.be.an(\"array\");","    });","","    pm.test(\"data in response contains a page\", () => {","        pm.expect(isContains).to.include(\"page\");","    });","","    pm.test(\"data in response contains a perPage\", () => {","        pm.expect(isContains).to.include(\"perPage\");","    });","","    pm.test(\"data in response contains a total\", () => {","        pm.expect(isContains).to.include(\"total\");","    });","","    pm.test(\"data in response contains a offset\", () => {","        pm.expect(isContains).to.include(\"offset\");","    });","","}else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","}","","",""],"type":"text/javascript"}}],"id":"614f8ebe-caa3-4d13-aa83-bf046950b6b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getRouteDocuments?route={{singleRoute}}","description":"<p>This endpoint allows you to retrieve documents related to a specific route.</p>\n<ul>\n<li>if successful response will include the documents related to the specified route.</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getRouteDocuments"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Single route periodic</p>\n","type":"text/plain"},"key":"route","value":"{{singleRoute}}"}],"variable":[]}},"response":[{"id":"766931df-da05-48f8-9368-0fd099aaa3cd","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getRouteDocuments?route={{singleRoute}}","host":["{{host}}"],"path":["a","v2","rest","public","getRouteDocuments"],"query":[{"key":"route","value":"{{singleRoute}}","description":"Single route periodic"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"url\": \"https://sovtes.devel:443/uploads/sovtes_uploadfile_6719_SPACE SPACE_6582c84b48b9f_.png\",\n            \"urlEncoded\": \"https%3A%2F%2Fsovtes.devel%3A443%2Fuploads%2Fsovtes_uploadfile_6719_SPACE+SPACE_6582c84b48b9f_.png\",\n            \"remark\": \"2013-12-15-в-21.26.55-e1387135740104\",\n            \"moment\": \"2023-12-20 12:56:13\",\n            \"authorUserId\": \"10194\",\n            \"authorUser\": \"Robot Valera\",\n            \"authorCompany\": \"Something, LTD\",\n            \"authorCompanyHash\": \"b1e411e6032a93bee5acfaff26173691\",\n            \"authorNatcomid\": \"2722356984\",\n            \"route\": \"52-10-23\",\n            \"extention\":\"png\"\n        },\n        {\n            \"url\": \"https://sovtes.devel/uploads/Sovtes-route-79669-a756fe-ttndraft.png\",\n            \"urlEncoded\": \"https%3A%2F%2Fsovtes.devel%2Fuploads%2FSovtes-route-79669-a756fe-ttndraft.png\",\n            \"remark\": \"ttndraft.png\",\n            \"moment\": \"2023-12-20 13:16:45\",\n            \"authorUserId\": \"11814\",\n            \"authorUser\": \"Super Oleg\",\n            \"authorCompany\": \"Something, LTD\",\n            \"authorCompanyHash\": \"b1e411e6032a93bee5acfaff26173691\",\n            \"authorNatcomid\": \"6722356984\",\n            \"route\": \"52-10-23\",\n            \"extention\":\"png\"\n        },\n        {\n            \"url\": \"https://sovtes.devel/uploads/Sovtes-route-57346-ac3aa6-ttndraft.png\",\n            \"urlEncoded\": \"https%3A%2F%2Fsovtes.devel%2Fuploads%2FSovtes-route-57346-ac3aa6-ttndraft.png\",\n            \"remark\": \"ttndraft.png\",\n            \"moment\": \"2023-12-20 13:17:00\",\n            \"authorUserId\": \"11814\",\n            \"authorUser\": \"Some User\",\n            \"authorCompany\": \"Something, LTD\",\n            \"authorCompanyHash\": \"b1e411e6032a93bee5acfaff26173691\",\n            \"authorNatcomid\": \"722356984\",\n            \"route\": \"52-10-23\",\n             \"extention\":\"png\"\n        }\n    ]\n}"},{"id":"d79fe36e-ad04-4585-b1b3-861f813841ea","name":"Invalid route number","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getRouteDocuments?route=7699-06-2","host":["{{host}}"],"path":["a","v2","rest","public","getRouteDocuments"],"query":[{"key":"route","value":"7699-06-2","description":"Single route periodic"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"You don’t have permission to view this route.\",\n    \"relogin\": false\n}"}],"_postman_id":"614f8ebe-caa3-4d13-aa83-bf046950b6b1"},{"name":"Add a Document to Route/Tender","id":"274d7fdf-9b4d-42bd-92f1-3a8e3313f1b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>Access token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"periodic","value":"{{singleRoute}}","description":"<p>Periodic of the route. Required. String/tender</p>\n","type":"text"},{"key":"documents[]","description":"<p>Document to be added into route</p>\n","type":"file","value":null},{"key":"documents[]","type":"file","value":null,"disabled":true}]},"url":"{{host}}/a/v2/rest/public/addDocument","description":"<p>Allows shippers and carriers to add documents to the order. Details of the allowed filetypes and size can be found in the endpoint GET getFileUploadRequirements (located in Aux folder of this documentation).</p>\n<p>No more than 5 files can be uploaded in a single request.</p>\n","urlObject":{"path":["a","v2","rest","public","addDocument"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"a029408a-97ae-4350-8461-ae4163055866","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"Access token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"periodic","value":"3005-06-22","description":"Periodic of the route. Required. String/tender","type":"text"},{"key":"documents[]","description":"Document to be added into route","type":"file","src":"/Users/dennisberg/Documents/ViberDownloads/0-02-0a-4f9bdbbac9084f6a3e726f30462e500aaf2ae740f4d8aa924e9e7a05d08e841d_2709ed6caa8.jpg"},{"key":"documents[]","type":"file","src":"/Users/dennisberg/Downloads/856 (1).pdf"},{"key":"documents[]","type":"file","value":null,"disabled":true}]},"url":"{{host}}/a/v2/rest/public/addDocument"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Thu, 16 Mar 2023 13:12:26 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"route\": \"3005-06-22\",\n        \"documents\": {\n            \"0-02-0a-4f9bdbbac9084f6a3e726f30462e500aaf2ae740f4d8aa924e9e7a05d08e841d_2709ed6caa8.jpg\": {\n                \"size\": \"250493\",\n                \"url\": \"https://sovtes.devel/uploads/Sovtes-route-43759-43a4af-0-02-0a-4f9bdbbac9084f6a3e726f30462e500aaf2ae740f4d8aa924e9e7a05d08e841d_2709ed6caa8.jpg\"\n            },\n            \"856 (1).pdf\": {\n                \"size\": \"189441\",\n                \"url\": \"https://sovtes.devel/uploads/Sovtes-route-71884-3dcba3-856 (1).pdf\"\n            }\n        }\n    }\n}"},{"id":"bcb8ec0c-ad17-4385-923e-1f1f45ce9c5a","name":"Invalid route","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"Access token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"periodic","value":"3005-06-222","description":"Periodic of the route. Required. String/tender","type":"text"},{"key":"documents[]","description":"Document to be added into route","type":"file","value":null},{"key":"documents[]","type":"file","src":"/Users/dennisberg/Downloads/856 (1).pdf"},{"key":"documents[]","type":"file","value":null,"disabled":true}]},"url":"{{host}}/a/v2/rest/public/addDocument"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Thu, 16 Mar 2023 13:13:10 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Route not found\",\n    \"relogin\": false\n}"},{"id":"57627fb4-3b7d-4c7f-896f-98762d58c7b5","name":"Not allowed to view route","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"Access token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"periodic","value":"3006-06-22","description":"Periodic of the route. Required. String/tender","type":"text"},{"key":"documents[]","description":"Document to be added into route","type":"file","value":null},{"key":"documents[]","type":"file","src":"/Users/dennisberg/Downloads/856 (1).pdf"},{"key":"documents[]","type":"file","value":null,"disabled":true}]},"url":"{{host}}/a/v2/rest/public/addDocument"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Thu, 16 Mar 2023 13:13:40 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"You don’t have permission to view this route.\",\n    \"relogin\": false\n}"},{"id":"c4306a15-fa65-45cc-9c3f-abfa379d4070","name":"Invalid file type passed","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"Access token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"periodic","value":"3005-06-22","description":"Periodic of the route. Required. String/tender","type":"text"},{"key":"documents[]","description":"Document to be added into route","type":"file","src":"/Users/dennisberg/Documents/dei/ CET134-webapps/cet134_assessment1_starter.zip"},{"key":"documents[]","type":"file","value":null},{"key":"documents[]","type":"file","value":null,"disabled":true}]},"url":"{{host}}/a/v2/rest/public/addDocument"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Thu, 16 Mar 2023 13:14:34 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Cet134_assessment1_starter.zip document is not one of jpg, jpeg, png, bmp, gif, tif, pdf, doc, docx, xls, xlsx (zip passed). Cannot proceed.\",\n    \"relogin\": false\n}"},{"id":"4957adde-d8bb-4a85-b300-41a28c2c5e6c","name":"Supplied file is infected","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"Access token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"periodic","value":"3005-06-22","description":"Periodic of the route. Required. String/tender","type":"text"},{"key":"documents[]","description":"Document to be added into route","type":"file","src":"/Users/dennisberg/Documents/sovtes/materials/tests/_output/CheckAbilityToRefuseRouteByOperatorCest.refuseFromRoute.fail.png"},{"key":"documents[]","type":"file","value":null},{"key":"documents[]","type":"file","value":null,"disabled":true}]},"url":"{{host}}/a/v2/rest/public/addDocument"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Thu, 16 Mar 2023 13:17:13 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"CheckAbilityToRefuseRouteByOperatorCest.refuseFromRoute.fail.png document is infected. Cannot proceed.\",\n    \"relogin\": false\n}"},{"id":"f06449b6-b8a2-4d71-a555-506867cbe29e","name":"Too many documents supplied","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"Access token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"periodic","value":"3005-06-22","description":"Periodic of the route. Required. String/tender","type":"text"},{"key":"documents[]","description":"Document to be added into route","type":"file","src":"/Users/dennisberg/Documents/sovtes/materials/tests/_output/CheckAbilityToRefuseRouteByOperatorCest.refuseFromRoute.fail.png"},{"key":"documents[]","type":"file","src":"/Users/dennisberg/Downloads/856 (1).pdf"},{"key":"documents[]","type":"file","src":"/Users/dennisberg/Downloads/1678970831998162 2.doc"},{"key":"documents[]","type":"file","src":"/Users/dennisberg/Downloads/1678970831998162.doc"},{"key":"documents[]","type":"file","src":"/Users/dennisberg/Downloads/експорт.pdf"},{"key":"documents[]","type":"file","src":"/Users/dennisberg/Downloads/sovtes-document-13784.pdf"}]},"url":"{{host}}/a/v2/rest/public/addDocument"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Thu, 16 Mar 2023 13:18:55 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"No more than 5 documents are allowed (6 supplied). Cannot proceed.\",\n    \"relogin\": false\n}"},{"id":"237b94ed-2891-4775-911b-166a7504854e","name":"Supplied document is too big","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"Access token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"periodic","value":"3005-06-22","description":"Periodic of the route. Required. String/tender","type":"text"},{"key":"documents[]","description":"Document to be added into route","type":"file","src":"/Users/dennisberg/Downloads/ticket_4995937.pdf"},{"key":"documents[]","type":"file","src":"/Users/dennisberg/Downloads/856 (1).pdf","disabled":true},{"key":"documents[]","type":"file","src":"/Users/dennisberg/Downloads/1678970831998162 2.doc","disabled":true},{"key":"documents[]","type":"file","src":"/Users/dennisberg/Downloads/1678970831998162.doc","disabled":true},{"key":"documents[]","type":"file","src":"/Users/dennisberg/Downloads/експорт.pdf","disabled":true},{"key":"documents[]","type":"file","src":"/Users/dennisberg/Downloads/sovtes-document-13784.pdf","disabled":true}]},"url":"{{host}}/a/v2/rest/public/addDocument"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Thu, 16 Mar 2023 13:19:42 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Ticket_4995937.pdf document is too big (9221KB). Must be less than 8MB. Cannot proceed.\",\n    \"relogin\": false\n}"}],"_postman_id":"274d7fdf-9b4d-42bd-92f1-3a8e3313f1b4"},{"name":"Create Order","id":"cf039100-a3fa-4cd3-a890-14c93e60ab08","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"route\":\"1-07-25\",\n    \"number\":\"11sed22esse\",\n    \"confirmation_number\":\"11repudiandae22nihil\",\n    \"customer_order_number\":\"11quo22eos\",\n    \"customer_date\":\"2025-12-01\",\n    \"customer_order_date\":\"2025-12-02\",\n    \"customer_gln\":\"1231231231\",\n    \"output_date\":\"2025-11-11\",\n    \"planned_delivery_date\":\"2025-11-15\",\n    \"contract_date\":\"2025-11-12\",\n    \"contract_number\":\"contract6\",\n    \"deliveryplace_gln\":\"q\",\n    \"deliveryplace_zip\":\"0\",\n    \"palletbases_plan\":22,\n    \"palletplaces_plan\":20,\n    \"aux\":\"some technical data\",\n    \"checkunique\":true,\n    \"products\":[\n        {\n            \"position\":1,\n            \"sku\":\"22Regional33\",\n            \"title\":\"smittles\",\n            \"quantity\":9,\n            \"ordered_quantity\":9,\n            \"available_quantity\":8,\n            \"measure_unit\":\"короб\",\n            \"weight\":0.212,\n            \"volume\":0.4089,\n            \"unit_price\":10.66,\n            \"total_price\":2901.55,\n            \"vat\":60,\n            \"barcode\":\"9876789876789\",\n            \"customer_code\":\"94080877\",\n            \"class\":\"JSON\"\n            },\n        {\n            \"position\":2,\n            \"sku\":\"m112323\",\n            \"title\":\"wiskas\",\n            \"quantity\":223,\n            \"measure_unit\":\"шт\",\n            \"weight\":0.933,\n            \"volume\":8.0289,\n            \"unit_price\":19.89,\n            \"total_price\":600,\n            \"vat\":125,\n            \"barcode\":\"9876789876789\",\n            \"customer_code\":\"65889617\",\n            \"class\":\"RAM\"\n        }\n    ]\n\n}"},"url":"{{host}}/a/v2/rest/public/createOrder","description":"<p>This endpoint allows you to create a new order by providing the necessary details about the route, order number, pallet plans, and product details.</p>\n<ul>\n<li>if successful response will confirm the creation of the order and provide details about the order.</li>\n</ul>\n<p><strong>Body:</strong></p>\n<p>The request body should be in raw JSON format containing the order details.</p>\n<ul>\n<li><p><strong>route:</strong> (string) required<br />  Description: Identifier of the route.</p>\n</li>\n<li><p><strong>number:</strong> (string) required<br />  Description: Order number</p>\n</li>\n<li><p><strong>palletbases_plan:</strong> (integer) required<br />  Description: Planned number of pallet bases.</p>\n</li>\n<li><p><strong>palletplaces_plan:</strong> (integer) required<br />  Description: Planned number of pallet places.</p>\n</li>\n<li><p><strong>aux:</strong> (string) optional<br />  Description: Additional technical data.</p>\n</li>\n<li><p><strong>products: (array of objects)</strong> required<br />  Description: List of products in the order. See below.</p>\n</li>\n<li><p><strong>checkunique</strong>: (bool) this is an optional parameter which checks, whether there already is an order with such number. If it happens to be the case, the duplicate order is rejected with an error.</p>\n</li>\n</ul>\n<p>Additional fields required for eCMR (eTTN):</p>\n<ul>\n<li><p><strong>customer_order_number</strong>: String. Optional. Order number of the buyer of the goods.</p>\n</li>\n<li><p><strong>customer_order_date:</strong> Date YYYY-MM-DD. Optional. Order date of the buyer of the goods.</p>\n</li>\n<li><p><strong>customer_gln:</strong> String. Optional. GLN of the buyer of the goods.</p>\n</li>\n<li><p><strong>output_date:</strong> Date YYYY-MM-DD. Optional. Loading date</p>\n</li>\n<li><p><strong>planned_delivery_date.</strong> Date YYYY-MM-DD. Optional. Planned unloading date</p>\n</li>\n<li><p><strong>contract_date:</strong> String. Optional. Contract date.</p>\n</li>\n<li><p><strong>contract_number:</strong> String. Optional. Contract number.</p>\n</li>\n<li><p><strong>deliveryplace_gln:</strong> String. Optional. GLN of the destination point.</p>\n</li>\n<li><p><strong>deliveryplace_zip:</strong> String. Optional. Post code of the destination point.</p>\n</li>\n</ul>\n<p>Products objects parameters:</p>\n<ul>\n<li><p><strong>position:</strong> String. Optional. Periodic position number in order.</p>\n</li>\n<li><p><strong>sku:</strong> String. Required. SKU of the product.</p>\n</li>\n<li><p><strong>title:</strong> String. Required. Description or name of the product.</p>\n</li>\n<li><p><strong>quantity:</strong> Decimal. Optional. Quantity of the item in the order, in whatever units.</p>\n</li>\n<li><p><strong>measure_unit:</strong> String. Optional. Measure unit, in whatever form needed. Example: BX, box.</p>\n</li>\n<li><p><strong>weight:</strong> Decimal. Optional. Weight in metric tonns.</p>\n</li>\n<li><p><strong>volume:</strong> Decimal. Optional. Volumne in cubic meters.</p>\n</li>\n<li><p><strong>unit_price:</strong> Decimal. Optional. Price for a single unit.</p>\n</li>\n<li><p><strong>total_price:</strong> Decimal. Optional. Price for all the units.</p>\n</li>\n<li><p><strong>vat:</strong> Decimal. Optional. VAT of all the units.</p>\n</li>\n<li><p><strong>barcode:</strong> String. Optional. Bar code of the item.</p>\n</li>\n<li><p><strong>customer_code:</strong> String. Optional. Customer product code.</p>\n</li>\n<li><p><strong>class:</strong> String. Optional. Category of goods.</p>\n</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","createOrder"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"d44e19dd-169c-41e6-9c84-9e6e3123b1f3","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"route\":\"7699-06-20\",\n    \"number\":\"050000000\",\n    \"palletbases_plan\":10,\n    \"palletplaces_plan\":20,\n    \"aux\":\"some technical data\",\n    \"customer_order_number\":\"11adipisci22dicta\",\n    \"customer_order_date\":\"2025-12-02\",\n    \"customer_gln\":\"1231231231\",\n    \"output_date\":\"2025-11-11\",\n    \"planned_delivery_date\":\"2025-11-15\",\n    \"contract_date\":\"2025-11-12\",\n    \"contract_number\":\"contractu\",\n    \"deliveryplace_gln\":\"j\",\n    \"deliveryplace_zip\":\"c\",\n    \"products\":[\n        {\n            \"position\":1,\n            \"sku\":\"12312223\",\n            \"title\":\"smittles\",\n            \"quantity\":9,\n            \"places\": 18.000,\n            \"measure_unit\":\"коробка\",\n            \"weight\":0.212,\n            \"volume\":0.4089,\n            \"unit_price\":10.66,\n            \"total_price\":2901.55,\n            \"vat\":60,\n            \"barcode\":\"9876789876789\",\n            \"customer_code\":\"75227843\",\n            \"class\":\"COM\"\n            },\n        {\n            \"position\":2,\n            \"sku\":\"m112323\",\n            \"title\":\"wiskas\",\n            \"quantity\":223,\n            \"measure_unit\":\"шт\",\n            \"weight\":0.933,\n            \"volume\":8.0289,\n            \"unit_price\":19.89,\n            \"total_price\":600,\n            \"vat\":125,\n            \"barcode\":\"9876789876780\",\n            \"customer_code\":\"75227846\",\n            \"class\":\"COM\"\n        }\n    ]\n\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/createOrder"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"id\": 1111,\n        \"route\": \"1111-01-10\",\n        \"number\": \"0500000000\"\n    }\n}"},{"id":"1270e703-67ea-4888-af39-b7270b0aa66a","name":"No token supplied","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"route\":\"6165-05-24\",\n    \"number\":\"0987689987\",\n    \"palletbases_plan\":10,\n    \"palletplaces_plan\":20,\n    \"aux\":\"some technical data\",\n    \"products\":[\n        {\n            \"position\":1,\n            \"sku\":\"12312223\",\n            \"title\":\"smittles\",\n            \"quantity\":9,\n            \"measure_unit\":\"короб\",\n            \"weight\":0.212,\n            \"volume\":0.4089,\n            \"unit_price\":10.66,\n            \"total_price\":2901.55,\n            \"vat\":60,\n            \"extra1\": 10.111,\n            \"extra2\": 200002.22222,\n            \"extra3\": 339999333.333333\n            },\n        {\n            \"position\":2,\n            \"sku\":\"m112323\",\n            \"title\":\"wiskas\",\n            \"quantity\":223,\n            \"measure_unit\":\"шт\",\n            \"weight\":0.933,\n            \"volume\":8.0289,\n            \"unit_price\":19.89,\n            \"total_price\":600,\n            \"vat\":125,\n            \"extra1\": 1.111,\n            \"extra2\": 2222222.22222,\n            \"extra3\": 3333333333.333333\n        }\n    ]\n\n}"},"url":"{{host}}/a/v2/rest/public/createOrder"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token is required\",\n    \"relogin\": true\n}"},{"id":"67c7c082-655d-44a6-962e-86f3e68ebcdd","name":"Bad request","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"route\":\"6165-05-24\",\n    \"number\":\"0987\n    \"palletplaces_plan\":20,\n    \"aux\":\"some technical data\",\n    \"products\":[\n        {\n            \"position\":1,\n            \"sku\":\"12312223\",\n            \"title\":\"smittles\",\n            \"quantity\":9,\n            \"measure_unit\":\"короб\",\n            \"weight\":0.212,\n            \"volume\":0.4089,\n            \"unit_price\":10.66,\n            \"total_price\":2901.55,\n            \"vat\":60,\n            \"extra1\": 10.111,\n            \"extra2\": 200002.22222,\n            \"extra3\": 339999333.333333\n            },\n        {\n            \"position\":2,\n            \"sku\":\"m112323\",\n            \"title\":\"wiskas\",\n            \"quantity\":223,\n            \"measure_unit\":\"шт\",\n            \"weight\":0.933,\n            \"volume\":8.0289,\n            \"unit_price\":19.89,\n            \"total_price\":600,\n            \"vat\":125,\n            \"extra1\": 1.111,\n            \"extra2\": 2222222.22222,\n            \"extra3\": 3333333333.333333\n        }\n    ]\n\n}"},"url":"{{host}}/a/v2/rest/public/createOrder"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Unsupported operand types\",\n    \"relogin\": false\n}"},{"id":"528b57f7-e74f-43d4-9982-44f869f652dc","name":"Duplicate order","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"route\":\"2-09-24\",\n    \"number\":\"0987689987\",\n    \"palletbases_plan\":10,\n    \"palletplaces_plan\":20,\n    \"aux\":\"some technical data\",\n    \"checkunique\":true,\n    \"products\":[\n        {\n            \"position\":1,\n            \"sku\":\"12312223\",\n            \"title\":\"smittles\",\n            \"quantity\":9,\n            \"measure_unit\":\"короб\",\n            \"weight\":0.212,\n            \"volume\":0.4089,\n            \"unit_price\":10.66,\n            \"total_price\":2901.55,\n            \"vat\":60,\n            \"extra1\": 10.111,\n            \"extra2\": 200002.22222,\n            \"extra3\": 339999333.333333\n            },\n        {\n            \"position\":2,\n            \"sku\":\"m112323\",\n            \"title\":\"wiskas\",\n            \"quantity\":223,\n            \"measure_unit\":\"шт\",\n            \"weight\":0.933,\n            \"volume\":8.0289,\n            \"unit_price\":19.89,\n            \"total_price\":600,\n            \"vat\":125,\n            \"extra1\": 1.111,\n            \"extra2\": 2222222.22222,\n            \"extra3\": 3333333333.333333\n        }\n    ]\n\n}"},"url":"{{host}}/a/v2/rest/public/createOrder"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Вже є таке замовлення в цьому маршруті\",\n    \"relogin\": false\n}"}],"_postman_id":"cf039100-a3fa-4cd3-a890-14c93e60ab08"},{"name":"Get orders of route","id":"d45a7e20-329c-4c53-bc59-f18909472228","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/a/v2/rest/public/getOrders?route={{routePeriodic}}","description":"<p>This endpoint retrieves all orders associated with a specific route.</p>\n<ul>\n<li>if successful response will return a list of orders associated with the specified route. Each order will include detailed information such as order ID, route, order number, pallet plans, product details, etc.</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getOrders"],"host":["{{host}}"],"query":[{"key":"route","value":"{{routePeriodic}}"}],"variable":[]}},"response":[{"id":"01d87aeb-9406-492c-9af5-d4113539b4db","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{host}}/a/v2/rest/public/getOrders?route={{routePeriodic}}","host":["{{host}}"],"path":["a","v2","rest","public","getOrders"],"query":[{"key":"route","value":"{{routePeriodic}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"route\": \"1162-07-21\",\n        \"orders\": [\n            {\n                \"number\": \"0987689987\",\n                \"total_weight\": \"1.145000\",\n                \"aux\": \"some technical data\",\n                \"products\": [\n                    {\n                        \"order\": 31,\n                        \"product\": 3,\n                        \"position\": \"1\",\n                        \"weight\": \"0.212009\",\n                        \"volume\": \"0.408900\",\n                        \"quantity\": \"9.000000\",\n                        \"measure_unit\": \"box\",\n                        \"unit_price\": \"10.660000\",\n                        \"vat\": \"60.000000\",\n                        \"total_price\": \"2901.550000\",\n                        \"aux\": null,\n                        \"extra1\": \"9.000000\",\n                        \"extra2\": \"2901.550000\",\n                        \"extra3\": \"0.212000\",\n                        \"extra4\": \"0.000000\",\n                        \"product_relation\": {\n                            \"id\": 3,\n                            \"title\": \"smittles\",\n                            \"code\": \"12312223\",\n                            \"aux\": null\n                        }\n                    },\n                    {\n                        \"order\": 31,\n                        \"product\": 4,\n                        \"position\": \"2\",\n                        \"weight\": \"0.933009\",\n                        \"volume\": \"8.028900\",\n                        \"quantity\": \"223.000009\",\n                        \"measure_unit\": \"pcs\",\n                        \"unit_price\": \"19.890000\",\n                        \"vat\": \"125.000000\",\n                        \"total_price\": \"600.000009\",\n                        \"aux\": null,\n                        \"extra1\": \"223.000000\",\n                        \"extra2\": \"600.000000\",\n                        \"extra3\": \"0.933000\",\n                        \"extra4\": \"0.000000\",\n                        \"product_relation\": {\n                            \"id\": 4,\n                            \"title\": \"wiskas\",\n                            \"code\": \"m112323\",\n                            \"aux\": null\n                        }\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"fe966fa4-ae7c-407c-b22f-3ae240c33c57","name":"Invalid route number","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{host}}/a/v2/rest/public/getOrders?route=\n{{routePeriodic}}","host":["{{host}}"],"path":["a","v2","rest","public","getOrders"],"query":[{"key":"route","value":"\n{{routePeriodic}}"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Route not found\",\n    \"relogin\": false\n}"}],"_postman_id":"d45a7e20-329c-4c53-bc59-f18909472228"},{"name":"Get variance/lateness reasons of route","id":"066231ab-e3ec-4340-8ecc-7e4459db7415","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/a/v2/rest/public/getVarianceLatenessReasons?route=117-01-25","description":"<p>This endpoint retrieves all variance or lateness reasons associated with a specific route.</p>\n<ul>\n<li>if successful response will return a list of variance or lateness reasons associated with the specified route. Each order will include detailed information such as order ID, route, order number, pallet plans, product details, etc.</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getVarianceLatenessReasons"],"host":["{{host}}"],"query":[{"key":"route","value":"117-01-25"}],"variable":[]}},"response":[{"id":"915d6708-bcc1-46e0-9fad-5117a5084945","name":"Invalid route number","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{host}}/a/v2/rest/public/getOrders?route=\n{{routePeriodic}}","host":["{{host}}"],"path":["a","v2","rest","public","getOrders"],"query":[{"key":"route","value":"\n{{routePeriodic}}"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Route not found\",\n    \"relogin\": false\n}"},{"id":"55797354-b9d6-4bf1-a273-ef2bbd396e50","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{host}}/a/v2/rest/public/getVarianceLatenessReasons?route={{singleRoute}}","host":["{{host}}"],"path":["a","v2","rest","public","getVarianceLatenessReasons"],"query":[{"key":"route","value":"{{singleRoute}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Server","value":"nginx/1.27.3"},{"key":"Date","value":"Fri, 12 Sep 2025 10:48:05 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"X-Xdebug-Profile-Filename","value":"/var/tmp/cachegrind.out.26634"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        [\n            {\n                \"code\": \"A\",\n                \"title\": \"Late delivery\",\n                \"type\": \"variance\"\n            },\n            {\n                \"code\": \"B\",\n                \"title\": \"Bad delivery date\",\n                \"type\": \"variance\"\n            },\n            {\n                \"code\": \"C\",\n                \"title\": \"Stop failed\",\n                \"type\": \"lateness\"\n            },\n            {\n                \"code\": \"D\",\n                \"title\": \"Weather conditions -- \",\n                \"type\": \"lateness\"\n            }\n        ]\n    ]\n}"}],"_postman_id":"066231ab-e3ec-4340-8ecc-7e4459db7415"},{"name":"Delete Orders","id":"10f452d9-ed51-4dfb-9528-8281faead9ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/deleteOrders/{{singleRoute}}","urlObject":{"path":["a","v2","rest","public","deleteOrders","{{singleRoute}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"db66c517-19c5-4b5c-aa03-4d0b0ffa1d3b","name":"Success","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/deleteOrders/{{singleRoute}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"deleted\": [\"order number 2\"]\n    }\n}"}],"_postman_id":"10f452d9-ed51-4dfb-9528-8281faead9ac"},{"name":"Arrival Estimate","id":"3315fcfb-5cfd-427d-8f83-79e0d619d87d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/getArrivalEstimate?route=","urlObject":{"path":["a","v2","rest","public","getArrivalEstimate"],"host":["{{host}}"],"query":[{"key":"route","value":""}],"variable":[]}},"response":[],"_postman_id":"3315fcfb-5cfd-427d-8f83-79e0d619d87d"},{"name":"Driver Location","id":"c89bc43e-9466-409e-a596-f8351e3de47f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n \"route\":\"3022-11-25\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/requestDriverLocation","urlObject":{"path":["a","v2","rest","public","requestDriverLocation"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c89bc43e-9466-409e-a596-f8351e3de47f"},{"name":"Сonfirm Route Change Request","id":"94d86185-3aab-41f3-ab49-2e6b6a8bb729","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT access token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"verdict\":\"yes|no\",\n    \"periodic\": \"{{singleRoute}}\",\n    \"routechange\": {{routeChangeId}}\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/confirmRouteChanges","description":"<p>Allows shippers to react to change requests issued by the shipper. Only after the ratification within this endpoint the changes requested by the other party take affect and actually change the state.</p>\n<p>Requested changes can be viewed via the <code>getRouteMessageGroups</code> endpoint.</p>\n<ul>\n<li>if successful you will have successfully ratified or declined the change request</li>\n<li>if unsuccessful you will receive an error explaining the problem in the language you supplied with the header, or in the language set within the app</li>\n</ul>\n<p>Params:</p>\n<ul>\n<li><code>verdict</code> : string, required. Supports only \"yes\" and \"no\". Indicates whether you ratify the requested changes or not.</li>\n<li><code>periodic</code> : string, required. The unique periodic of the route/order in question.</li>\n<li><code>routechange</code> : int, requried. The ID of the routechange, i.e. entity that corresponds to the change request.</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","confirmRouteChanges"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"53edf5a7-29dc-4079-a2f4-92f1f3b8a7db","name":"Invalid token","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"verdict\":\"yes|no\",\n    \"periodic\": \"1614-12-22\",\n    \"routechange\": 115560\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/confirmRouteChanges"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token is invalid\",\n    \"relogin\": true\n}"},{"id":"dc48ceb3-00f7-49ea-9349-a2f96f8b256e","name":"Bad routechange id supplied","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"verdict\":\"yes\",\n    \"periodic\": \"12-01-24\",\n    \"routechange\": 268422\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/confirmRouteChanges"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"routechange\": \"The following value must be valid routechange id initiated by provider\"\n}"},{"id":"9ab7ede8-4d81-4d87-a018-f5802dceef28","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT access token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"verdict\":\"yes\",\n    \"periodic\": \"12-01-24\",\n    \"routechange\": 26842\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/confirmRouteChanges"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true\n}"}],"_postman_id":"94d86185-3aab-41f3-ab49-2e6b6a8bb729"},{"name":"Request Change of Dates","id":"2bf17851-9735-4929-a86c-0250a6ebe06b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{ \n    \"periodic\": \"353-10-22\", \n    \"routepart\": 111551294,\n    \"newDate\": \"2024-10-10\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/requestChangeDates","description":"<p>Allows shippers to request a change of dates for a given routepart of a given route.</p>\n<ul>\n<li>if successful, the carrier will receive a notification about the date change request with details</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>NOTE: the request to change dates does not change the date. In order for the change to become active, the carrier of the route must confirm those changes.</p>\n<p>Params:</p>\n<ul>\n<li><code>periodic</code>: string, required</li>\n<li><code>routepart</code>: int, required</li>\n<li><code>newDate</code>: string, date format expected: YYYY-MM-DD</li>\n</ul>\n<p>Returns the ID of the routechange entity, which the carrier is expected to react upon.</p>\n","urlObject":{"path":["a","v2","rest","public","requestChangeDates"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"a649eb7a-299d-4b3a-b0c5-2adde3ac2794","name":"invalid token supplied","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{ \n    \"periodic\": \"{{routePeriodic}}\", \n    \"routepart\": {{routepartId}},\n    \"newDate\": \"{{newDate}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/requestChangeDates"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Thu, 06 Apr 2023 12:19:03 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Set-Cookie","value":"sovtes-session=umfjvu0d9aae0mf5qfjifvqo89; expires=Thu, 06-Apr-2023 20:19:03 GMT; Max-Age=28800; path=/"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token is invalid\",\n    \"relogin\": true\n}"},{"id":"0234b8c0-39e5-43a3-b619-91213b443475","name":"Bad routepart supplied","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{ \n    \"periodic\": \"{{routePeriodic}}\", \n    \"routepart\": {{wrongRoutepartId}},\n    \"newDate\": \"{{newDate}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/requestChangeDates"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Fri, 14 Apr 2023 08:41:01 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Wrong routepart number\",\n    \"relogin\": false\n}"},{"id":"3dc4e40d-1212-440b-a5e0-8c072c179a4a","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{ \n    \"periodic\": \"{{routePeriodic}}\", \n    \"routepart\": {{routepartId}},\n    \"newDate\": \"{{newDate}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/requestChangeDates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Fri, 14 Apr 2023 08:42:16 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"routechange\": 115568\n}"}],"_postman_id":"2bf17851-9735-4929-a86c-0250a6ebe06b"},{"name":"Request Vacantize Route","id":"a7f8c846-1685-4316-94b3-c7b9a2f8f55b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"periodic\": \"{{singleRoute}}\",\n    \"reason\": \"reason\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/requestVacantizeRoute","urlObject":{"path":["a","v2","rest","public","requestVacantizeRoute"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a7f8c846-1685-4316-94b3-c7b9a2f8f55b"},{"name":"Request Change Fleet","id":"397ccecc-dec3-4a29-abf3-d35cf8b975a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{ \n \"periodic\": \"1-12-23\", \n \"driver\":111,\n \"car\": 111,\n \"trailer\":111,\n \"driver2\":111,\n \"reason\":\"reason\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/requestChangeFleet","urlObject":{"path":["a","v2","rest","public","requestChangeFleet"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"397ccecc-dec3-4a29-abf3-d35cf8b975a2"},{"name":"Request Generic Changes","id":"288a0d95-d350-4f6b-ab7a-48d81c6f2d3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{ \n \"periodic\": \"1-11-11\", \n \"reason\":\"Some reason\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/requestGenericChanges","urlObject":{"path":["a","v2","rest","public","requestGenericChanges"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"288a0d95-d350-4f6b-ab7a-48d81c6f2d3f"},{"name":"Request Cancel","id":"942bbb2b-4dc0-48ea-8770-40fc5f24ea95","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{ \n \"periodic\": \"11-11-11\", \n \"reason\":\"Some reason\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/requestCancel","urlObject":{"path":["a","v2","rest","public","requestCancel"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"942bbb2b-4dc0-48ea-8770-40fc5f24ea95"},{"name":"Force Change Vehicle","id":"de554648-18fb-46cb-85de-3d3600c7b0b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{ \n \"periodic\": \"1-12-23\", \n \"driver\":111,\n \"car\": 111,\n \"trailer\":111,\n \"driver2\":111,\n \"reason\":\"reason\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/forceChangeVehicle","urlObject":{"path":["a","v2","rest","public","forceChangeVehicle"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"de554648-18fb-46cb-85de-3d3600c7b0b2"},{"name":"Confirm Unloading","id":"7623ddab-e5e7-486e-8c4e-1a280c7b2037","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"<p>route periodic</p>\n","type":"text"},{"key":"routepart","value":"{{routepartID}}","description":"<p>optional (int), but required if force flag is supplied, indicates which exactly point to confirm</p>\n","type":"text"},{"key":"force","value":"{{forceFlag}}","description":"<p>optional flag (0|1), if passed together with routepartId forces the completion of the unloading point regardless of whether the carrier arrived/completed or not</p>\n","type":"text"}]},"url":"{{host}}/a/v2/rest/public/confirmUncharge","description":"<p>Confirms the unloading by the shipper.</p>\n<p>If the route only contains one unloading point, then additional parameters might not come in handy. However, if there are several unloading points, additional logic may be applied based on the passed parameters.</p>\n<p>If only the <code>route</code> parameter is supplied (without additional parameters) then the endpoint considers the first unloading point as default one to confirm.</p>\n<p>You can indicate which exactly unloading point you want to confirm my passing the <code>routepartId</code> int parameter. You can get the routepart id using the <code>GET singleRoute</code> endpoint.</p>\n<p>Additionally, target point to confirm may not be ready for shipper confirmation, for example in case the carrier had not yet arrived to the point, or had not yet completed the loading process. In such cases, when the target point is not yet ready, you will receive a corresponding error message. However, you can pass the <code>force</code> param in order to override those limiting conditions. Use that flag only when you are sure that the unloading is truly complete and successful.</p>\n<p>(!) NOTE: when forcing confirmation of a particular non-first unloading on a complex route, all preceding points will be automatically set as complete.</p>\n<ul>\n<li>If successful, you will receive the success message, the unloading will be set as confirmed, and the route will get transitioned to the next corresponding status</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","confirmUncharge"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"38b63fe9-2ed7-49f4-a82b-58e3b7347ff9","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"route periodic","type":"text"},{"key":"routepart","value":"{{routepartId}}","description":"optional (int), but required if force flag is supplied, indicates which exactly point to confirm","type":"text"},{"key":"force","value":"1","description":"optional flag (0|1), if passed together with routepartId forces the completion of the loading point regardless of whether the carrier arrived/completed or not","type":"text","disabled":true}]},"url":"{{host}}/a/v2/rest/public/confirmUncharge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"de1ad552-452e-476e-824f-5ac0557c96f6","name":"Request by carrier","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"route periodic","type":"text"},{"key":"routepart","value":"{{routepartID}}","description":"optional (int), but required if force flag is supplied, indicates which exactly point to confirm","type":"text"},{"key":"force","value":"{{forceFlag}}","description":"optional flag (0|1), if passed together with routepartId forces the completion of the loading point regardless of whether the carrier arrived/completed or not","type":"text"}]},"url":"{{host}}/a/v2/rest/public/confirmUncharge"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Action not available\",\n    \"relogin\": false\n}"},{"id":"70762ebf-85fb-4bcc-8c1e-104aa4a2b02b","name":"Route not ready for unloading","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{singleRoute}}","description":"route periodic","type":"text"},{"key":"routepart","value":"{{routepartID}}","description":"optional (int), but required if force flag is supplied, indicates which exactly point to confirm","type":"text","disabled":true},{"key":"force","value":"{{forceFlag}}","description":"optional flag (0|1), if passed together with routepartId forces the completion of the loading point regardless of whether the carrier arrived/completed or not","type":"text","disabled":true}]},"url":"{{host}}/a/v2/rest/public/confirmUncharge"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"The route status doesn’t allow confirming unloading.\",\n    \"relogin\": false\n}"},{"id":"a8a3c646-3dc3-4485-95bc-ceb86b543abf","name":"Invalid route periodic passed","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"route","value":"{{invalidRoute}}","description":"route periodic","type":"text"},{"key":"routepart","value":"{{routepartID}}","description":"optional (int), but required if force flag is supplied, indicates which exactly point to confirm","type":"text"},{"key":"force","value":"{{forceFlag}}","description":"optional flag (0|1), if passed together with routepartId forces the completion of the loading point regardless of whether the carrier arrived/completed or not","type":"text"}]},"url":"{{host}}/a/v2/rest/public/confirmUncharge"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"You don’t have permission to view this route.\",\n    \"relogin\": false\n}"}],"_postman_id":"7623ddab-e5e7-486e-8c4e-1a280c7b2037"}],"id":"a1a95864-0d10-4ec9-b93e-9588b485ba77","_postman_id":"a1a95864-0d10-4ec9-b93e-9588b485ba77","description":""}],"id":"de4cf9d6-762f-4835-a0b1-9cdd8b5785ff","description":"<p>List of endpoints that allow to work with the master entities, routes and tenders.</p>\n","event":[{"listen":"prerequest","script":{"id":"d1857d5d-5477-4115-b933-9155ce140b48","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5d4ae5f8-5355-4115-889b-f0a2702f1d98","type":"text/javascript","exec":[""]}}],"_postman_id":"de4cf9d6-762f-4835-a0b1-9cdd8b5785ff"},{"name":"Fleet","item":[{"name":"For carriers","item":[{"name":"Get My Drivers","event":[{"listen":"test","script":{"id":"5718e638-5b42-4e71-b140-a57fff199419","exec":["var response = pm.response.json();","","if (response.status === 200 || response.status === 'success'){","","pm.test(\"data in response matches array\", () => {","  pm.expect(response.data).to.be.an(\"array\");","});","}else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","}","",""],"type":"text/javascript"}}],"id":"e05d3f08-a47b-47ba-8779-ed6dfd036a0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getMyDrivers","description":"<p>Returns the information about all the drivers within your company (name, phone number, license number, etc.) </p>\n<ul>\n<li>if successful you will receive information about all the drivers within your company </li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>(!) NOTE: Can be only used by carriers</p>\n","urlObject":{"path":["a","v2","rest","public","getMyDrivers"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"0f937985-8cd7-4008-b58b-70dd5f3ede44","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getMyDrivers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 3653,\n            \"lastname\": \"White\",\n            \"firstname\": \"Walter\",\n            \"patronymic\": \"Hartwell\",\n            \"maincellphone\": \"+447700900001\",\n            \"passportserial\": \"UK 123321\",\n            \"driverlicenseserial\": \"DVLA\",\n            \"driverlicenseissued\": \"2019-09-12\",\n            \"inblacklist\": 0,\n            \"driverlicensenumber\": \"420335\",\n            \"driverlicenseissuedby\": \"DVLA Swansea\",\n            \"car\": 3687,\n            \"taxid\": \"\"\n        },\n        {\n            \"id\": 7953,\n            \"lastname\": \"Pinkman\",\n            \"firstname\": \"Jesse\",\n            \"patronymic\": \"Bruce\",\n            \"maincellphone\": \"+447700900002\",\n            \"passportserial\": \"UK 123456\",\n            \"driverlicenseserial\": \"UKA123\",\n            \"driverlicenseissued\": \"DVLA London\",\n            \"inblacklist\": 0,\n            \"driverlicensenumber\": null,\n            \"driverlicenseissuedby\": null,\n            \"car\": 8062,\n            \"taxid\": \"\"\n        },\n        {\n            \"id\": 8244,\n            \"lastname\": \"Schrader\",\n            \"firstname\": \"Hank\",\n            \"patronymic\": \"Douglas\",\n            \"maincellphone\": \"+447700900003\",\n            \"passportserial\": \"\",\n            \"driverlicenseserial\": \"UKB989\",\n            \"driverlicenseissued\": \"DVLA Manchester\",\n            \"inblacklist\": 0,\n            \"driverlicensenumber\": null,\n            \"driverlicenseissuedby\": null,\n            \"car\": 8356,\n            \"taxid\": \"\"\n        },\n        {\n            \"id\": 8245,\n            \"lastname\": \"Goodman\",\n            \"firstname\": \"Saul\",\n            \"patronymic\": \"James\",\n            \"maincellphone\": \"+447700900004\",\n            \"passportserial\": \"\",\n            \"driverlicenseserial\": \"UKC889\",\n            \"driverlicenseissued\": \"DVLA Birmingham\",\n            \"inblacklist\": 0,\n            \"driverlicensenumber\": null,\n            \"driverlicenseissuedby\": null,\n            \"car\": 8357,\n            \"taxid\": \"\"\n        },\n        {\n            \"id\": 8246,\n            \"lastname\": \"Ehrmantraut\",\n            \"firstname\": \"Mike\",\n            \"patronymic\": \"Jonathan\",\n            \"maincellphone\": \"+447700900005\",\n            \"passportserial\": \"\",\n            \"driverlicenseserial\": \"UKD998\",\n            \"driverlicenseissued\": \"DVLA Leeds\",\n            \"inblacklist\": 0,\n            \"driverlicensenumber\": null,\n            \"driverlicenseissuedby\": null,\n            \"car\": 8358,\n            \"taxid\": \"\"\n        },\n        {\n            \"id\": 9501,\n            \"lastname\": \"Fring\",\n            \"firstname\": \"Gustavo\",\n            \"patronymic\": \"Alberto\",\n            \"maincellphone\": \"+447700900006\",\n            \"passportserial\": \"\",\n            \"driverlicenseserial\": \"UKE111\",\n            \"driverlicenseissued\": \"DVLA Bristol\",\n            \"inblacklist\": 0,\n            \"driverlicensenumber\": null,\n            \"driverlicenseissuedby\": null,\n            \"car\": 9820,\n            \"taxid\": \"\"\n        },\n        {\n            \"id\": 12715,\n            \"lastname\": \"Salamanca\",\n            \"firstname\": \"Tuco\",\n            \"patronymic\": \"\",\n            \"maincellphone\": \"+447700900007\",\n            \"passportserial\": \"\",\n            \"driverlicenseserial\": \"UKF222\",\n            \"driverlicenseissued\": \"DVLA Liverpool\",\n            \"inblacklist\": 0,\n            \"driverlicensenumber\": null,\n            \"driverlicenseissuedby\": null,\n            \"car\": 13535,\n            \"taxid\": \"\"\n        },\n        {\n            \"id\": 12716,\n            \"lastname\": \"Varga\",\n            \"firstname\": \"Nacho\",\n            \"patronymic\": \"\",\n            \"maincellphone\": \"+447700900008\",\n            \"passportserial\": \"\",\n            \"driverlicenseserial\": \"UKG333\",\n            \"driverlicenseissued\": \"DVLA Sheffield\",\n            \"inblacklist\": 0,\n            \"driverlicensenumber\": null,\n            \"driverlicenseissuedby\": null,\n            \"car\": 13538,\n            \"taxid\": \"\"\n        },\n        {\n            \"id\": 12717,\n            \"lastname\": \"McGill\",\n            \"firstname\": \"Jimmy\",\n            \"patronymic\": \"\",\n            \"maincellphone\": \"+447700900009\",\n            \"passportserial\": \"\",\n            \"driverlicenseserial\": \"UKH444\",\n            \"driverlicenseissued\": \"DVLA Nottingham\",\n            \"inblacklist\": 0,\n            \"driverlicensenumber\": null,\n            \"driverlicenseissuedby\": \"DVLA Office\",\n            \"car\": 13540,\n            \"taxid\": \"\"\n        },\n        {\n            \"id\": 12718,\n            \"lastname\": \"Wexler\",\n            \"firstname\": \"Kim\",\n            \"patronymic\": \"\",\n            \"maincellphone\": \"+447700900010\",\n            \"passportserial\": \"\",\n            \"driverlicenseserial\": \"UKI555\",\n            \"driverlicenseissued\": \"2019-09-02\",\n            \"inblacklist\": 0,\n            \"driverlicensenumber\": \"AS789654\",\n            \"driverlicenseissuedby\": \"DVLA Swansea\",\n            \"car\": 13541,\n            \"taxid\": \"\"\n        },\n        {\n            \"id\": 12719,\n            \"lastname\": \"Boetticher\",\n            \"firstname\": \"Gale\",\n            \"patronymic\": \"\",\n            \"maincellphone\": \"+447700900011\",\n            \"passportserial\": \"\",\n            \"driverlicenseserial\": \"UKJ666\",\n            \"driverlicenseissued\": \"DVLA Oxford\",\n            \"inblacklist\": 0,\n            \"driverlicensenumber\": null,\n            \"driverlicenseissuedby\": null,\n            \"car\": 13543,\n            \"taxid\": \"\"\n        },\n        {\n            \"id\": 12720,\n            \"lastname\": \"Cantillo\",\n            \"firstname\": \"Andrea\",\n            \"patronymic\": \"\",\n            \"maincellphone\": \"+447700900012\",\n            \"passportserial\": \"\",\n            \"driverlicenseserial\": \"UKK777\",\n            \"driverlicenseissued\": \"DVLA Reading\",\n            \"inblacklist\": 0,\n            \"driverlicensenumber\": null,\n            \"driverlicenseissuedby\": null,\n            \"car\": 13546,\n            \"taxid\": \"\"\n        },\n        {\n            \"id\": 12724,\n            \"lastname\": \"Molina\",\n            \"firstname\": \"Brock\",\n            \"patronymic\": \"\",\n            \"maincellphone\": \"+447700900013\",\n            \"passportserial\": \"\",\n            \"driverlicenseserial\": \"UKL888\",\n            \"driverlicenseissued\": \"DVLA Cardiff\",\n            \"inblacklist\": 0,\n            \"driverlicensenumber\": null,\n            \"driverlicenseissuedby\": null,\n            \"car\": 13555,\n            \"taxid\": \"\"\n        },\n        {\n            \"id\": 12727,\n            \"lastname\": \"Kuby\",\n            \"firstname\": \"Patrick\",\n            \"patronymic\": \"\",\n            \"maincellphone\": \"+447700900014\",\n            \"passportserial\": \"\",\n            \"driverlicenseserial\": \"UKM999\",\n            \"driverlicenseissued\": \"DVLA Glasgow\",\n            \"inblacklist\": 0,\n            \"driverlicensenumber\": null,\n            \"driverlicenseissuedby\": null,\n            \"car\": 13559,\n            \"taxid\": \"\"\n        },\n        {\n            \"id\": 12738,\n            \"lastname\": \"Hu\",\n            \"firstname\": \"Bill\",\n            \"patronymic\": \"\",\n            \"maincellphone\": \"+447700900015\",\n            \"passportserial\": \"\",\n            \"driverlicenseserial\": \"UKN101\",\n            \"driverlicenseissued\": \"DVLA Edinburgh\",\n            \"inblacklist\": 0,\n            \"driverlicensenumber\": null,\n            \"driverlicenseissuedby\": null,\n            \"car\": 13572,\n            \"taxid\": \"\"\n        },\n        {\n            \"id\": 12742,\n            \"lastname\": \"Babineaux\",\n            \"firstname\": \"Francesca\",\n            \"patronymic\": \"\",\n            \"maincellphone\": \"+447700900016\",\n            \"passportserial\": \"\",\n            \"driverlicenseserial\": \"UKP747\",\n            \"driverlicenseissued\": \"DVLA Newcastle\",\n            \"inblacklist\": 0,\n            \"driverlicensenumber\": null,\n            \"driverlicenseissuedby\": null,\n            \"car\": 13576,\n            \"taxid\": \"\"\n        }\n    ]\n}"},{"id":"80b8a708-6090-40ae-997b-0871d16db3f8","name":"Request by shipper","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getMyDrivers"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"You don’t have permission to view this data\",\n    \"relogin\": false\n}"}],"_postman_id":"e05d3f08-a47b-47ba-8779-ed6dfd036a0b"},{"name":"Get My Trailers","event":[{"listen":"test","script":{"id":"5718e638-5b42-4e71-b140-a57fff199419","exec":["var response = pm.response.json();","","if (response.status === 200 || response.status === 'success'){","","pm.test(\"data in response matches array\", () => {","  pm.expect(response.data).to.be.an(\"array\");","});","}else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","}"],"type":"text/javascript"}}],"id":"1f881048-6a02-485f-be27-83e5b67379e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getMyTrailers","description":"<p>Returns the information about all the trailers of your company (registration number, load capacity, model, etc.)</p>\n<ul>\n<li>if successful you will receive information about all the trailers within your company</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>(!) NOTE: Can be only used by carriers</p>\n","urlObject":{"path":["a","v2","rest","public","getMyTrailers"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"0b2c7749-8e98-4298-8d89-e2c0958fa6b5","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":" JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"if unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app","type":"text"}],"url":"{{host}}/a/v2/rest/public/getMyTrailers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 3709,\n            \"number\": \"BN08XHR\",\n            \"loadcapacity\": 19,\n            \"length\": 21,\n            \"volume\": 0,\n            \"width\": 0,\n            \"axes\": 0,\n            \"model\": \"SCHWARZMULLER PA-2E\"\n        },\n        {\n            \"id\": 8120,\n            \"number\": \"AA22XXH\",\n            \"loadcapacity\": 22,\n            \"length\": 13.6,\n            \"volume\": 86,\n            \"width\": 0,\n            \"axes\": 0,\n            \"model\": null\n        },\n        {\n            \"id\": 8416,\n            \"number\": \"LL99SSQ\",\n            \"loadcapacity\": 22,\n            \"length\": 12,\n            \"volume\": 89,\n            \"width\": 0,\n            \"axes\": 0,\n            \"model\": null\n        },\n        {\n            \"id\": 8417,\n            \"number\": \"OO77OOO\",\n            \"loadcapacity\": 189,\n            \"length\": 12,\n            \"volume\": 90,\n            \"width\": 0,\n            \"axes\": 0,\n            \"model\": null\n        },\n        {\n            \"id\": 9704,\n            \"number\": \"666\",\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"width\": 0,\n            \"axes\": 0,\n            \"model\": null\n        },\n        {\n            \"id\": 12932,\n            \"number\": \"CCC\",\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"width\": 0,\n            \"axes\": 0,\n            \"model\": null\n        },\n        {\n            \"id\": 12933,\n            \"number\": \"FYVYF\",\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"width\": 0,\n            \"axes\": 0,\n            \"model\": null\n        },\n        {\n            \"id\": 12934,\n            \"number\": \"FYAP\",\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"width\": 0,\n            \"axes\": 0,\n            \"model\": null\n        },\n        {\n            \"id\": 12935,\n            \"number\": \"666\",\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"width\": 0,\n            \"axes\": 0,\n            \"model\": null\n        },\n        {\n            \"id\": 12936,\n            \"number\": \"777\",\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"width\": 0,\n            \"axes\": 0,\n            \"model\": null\n        },\n        {\n            \"id\": 12937,\n            \"number\": \"YVAV\",\n            \"loadcapacity\": 20,\n            \"length\": 0,\n            \"volume\": 0,\n            \"width\": 0,\n            \"axes\": 0,\n            \"model\": null\n        },\n        {\n            \"id\": 12941,\n            \"number\": \"UKPUKP\",\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"width\": 0,\n            \"axes\": 0,\n            \"model\": null\n        },\n        {\n            \"id\": 12944,\n            \"number\": \"TEST\",\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"width\": 0,\n            \"axes\": 0,\n            \"model\": null\n        },\n        {\n            \"id\": 12955,\n            \"number\": \"123\",\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"width\": 0,\n            \"axes\": 0,\n            \"model\": null\n        },\n        {\n            \"id\": 12959,\n            \"number\": \"BK56NBV\",\n            \"loadcapacity\": 21,\n            \"length\": 0,\n            \"volume\": 86,\n            \"width\": 0,\n            \"axes\": 0,\n            \"model\": null\n        },\n        {\n            \"id\": 12960,\n            \"number\": \"OOO\",\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"width\": 0,\n            \"axes\": 0,\n            \"model\": null\n        },\n        {\n            \"id\": 34906,\n            \"number\": \"BC\",\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"width\": 0,\n            \"axes\": 0,\n            \"model\": null\n        }\n    ]\n}"},{"id":"d4934980-5f16-4d21-8378-1f73601b1577","name":"Request by shipper","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"if unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app","type":"text"}],"url":"{{host}}/a/v2/rest/public/getMyTrailers"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"You don’t have permission to view this data\",\n    \"relogin\": false\n}"}],"_postman_id":"1f881048-6a02-485f-be27-83e5b67379e2"},{"name":"Get My Trucks","event":[{"listen":"test","script":{"id":"5718e638-5b42-4e71-b140-a57fff199419","exec":["var response = pm.response.json();","","if (response.status === 200 || response.status === 'success'){","","pm.test(\"data in response matches array\", () => {","  pm.expect(response.data).to.be.an(\"array\");","});","}else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","}"],"type":"text/javascript"}}],"id":"68bd1bc7-db8b-4375-a572-ee1aa5b4a1d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getMyCars","description":"<p>Returns information about all the trucks within your company (brand, model, registration number, etc.).</p>\n<ul>\n<li>if successful you will receive information about all the trucks within your company</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>(!) NOTE: Can be only used by carriers.</p>\n","urlObject":{"path":["a","v2","rest","public","getMyCars"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"7d11568e-191c-4c1c-9a2d-076140668a4d","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getMyCars"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 3687,\n            \"number\": \"BN2582BO\",\n            \"make\": {\n                \"id\": 43,\n                \"title_ru\": \"Renault\"\n            },\n            \"cartype\": 35,\n            \"loadcapacity\": 0.999,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"\",\n            \"carstyle\": \"forcesplitcarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": \"MAGNUM 430\",\n            \"vehicleclass\": null,\n            \"trailer\": 3709\n        },\n        {\n            \"id\": 8062,\n            \"number\": \"AA1122EE\",\n            \"make\": {\n                \"id\": 8,\n                \"title_ru\": \"DAF\"\n            },\n            \"cartype\": 35,\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"\",\n            \"carstyle\": \"forcesplitcarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": 8120\n        },\n        {\n            \"id\": 8356,\n            \"number\": \"RR9988GG\",\n            \"make\": {\n                \"id\": 5,\n                \"title_ru\": \"Chevrolet\"\n            },\n            \"cartype\": 35,\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"lights too bright\",\n            \"carstyle\": \"forcesplitcarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": 8416\n        },\n        {\n            \"id\": 8357,\n            \"number\": \"FF6767YY\",\n            \"make\": {\n                \"id\": 7,\n                \"title_ru\": \"Daewoo\"\n            },\n            \"cartype\": 31,\n            \"loadcapacity\": 0.999,\n            \"length\": 0.999,\n            \"volume\": 0.999,\n            \"remark\": \"\",\n            \"carstyle\": \"optionalsplitcarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": 8417\n        },\n        {\n            \"id\": 8358,\n            \"number\": \"AA0909AO\",\n            \"make\": {\n                \"id\": 14,\n                \"title_ru\": \"Ford\"\n            },\n            \"cartype\": 30,\n            \"loadcapacity\": 0.999,\n            \"length\": 0.999,\n            \"volume\": 0.999,\n            \"remark\": \"nice truck\",\n            \"carstyle\": \"forcesplitcarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": null\n        },\n        {\n            \"id\": 9820,\n            \"number\": \"444\",\n            \"make\": {\n                \"id\": 11,\n                \"title_ru\": \"ERF\"\n            },\n            \"cartype\": 35,\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"\",\n            \"carstyle\": \"forcesplitcarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": 9704\n        },\n        {\n            \"id\": 13534,\n            \"number\": \"CCC\",\n            \"make\": {\n                \"id\": 3,\n                \"title_ru\": \"BAW\"\n            },\n            \"cartype\": 35,\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"ccc\",\n            \"carstyle\": \"optionalsplitcarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": 12932\n        },\n        {\n            \"id\": 13535,\n            \"number\": \"CCC\",\n            \"make\": {\n                \"id\": 3,\n                \"title_ru\": \"BAW\"\n            },\n            \"cartype\": 35,\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"ccc\",\n            \"carstyle\": \"optionalsplitcarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": 12932\n        },\n        {\n            \"id\": 13536,\n            \"number\": \"CCC\",\n            \"make\": {\n                \"id\": 3,\n                \"title_ru\": \"BAW\"\n            },\n            \"cartype\": 35,\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"ccc\",\n            \"carstyle\": \"optionalsplitcarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": 12932\n        },\n        {\n            \"id\": 13537,\n            \"number\": \"CCC\",\n            \"make\": {\n                \"id\": 3,\n                \"title_ru\": \"BAW\"\n            },\n            \"cartype\": 35,\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"ccc\",\n            \"carstyle\": \"optionalsplitcarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": 12932\n        },\n        {\n            \"id\": 13538,\n            \"number\": \"FYVAFY\",\n            \"make\": {\n                \"id\": 6,\n                \"title_ru\": \"Citroen\"\n            },\n            \"cartype\": 35,\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"\",\n            \"carstyle\": \"forcesplitcarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": 12933\n        },\n        {\n            \"id\": 13539,\n            \"number\": \"FYAP\",\n            \"make\": {\n                \"id\": 5,\n                \"title_ru\": \"Chevrolet\"\n            },\n            \"cartype\": 35,\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"\",\n            \"carstyle\": \"forcesplitcarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": 12934\n        },\n        {\n            \"id\": 13540,\n            \"number\": \"FYAP\",\n            \"make\": {\n                \"id\": 5,\n                \"title_ru\": \"Chevrolet\"\n            },\n            \"cartype\": 35,\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"\",\n            \"carstyle\": \"forcesplitcarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": 12934\n        },\n        {\n            \"id\": 13541,\n            \"number\": \"666\",\n            \"make\": {\n                \"id\": 3,\n                \"title_ru\": \"BAW\"\n            },\n            \"cartype\": 35,\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"\",\n            \"carstyle\": \"forcesplitcarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": 12935\n        },\n        {\n            \"id\": 13542,\n            \"number\": \"777\",\n            \"make\": {\n                \"id\": 4,\n                \"title_ru\": \"CAMC\"\n            },\n            \"cartype\": 35,\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"\",\n            \"carstyle\": \"forcesplitcarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": 12936\n        },\n        {\n            \"id\": 13543,\n            \"number\": \"777\",\n            \"make\": {\n                \"id\": 4,\n                \"title_ru\": \"CAMC\"\n            },\n            \"cartype\": 35,\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"\",\n            \"carstyle\": \"forcesplitcarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": 12936\n        },\n        {\n            \"id\": 13544,\n            \"number\": \"777\",\n            \"make\": {\n                \"id\": 4,\n                \"title_ru\": \"CAMC\"\n            },\n            \"cartype\": 35,\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"\",\n            \"carstyle\": \"forcesplitcarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": 12936\n        },\n        {\n            \"id\": 13545,\n            \"number\": \"777\",\n            \"make\": {\n                \"id\": 4,\n                \"title_ru\": \"CAMC\"\n            },\n            \"cartype\": 35,\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"\",\n            \"carstyle\": \"forcesplitcarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": 12936\n        },\n        {\n            \"id\": 13546,\n            \"number\": \"BAY\",\n            \"make\": {\n                \"id\": 8,\n                \"title_ru\": \"DAF\"\n            },\n            \"cartype\": 35,\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"\",\n            \"carstyle\": \"forcesplitcarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": 12937\n        },\n        {\n            \"id\": 13555,\n            \"number\": \"UKPUKP\",\n            \"make\": {\n                \"id\": 3,\n                \"title_ru\": \"BAW\"\n            },\n            \"cartype\": 35,\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"\",\n            \"carstyle\": \"forcesplitcarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": 12941\n        },\n        {\n            \"id\": 13558,\n            \"number\": \"TEST\",\n            \"make\": {\n                \"id\": 5,\n                \"title_ru\": \"Chevrolet\"\n            },\n            \"cartype\": 35,\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"\",\n            \"carstyle\": \"forcesplitcarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": 12944\n        },\n        {\n            \"id\": 13559,\n            \"number\": \"TEST\",\n            \"make\": {\n                \"id\": 5,\n                \"title_ru\": \"Chevrolet\"\n            },\n            \"cartype\": 35,\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"\",\n            \"carstyle\": \"forcesplitcarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": 12944\n        },\n        {\n            \"id\": 13572,\n            \"number\": \"11221\",\n            \"make\": {\n                \"id\": 8,\n                \"title_ru\": \"DAF\"\n            },\n            \"cartype\": 35,\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"\",\n            \"carstyle\": \"forcesplitcarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": 12955\n        },\n        {\n            \"id\": 13576,\n            \"number\": \"BK5865NB\",\n            \"make\": {\n                \"id\": 45,\n                \"title_ru\": \"Scania\"\n            },\n            \"cartype\": 35,\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"\",\n            \"carstyle\": \"forcesplitcarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": 12959\n        },\n        {\n            \"id\": 13577,\n            \"number\": \"112121\",\n            \"make\": {\n                \"id\": 8,\n                \"title_ru\": \"DAF\"\n            },\n            \"cartype\": 35,\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"\",\n            \"carstyle\": \"forcesplitcarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": 12960\n        },\n        {\n            \"id\": 15660,\n            \"number\": \"AA5748BK\",\n            \"make\": {\n                \"id\": 12,\n                \"title_ru\": \"FAW\"\n            },\n            \"cartype\": 14,\n            \"loadcapacity\": 0.999,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"\",\n            \"carstyle\": \"singlecarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": null\n        },\n        {\n            \"id\": 15662,\n            \"number\": \"AP3455AK\",\n            \"make\": {\n                \"id\": 14,\n                \"title_ru\": \"Ford\"\n            },\n            \"cartype\": 18,\n            \"loadcapacity\": 0.999,\n            \"length\": 0.999,\n            \"volume\": 0.999,\n            \"remark\": \"\",\n            \"carstyle\": \"singlecarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": null\n        },\n        {\n            \"id\": 15663,\n            \"number\": \"AP3456BV\",\n            \"make\": {\n                \"id\": 16,\n                \"title_ru\": \"Foton\"\n            },\n            \"cartype\": 12,\n            \"loadcapacity\": 0.999,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"\",\n            \"carstyle\": \"singlecarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": null\n        },\n        {\n            \"id\": 15677,\n            \"number\": \"123\",\n            \"make\": {\n                \"id\": 6,\n                \"title_ru\": \"Citroen\"\n            },\n            \"cartype\": 10,\n            \"loadcapacity\": 0,\n            \"length\": 0.999,\n            \"volume\": 0.999,\n            \"remark\": \"\",\n            \"carstyle\": \"singlecarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": null\n        },\n        {\n            \"id\": 15680,\n            \"number\": \"FYV\",\n            \"make\": {\n                \"id\": 7,\n                \"title_ru\": \"Daewoo\"\n            },\n            \"cartype\": 35,\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"\",\n            \"carstyle\": \"singlecarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": null\n        },\n        {\n            \"id\": 15741,\n            \"number\": \"AA4543BA\",\n            \"make\": {\n                \"id\": 8,\n                \"title_ru\": \"DAF\"\n            },\n            \"cartype\": 4,\n            \"loadcapacity\": 0.999,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"\",\n            \"carstyle\": \"singlecarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": null\n        },\n        {\n            \"id\": 16039,\n            \"number\": \"AP4567BK\",\n            \"make\": {\n                \"id\": 8,\n                \"title_ru\": \"DAF\"\n            },\n            \"cartype\": 35,\n            \"loadcapacity\": 0.999,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"\",\n            \"carstyle\": \"singlecarstyle\",\n            \"cellnum\": \"\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": null\n        },\n        {\n            \"id\": 36431,\n            \"number\": \"BYA\",\n            \"make\": {\n                \"id\": 4,\n                \"title_ru\": \"CAMC\"\n            },\n            \"cartype\": 35,\n            \"loadcapacity\": 0,\n            \"length\": 0,\n            \"volume\": 0,\n            \"remark\": \"\",\n            \"carstyle\": \"forcesplitcarstyle\",\n            \"cellnum\": \"380\",\n            \"vin\": \"\",\n            \"width\": 0,\n            \"height\": 0,\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": 0,\n            \"axes\": 0,\n            \"model\": null,\n            \"vehicleclass\": null,\n            \"trailer\": 34906\n        }\n    ]\n}"},{"id":"75a14e7d-c2a1-4a3e-b109-fcc0ff018d69","name":"Request by shipper","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getMyCars"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"You don’t have permission to view this data\",\n    \"relogin\": false\n}"}],"_postman_id":"68bd1bc7-db8b-4375-a572-ee1aa5b4a1d6"},{"name":"Update Driver","id":"0c4fcc7b-b2fe-4519-b51d-1ddef0ada05d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/driver/{{driverId}}","description":"<p>Allow carriers to update the data of a single driver.</p>\n<p>The actual data is passed as an object of the request body. All body params are optional.</p>\n<ul>\n<li>if successful you will receive a 200 response and data will be immediately changed</li>\n<li>If unsuccessful you will receive an error explaining<br />the problem in the language you supplied with the header or the language<br />set in the app</li>\n</ul>\n<p>Request body params explained:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>param</th>\n<th>explanation</th>\n<th>type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>lastname</td>\n<td>Last name</td>\n<td>string</td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>First name</td>\n<td>string</td>\n</tr>\n<tr>\n<td>patronymic</td>\n<td>Patronymic</td>\n<td>string</td>\n</tr>\n<tr>\n<td>maincellphone</td>\n<td>Direct phone number</td>\n<td>string</td>\n</tr>\n<tr>\n<td>passportserial</td>\n<td>Series of passport or ID</td>\n<td>string</td>\n</tr>\n<tr>\n<td>passportnumber</td>\n<td>Number of passport or ID</td>\n<td>string</td>\n</tr>\n<tr>\n<td>passportissued</td>\n<td>Date of issue of passport or id</td>\n<td>string</td>\n</tr>\n<tr>\n<td>passportissuedby</td>\n<td>Issuing entity of driver's license</td>\n<td>string</td>\n</tr>\n<tr>\n<td>driverlicenseserial</td>\n<td>Series of driver's license</td>\n<td>string</td>\n</tr>\n<tr>\n<td>driverlicensenumber</td>\n<td>Number of driver's license</td>\n<td>string</td>\n</tr>\n<tr>\n<td>driverlicenseissued</td>\n<td>Date of issue of passport or id</td>\n<td>string</td>\n</tr>\n<tr>\n<td>driverlicenseissuedby</td>\n<td>Issuing entity of driver's license</td>\n<td>string</td>\n</tr>\n<tr>\n<td>taxid</td>\n<td>National tax number</td>\n<td>string</td>\n</tr>\n<tr>\n<td>inblacklist</td>\n<td>Flag indicating that the driver is marked as irresponsible</td>\n<td>bool</td>\n</tr>\n<tr>\n<td>car</td>\n<td>ID of the car that relates to this driver</td>\n<td>int</td>\n</tr>\n<tr>\n<td>birthdate</td>\n<td>Date of birth in whatever format</td>\n<td>string</td>\n</tr>\n<tr>\n<td>remark</td>\n<td>A company-wide remark or comment</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["a","v2","rest","public","driver","{{driverId}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"b8966ea8-f246-42de-9dec-171667335403","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"lastname\": \"Снова 1\",\n    \"firstname\": \"Тест 1\",\n    \"patronymic\": \"Водителя 1\",\n    \"maincellphone\": \"+380637479032d\",\n    \"passportserial\": \"\",\n    \"passportissued\": \"\",\n    \"passportnumber\": \"asd\",\n    \"passportissuedby\": \"\",\n    \"driverlicenseserial\": \"УК\",\n    \"driverlicenseissued\": \"цу\",\n    \"inblacklist\": false,\n    \"driverlicensenumber\": null,\n    \"driverlicenseissuedby\": null,\n    \"car\": null,\n    \"taxid\": \"asd\",\n    \"birthdate\":\"\",\n    \"remark\":\"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/driver/{{driverId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"8608f4bd-8f77-4208-b984-0f082fe338f5","name":"Driver not found","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"lastname\": \"Снова 1\",\n    \"firstname\": \"Тест 1\",\n    \"patronymic\": \"Водителя 1\",\n    \"maincellphone\": \"+380637479032d\",\n    \"passportserial\": \"\",\n    \"passportissued\": \"\",\n    \"passportnumber\": \"asd\",\n    \"passportissuedby\": \"\",\n    \"driverlicenseserial\": \"УК\",\n    \"driverlicenseissued\": \"цу\",\n    \"inblacklist\": false,\n    \"driverlicensenumber\": null,\n    \"driverlicenseissuedby\": null,\n    \"car\": null,\n    \"taxid\": \"asd\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/driver/{{wrondDriverId}}"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Driver not found\",\n    \"relogin\": false\n}"}],"_postman_id":"0c4fcc7b-b2fe-4519-b51d-1ddef0ada05d"},{"name":"Update Truck","id":"eff67575-6715-4456-92a8-742f44fb26dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"loadcapacity\": 19,\n    \"axes\":5\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/car/{{carId}}","description":"<p>Allow carriers to update the data of a single driver.</p>\n<p>The actual data is passed as an object of the request body. All body params are optional.</p>\n<ul>\n<li>if successful you will receive a 200 response and data will be immediately changed</li>\n<li>If unsuccessful you will receive an error explaining<br />the problem in the language you supplied with the header or the language<br />set in the app</li>\n</ul>\n<p>Request body params explained:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>param</th>\n<th>explanation</th>\n<th>type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>lastname</td>\n<td>Last name</td>\n<td>string</td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>First name</td>\n<td>string</td>\n</tr>\n<tr>\n<td>patronymic</td>\n<td>Patronymic</td>\n<td>string</td>\n</tr>\n<tr>\n<td>maincellphone</td>\n<td>Direct phone number</td>\n<td>string</td>\n</tr>\n<tr>\n<td>passportserial</td>\n<td>Series of passport or ID</td>\n<td>string</td>\n</tr>\n<tr>\n<td>passportnumber</td>\n<td>Number of passport or ID</td>\n<td>string</td>\n</tr>\n<tr>\n<td>passportissued</td>\n<td>Date of issue of passport or id</td>\n<td>string</td>\n</tr>\n<tr>\n<td>passportissuedby</td>\n<td>Issuing entity of driver's license</td>\n<td>string</td>\n</tr>\n<tr>\n<td>driverlicenseserial</td>\n<td>Series of driver's license</td>\n<td>string</td>\n</tr>\n<tr>\n<td>driverlicensenumber</td>\n<td>Number of driver's license</td>\n<td>string</td>\n</tr>\n<tr>\n<td>driverlicenseissued</td>\n<td>Date of issue of passport or id</td>\n<td>string</td>\n</tr>\n<tr>\n<td>driverlicenseissuedby</td>\n<td>Issuing entity of driver's license</td>\n<td>string</td>\n</tr>\n<tr>\n<td>taxid</td>\n<td>National tax number</td>\n<td>string</td>\n</tr>\n<tr>\n<td>inblacklist</td>\n<td>Flag indicating that the driver is marked as irresponsible</td>\n<td>bool</td>\n</tr>\n<tr>\n<td>car</td>\n<td>ID of the car that relates to this driver</td>\n<td>int</td>\n</tr>\n<tr>\n<td>birthdate</td>\n<td>Date of birth in whatever format</td>\n<td>string</td>\n</tr>\n<tr>\n<td>remark</td>\n<td>A company-wide remark or comment</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["a","v2","rest","public","car","{{carId}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"3377b25f-8f50-481c-b3d0-529bc36c8c82","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"lastname\": \"Снова 1\",\n    \"firstname\": \"Тест 1\",\n    \"patronymic\": \"Водителя 1\",\n    \"maincellphone\": \"+380637479032d\",\n    \"passportserial\": \"\",\n    \"passportissued\": \"\",\n    \"passportnumber\": \"asd\",\n    \"passportissuedby\": \"\",\n    \"driverlicenseserial\": \"УК\",\n    \"driverlicenseissued\": \"цу\",\n    \"inblacklist\": false,\n    \"driverlicensenumber\": null,\n    \"driverlicenseissuedby\": null,\n    \"car\": null,\n    \"taxid\": \"asd\",\n    \"birthdate\":\"\",\n    \"remark\":\"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/car/{{carId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"d344eb50-31ef-4cc6-8a13-8ac7b521cc53","name":"Driver not found","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"lastname\": \"Снова 1\",\n    \"firstname\": \"Тест 1\",\n    \"patronymic\": \"Водителя 1\",\n    \"maincellphone\": \"+380637479032d\",\n    \"passportserial\": \"\",\n    \"passportissued\": \"\",\n    \"passportnumber\": \"asd\",\n    \"passportissuedby\": \"\",\n    \"driverlicenseserial\": \"УК\",\n    \"driverlicenseissued\": \"цу\",\n    \"inblacklist\": false,\n    \"driverlicensenumber\": null,\n    \"driverlicenseissuedby\": null,\n    \"car\": null,\n    \"taxid\": \"asd\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/car/{{wrondCarId}}"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Truck not found\",\n    \"relogin\": false\n}"}],"_postman_id":"eff67575-6715-4456-92a8-742f44fb26dd"},{"name":"Update Trailer","id":"e429fe38-964f-451b-aceb-76ed39aaf378","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"loadcapacity\": 19,\n    \"axes\":5\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/trailer/{{trailerId}}","description":"<p>Allow carriers to update the data of a single driver.</p>\n<p>The actual data is passed as an object of the request body. All body params are optional.</p>\n<ul>\n<li>if successful you will receive a 200 response and data will be immediately changed</li>\n<li>If unsuccessful you will receive an error explaining<br />the problem in the language you supplied with the header or the language<br />set in the app</li>\n</ul>\n<p>Request body params explained:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>param</th>\n<th>explanation</th>\n<th>type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>lastname</td>\n<td>Last name</td>\n<td>string</td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>First name</td>\n<td>string</td>\n</tr>\n<tr>\n<td>patronymic</td>\n<td>Patronymic</td>\n<td>string</td>\n</tr>\n<tr>\n<td>maincellphone</td>\n<td>Direct phone number</td>\n<td>string</td>\n</tr>\n<tr>\n<td>passportserial</td>\n<td>Series of passport or ID</td>\n<td>string</td>\n</tr>\n<tr>\n<td>passportnumber</td>\n<td>Number of passport or ID</td>\n<td>string</td>\n</tr>\n<tr>\n<td>passportissued</td>\n<td>Date of issue of passport or id</td>\n<td>string</td>\n</tr>\n<tr>\n<td>passportissuedby</td>\n<td>Issuing entity of driver's license</td>\n<td>string</td>\n</tr>\n<tr>\n<td>driverlicenseserial</td>\n<td>Series of driver's license</td>\n<td>string</td>\n</tr>\n<tr>\n<td>driverlicensenumber</td>\n<td>Number of driver's license</td>\n<td>string</td>\n</tr>\n<tr>\n<td>driverlicenseissued</td>\n<td>Date of issue of passport or id</td>\n<td>string</td>\n</tr>\n<tr>\n<td>driverlicenseissuedby</td>\n<td>Issuing entity of driver's license</td>\n<td>string</td>\n</tr>\n<tr>\n<td>taxid</td>\n<td>National tax number</td>\n<td>string</td>\n</tr>\n<tr>\n<td>inblacklist</td>\n<td>Flag indicating that the driver is marked as irresponsible</td>\n<td>bool</td>\n</tr>\n<tr>\n<td>car</td>\n<td>ID of the car that relates to this driver</td>\n<td>int</td>\n</tr>\n<tr>\n<td>birthdate</td>\n<td>Date of birth in whatever format</td>\n<td>string</td>\n</tr>\n<tr>\n<td>remark</td>\n<td>A company-wide remark or comment</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["a","v2","rest","public","trailer","{{trailerId}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"2516052c-109c-4a14-86ed-aa06d82b4fcd","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"lastname\": \"Снова 1\",\n    \"firstname\": \"Тест 1\",\n    \"patronymic\": \"Водителя 1\",\n    \"maincellphone\": \"+380637479032d\",\n    \"passportserial\": \"\",\n    \"passportissued\": \"\",\n    \"passportnumber\": \"asd\",\n    \"passportissuedby\": \"\",\n    \"driverlicenseserial\": \"УК\",\n    \"driverlicenseissued\": \"цу\",\n    \"inblacklist\": false,\n    \"driverlicensenumber\": null,\n    \"driverlicenseissuedby\": null,\n    \"car\": null,\n    \"taxid\": \"asd\",\n    \"birthdate\":\"\",\n    \"remark\":\"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/car/{{carId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"689c471e-ee69-44c3-aec2-ea016a16e836","name":"Driver not found","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"lastname\": \"Снова 1\",\n    \"firstname\": \"Тест 1\",\n    \"patronymic\": \"Водителя 1\",\n    \"maincellphone\": \"+380637479032d\",\n    \"passportserial\": \"\",\n    \"passportissued\": \"\",\n    \"passportnumber\": \"asd\",\n    \"passportissuedby\": \"\",\n    \"driverlicenseserial\": \"УК\",\n    \"driverlicenseissued\": \"цу\",\n    \"inblacklist\": false,\n    \"driverlicensenumber\": null,\n    \"driverlicenseissuedby\": null,\n    \"car\": null,\n    \"taxid\": \"asd\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/car/{{wrondCarId}}"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Авто не знайдено\",\n    \"relogin\": false\n}"}],"_postman_id":"e429fe38-964f-451b-aceb-76ed39aaf378"},{"name":"Delete Driver","id":"56912697-eb56-4078-a2bd-8fb6bb906f0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/driver/{{driverId}}","description":"<p>Allow carriers to soft delete a driver.</p>\n<ul>\n<li><p>if successful you will receive a 200 response and data will be immediately changed</p>\n</li>\n<li><p>If unsuccessful you will receive an error explaining<br />  the problem in the language you supplied with the header or the language<br />  set in the app</p>\n</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","driver","{{driverId}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"3916aa8d-04e7-4060-879b-ecf21be9ed81","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"lastname\": \"Снова 1\",\n    \"firstname\": \"Тест 1\",\n    \"patronymic\": \"Водителя 1\",\n    \"maincellphone\": \"+380637479032d\",\n    \"passportserial\": \"\",\n    \"passportissued\": \"\",\n    \"passportnumber\": \"asd\",\n    \"passportissuedby\": \"\",\n    \"driverlicenseserial\": \"УК\",\n    \"driverlicenseissued\": \"цу\",\n    \"inblacklist\": false,\n    \"driverlicensenumber\": null,\n    \"driverlicenseissuedby\": null,\n    \"car\": null,\n    \"taxid\": \"asd\",\n    \"birthdate\":\"\",\n    \"remark\":\"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/driver/{{driverId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"33108897-49c5-4ee6-9dc4-b69ab9ebf9df","name":"Driver not found","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"lastname\": \"Снова 1\",\n    \"firstname\": \"Тест 1\",\n    \"patronymic\": \"Водителя 1\",\n    \"maincellphone\": \"+380637479032d\",\n    \"passportserial\": \"\",\n    \"passportissued\": \"\",\n    \"passportnumber\": \"asd\",\n    \"passportissuedby\": \"\",\n    \"driverlicenseserial\": \"УК\",\n    \"driverlicenseissued\": \"цу\",\n    \"inblacklist\": false,\n    \"driverlicensenumber\": null,\n    \"driverlicenseissuedby\": null,\n    \"car\": null,\n    \"taxid\": \"asd\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/driver/{{wrondDriverId}}"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Driver not found\",\n    \"relogin\": false\n}"}],"_postman_id":"56912697-eb56-4078-a2bd-8fb6bb906f0c"},{"name":"Delete Truck","id":"1746d1c0-f613-403b-a7ef-5910f0c837c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/car/{{carId}}","description":"<p>Allow carriers to soft delete truck.</p>\n<ul>\n<li><p>if successful you will receive a 200 response and data will be immediately changed</p>\n</li>\n<li><p>If unsuccessful you will receive an error explaining<br />  the problem in the language you supplied with the header or the language<br />  set in the app</p>\n</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","car","{{carId}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"78b86bbe-1a12-4dab-acb8-ca434bc8aea1","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"lastname\": \"Снова 1\",\n    \"firstname\": \"Тест 1\",\n    \"patronymic\": \"Водителя 1\",\n    \"maincellphone\": \"+380637479032d\",\n    \"passportserial\": \"\",\n    \"passportissued\": \"\",\n    \"passportnumber\": \"asd\",\n    \"passportissuedby\": \"\",\n    \"driverlicenseserial\": \"УК\",\n    \"driverlicenseissued\": \"цу\",\n    \"inblacklist\": false,\n    \"driverlicensenumber\": null,\n    \"driverlicenseissuedby\": null,\n    \"car\": null,\n    \"taxid\": \"asd\",\n    \"birthdate\":\"\",\n    \"remark\":\"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/driver/{{driverId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"c3e5c37f-fd8d-4238-a573-fce25a9b18c3","name":"Driver not found","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"lastname\": \"Снова 1\",\n    \"firstname\": \"Тест 1\",\n    \"patronymic\": \"Водителя 1\",\n    \"maincellphone\": \"+380637479032d\",\n    \"passportserial\": \"\",\n    \"passportissued\": \"\",\n    \"passportnumber\": \"asd\",\n    \"passportissuedby\": \"\",\n    \"driverlicenseserial\": \"УК\",\n    \"driverlicenseissued\": \"цу\",\n    \"inblacklist\": false,\n    \"driverlicensenumber\": null,\n    \"driverlicenseissuedby\": null,\n    \"car\": null,\n    \"taxid\": \"asd\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/car/{{wrondDriverId}}"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Truck not found\",\n    \"relogin\": false\n}"}],"_postman_id":"1746d1c0-f613-403b-a7ef-5910f0c837c9"},{"name":"Delete Trailer","id":"31e7029c-fabe-45cd-9147-6d14d9e0b0ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/trailer/{{driverId}}","description":"<p>Allow carriers to soft delete a trailer.</p>\n<ul>\n<li><p>if successful you will receive a 200 response and data will be immediately changed</p>\n</li>\n<li><p>If unsuccessful you will receive an error explaining<br />  the problem in the language you supplied with the header or the language<br />  set in the app</p>\n</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","trailer","{{driverId}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"5fe31344-f13f-4326-b3ea-0780fef748d8","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"lastname\": \"Снова 1\",\n    \"firstname\": \"Тест 1\",\n    \"patronymic\": \"Водителя 1\",\n    \"maincellphone\": \"+380637479032d\",\n    \"passportserial\": \"\",\n    \"passportissued\": \"\",\n    \"passportnumber\": \"asd\",\n    \"passportissuedby\": \"\",\n    \"driverlicenseserial\": \"УК\",\n    \"driverlicenseissued\": \"цу\",\n    \"inblacklist\": false,\n    \"driverlicensenumber\": null,\n    \"driverlicenseissuedby\": null,\n    \"car\": null,\n    \"taxid\": \"asd\",\n    \"birthdate\":\"\",\n    \"remark\":\"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/driver/{{driverId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"19b88f5e-7daf-48a3-b5b8-9667cd969850","name":"Truck not found","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"lastname\": \"Снова 1\",\n    \"firstname\": \"Тест 1\",\n    \"patronymic\": \"Водителя 1\",\n    \"maincellphone\": \"+380637479032d\",\n    \"passportserial\": \"\",\n    \"passportissued\": \"\",\n    \"passportnumber\": \"asd\",\n    \"passportissuedby\": \"\",\n    \"driverlicenseserial\": \"УК\",\n    \"driverlicenseissued\": \"цу\",\n    \"inblacklist\": false,\n    \"driverlicensenumber\": null,\n    \"driverlicenseissuedby\": null,\n    \"car\": null,\n    \"taxid\": \"asd\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/trailer/{{wrondDriverId}}"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Trailer not found\",\n    \"relogin\": false\n}"}],"_postman_id":"31e7029c-fabe-45cd-9147-6d14d9e0b0ec"},{"name":"Add Driver, Truck, Trailer","event":[{"listen":"test","script":{"id":"25852ded-cd92-4aa0-a5ea-4b0bf0b22110","exec":["var response = pm.response.json();\r","var isContains = pm.response.text();\r","\r","if (response.status === 201 || response.status === 'success'){\r","\r","}else {\r","    pm.test(\"Response have relogin an Boolean\", () => {\r","        pm.expect(response.relogin).to.be.an('boolean');\r","    });\r","}"],"type":"text/javascript","packages":{}}}],"id":"177f155f-f9b3-4487-8575-e916007fd6f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"driver\":{\n      \"lastname\":\"Frank 1\",\n      \"firstname\":\"Stephanie\",\n      \"maincellphone\":\"+380501112233\",\n      \"driverlicenseserial\":\"Harum repellendus Q\",\n      \"driverlicensenumber\":\"590\",\n      \"driverlicenseissued\":\"2021-05-05\",\n      \"driverlicenseissuedby\":\"Impedit sed nemo si\"\n   },\n   \"car\":{\n      \"number\":\"AA1033BB\",\n      \"carstyle\":\"optionalsplitcarstyle\",\n      \"make-new-form\":41,\n      \"year_of_manufact\":\"2000\",\n      \"vin\":\"123123\",\n      \"make\":41,\n      \"model\":\"Consectetur volupta\",\n      \"cartype\":1,\n      \"carbodytype\":36,\n      \"total_weight\":20,\n      \"width\":\"4\",\n      \"height\":\"5\",\n      \"length\":\"20\"\n   },\n   \"trailer\":{\n      \"number\":54322,\n      \"cartype\":38,\n      \"model\":\"Numquam eu commodi u\",\n      \"make\":1,\n      \"trailerbodytype\":43,\n      \"width\":\"4\",\n      \"height\":\"5\",\n      \"length\":\"20\",\n      \"weight\":\"\",\n      \"total_weight\":12\n   }\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/addVehicle","description":"<p>Allows carriers to add drivers, cars and trailers and fill up the data of those entities.</p>\n<p>The endpoint works in 2 modes:</p>\n<ol>\n<li><p><strong>complex adding</strong>: adding 3 entities at a time (driver, car and trailer) and linking them together (default mode)</p>\n</li>\n<li><p><strong>entity specific</strong>: adding a single entity (driver, car or trailer), is activated using a specific <code>only</code> param</p>\n</li>\n</ol>\n<ul>\n<li><p>if successful you will receive a 201 response and data will be immediately changed</p>\n</li>\n<li><p>If unsuccessful you will receive an error explaining<br />  the problem in the language you supplied with the header or the language<br />  set in the app</p>\n</li>\n</ul>\n<p><code>driver</code> object params:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>param</th>\n<th>required</th>\n<th>explanation</th>\n<th>type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>lastname</td>\n<td>yes</td>\n<td>Last name</td>\n<td>string</td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>yes</td>\n<td>First name</td>\n<td>string</td>\n</tr>\n<tr>\n<td>patronymic</td>\n<td></td>\n<td>Patronymic</td>\n<td>string</td>\n</tr>\n<tr>\n<td>maincellphone</td>\n<td>yes</td>\n<td>Direct phone number</td>\n<td>string (&gt;7)</td>\n</tr>\n<tr>\n<td>passportserial</td>\n<td></td>\n<td>Series of passport or ID</td>\n<td>string</td>\n</tr>\n<tr>\n<td>passportnumber</td>\n<td></td>\n<td>Number of passport or ID</td>\n<td>string</td>\n</tr>\n<tr>\n<td>passportissued</td>\n<td></td>\n<td>Date of issue of passport or id</td>\n<td>string</td>\n</tr>\n<tr>\n<td>passportissuedby</td>\n<td></td>\n<td>Issuing entity of driver's license</td>\n<td>string</td>\n</tr>\n<tr>\n<td>driverlicenseserial</td>\n<td>yes</td>\n<td>Series of driver's license</td>\n<td>string</td>\n</tr>\n<tr>\n<td>driverlicensenumber</td>\n<td>yes</td>\n<td>Number of driver's license</td>\n<td>string</td>\n</tr>\n<tr>\n<td>driverlicenseissued</td>\n<td></td>\n<td>Date of issue of passport or id</td>\n<td>YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>driverlicenseissuedby</td>\n<td></td>\n<td>Issuing entity of driver's license</td>\n<td>string</td>\n</tr>\n<tr>\n<td>demographicid</td>\n<td></td>\n<td>National demographic id</td>\n<td>string</td>\n</tr>\n<tr>\n<td>taxid</td>\n<td></td>\n<td>National tax number</td>\n<td>string</td>\n</tr>\n<tr>\n<td>inblacklist</td>\n<td></td>\n<td>Flag indicating that the driver is marked as irresponsible</td>\n<td>bool</td>\n</tr>\n<tr>\n<td>car</td>\n<td></td>\n<td>ID of the car that relates to this driver</td>\n<td>int</td>\n</tr>\n<tr>\n<td>birthdate</td>\n<td></td>\n<td>Date of birth in whatever format</td>\n<td>string</td>\n</tr>\n<tr>\n<td>remark</td>\n<td></td>\n<td>A company-wide remark or comment</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><p><code>car</code> object params:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>param</th>\n<th>required</th>\n<th>explanation</th>\n<th>type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>number</td>\n<td>yes</td>\n<td>License plate number</td>\n<td>string</td>\n</tr>\n<tr>\n<td>carstyle</td>\n<td>yes</td>\n<td>Indicates the tractor type. <code>forcesplitcarstyle</code> for tractors, <code>singlecarstyle</code> for box truck, and <code>optionalsplitcarstyle</code> for box truck with additional trailer.</td>\n<td>enum: optionalsplitcarstyle, forcesplitcarstyle, singlecarstyle</td>\n</tr>\n<tr>\n<td>carbodytype</td>\n<td>yes</td>\n<td>ID of national registry truck types</td>\n<td>int</td>\n</tr>\n<tr>\n<td>year_of_manufact</td>\n<td>yes</td>\n<td>Truck manufacturing year</td>\n<td>YYYY</td>\n</tr>\n<tr>\n<td>vin</td>\n<td>yes</td>\n<td>VIN number</td>\n<td>string</td>\n</tr>\n<tr>\n<td>weight</td>\n<td></td>\n<td>Truck weight in kg</td>\n<td>float</td>\n</tr>\n<tr>\n<td>width</td>\n<td>yes</td>\n<td>Truck width, in m</td>\n<td>float</td>\n</tr>\n<tr>\n<td>length</td>\n<td>yes</td>\n<td>Truck length in m</td>\n<td></td>\n</tr>\n<tr>\n<td>height</td>\n<td>yes</td>\n<td>Truck height in m</td>\n<td>float</td>\n</tr>\n<tr>\n<td>total_weight</td>\n<td>yes</td>\n<td>Maximum loaded truck weight, in tonns</td>\n<td>float</td>\n</tr>\n<tr>\n<td>axes</td>\n<td></td>\n<td>Number of axes</td>\n<td>int</td>\n</tr>\n<tr>\n<td>cellnum</td>\n<td></td>\n<td>Direct phone number in the truck</td>\n<td>string</td>\n</tr>\n<tr>\n<td>make</td>\n<td>yes</td>\n<td>ID of the make of the truck</td>\n<td>int</td>\n</tr>\n<tr>\n<td>make-new-form</td>\n<td>yes</td>\n<td>Duplicate of <code>make</code></td>\n<td>int</td>\n</tr>\n<tr>\n<td>model</td>\n<td>yes</td>\n<td>Model</td>\n<td>string</td>\n</tr>\n<tr>\n<td>cartype</td>\n<td></td>\n<td>ID of the type of truck</td>\n<td>int</td>\n</tr>\n<tr>\n<td>insuredTil</td>\n<td></td>\n<td>Insurance expiration date</td>\n<td>YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>carbase</td>\n<td></td>\n<td>ID of the base point of the truck</td>\n<td>int</td>\n</tr>\n<tr>\n<td>gpsid</td>\n<td></td>\n<td>Internal GPS identifier for location tracking</td>\n<td>string</td>\n</tr>\n<tr>\n<td>deadpath</td>\n<td></td>\n<td>Minimum price of dead path, in local currency</td>\n<td>float</td>\n</tr>\n<tr>\n<td>fullpath</td>\n<td></td>\n<td>Minimum price of loaded path, in local currency</td>\n<td>float</td>\n</tr>\n<tr>\n<td>minRoutePrice</td>\n<td></td>\n<td>Minimum price of delivery, in local currency</td>\n<td>float</td>\n</tr>\n<tr>\n<td>vehicleclass</td>\n<td></td>\n<td>ID of internal user supplied truck category</td>\n<td>int</td>\n</tr>\n<tr>\n<td>chargetype-N</td>\n<td></td>\n<td>N indicates the ID of the charge type. Supply separate parameter for every charge type the truck supports. Substitute N with the ID of the type. Example <code>chargetype-1: true, chargetype-11: true</code></td>\n<td>bool</td>\n</tr>\n<tr>\n<td>ferryproperty-N</td>\n<td></td>\n<td>N indicates the ID of the box property. Supply separate parameter for every box property the truck supports. Substitute N with the ID of the property. Example <code>ferryproperty-1: true, ferryproperty-11: true</code></td>\n<td>bool</td>\n</tr>\n<tr>\n<td>quantity-ferryproperty-N</td>\n<td></td>\n<td>Additional data for a box property of ID N, for example, temperature requirments. Example: <code>quantity-ferryproperty-11: \"-5\"</code></td>\n<td>string</td>\n</tr>\n<tr>\n<td>remark</td>\n<td></td>\n<td>Company-wide remark or comment about the truck.</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><p><code>trailer</code> object params:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>param</th>\n<th>required</th>\n<th>explanation</th>\n<th>type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>number</td>\n<td>yes</td>\n<td>License plate number</td>\n<td>string</td>\n</tr>\n<tr>\n<td>loadcapacity</td>\n<td>yes</td>\n<td>Load capacity in tonns</td>\n<td>float</td>\n</tr>\n<tr>\n<td>cartype</td>\n<td>yes</td>\n<td>ID of the trailer type</td>\n<td>int</td>\n</tr>\n<tr>\n<td>model</td>\n<td>yes</td>\n<td>Model title</td>\n<td>string</td>\n</tr>\n<tr>\n<td>make</td>\n<td>yes</td>\n<td>User supplied trailer make</td>\n<td>string</td>\n</tr>\n<tr>\n<td>total_weight</td>\n<td>yes</td>\n<td>Maximum loaded trailer weight, in tonns</td>\n<td>float</td>\n</tr>\n<tr>\n<td>trailerbodytype</td>\n<td>yes</td>\n<td>ID of national registry box type</td>\n<td>int</td>\n</tr>\n<tr>\n<td>vin</td>\n<td>yes</td>\n<td>VIN number</td>\n<td>string</td>\n</tr>\n<tr>\n<td>year_of_manufact</td>\n<td>yes</td>\n<td>Trailer manufacturing year</td>\n<td>YYYY</td>\n</tr>\n<tr>\n<td>width</td>\n<td>yes</td>\n<td>Width in m</td>\n<td>float</td>\n</tr>\n<tr>\n<td>height</td>\n<td>yes</td>\n<td>Height in m</td>\n<td>float</td>\n</tr>\n<tr>\n<td>volume</td>\n<td></td>\n<td>Volume in cubic m</td>\n<td>float</td>\n</tr>\n<tr>\n<td>length</td>\n<td>yes</td>\n<td>Length in m</td>\n<td>float</td>\n</tr>\n<tr>\n<td>weight</td>\n<td>yes</td>\n<td>Trailer weight in tonns</td>\n<td>float</td>\n</tr>\n<tr>\n<td>axes</td>\n<td></td>\n<td>Number of axes</td>\n<td>int</td>\n</tr>\n<tr>\n<td>chargetype-1</td>\n<td></td>\n<td>N indicates the ID of the charge type. Supply separate parameter for every charge type the truck supports. Substitute N with the ID of the type. Example <code>chargetype-1: true, chargetype-11: true</code></td>\n<td>bool</td>\n</tr>\n<tr>\n<td>ferryproperty-1</td>\n<td></td>\n<td>N indicates the ID of the box property. Supply separate parameter for every box property the truck supports. Substitute N with the ID of the property. Example <code>ferryproperty-1: true, ferryproperty-11: true</code></td>\n<td>bool</td>\n</tr>\n<tr>\n<td>quantity-ferryproperty-N</td>\n<td></td>\n<td>Additional data for a box property of ID N, for example, temperature requirments. Example: <code>quantity-ferryproperty-11: \"-5\"</code></td>\n<td>string</td>\n</tr>\n<tr>\n<td>remark</td>\n<td></td>\n<td>Company-wide remark or comment about the truck.</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["a","v2","rest","public","addVehicle"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"06269763-08a0-44a0-80ad-9856b1b63b1a","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"driver\":{\n      \"lastname\":\"Frank 1\",\n      \"firstname\":\"Stephanie\",\n      \"maincellphone\":\"+380501112233\",\n      \"driverlicenseserial\":\"Harum repellendus Q\",\n      \"driverlicensenumber\":\"590\",\n      \"driverlicenseissued\":\"2021-05-05\",\n      \"driverlicenseissuedby\":\"Impedit sed nemo si\"\n   },\n   \"car\":{\n      \"number\":\"AA1033BB\",\n      \"carstyle\":\"optionalsplitcarstyle\",\n      \"make-new-form\":41,\n      \"year_of_manufact\":\"2000\",\n      \"vin\":\"123123\",\n      \"make\": 41,\n      \"model\":\"Consectetur volupta\",\n      \"cartype\":1,\n      \"carbodytype\":1,\n      \"total_weight\":20,\n      \"width\":\"4\",\n      \"height\":\"5\",\n      \"length\":\"20\"\n   },\n   \"trailer\":{\n      \"number\":543,\n      \"loadcapacity\":50,\n      \"cartype\":38,\n      \"model\":\"Numquam eu commodi u\",\n      \"make\":1,\n      \"year_of_manufact\":2000,\n      \"trailerbodytype\":1,\n      \"vin\":\"09876890\",\n      \"width\":\"4\",\n      \"height\":\"5\",\n      \"length\":\"20\",\n      \"weight\":\"\",\n      \"total_weight\":12\n   }\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/addVehicle"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"id\": 37033,\n        \"lastname\": \"Frank 1\",\n        \"firstname\": \"Stephanie\",\n        \"patronymic\": \"\",\n        \"maincellphone\": \"+380501112233\",\n        \"passportserial\": \"\",\n        \"driverlicenseserial\": \"Harum repellendus Q\",\n        \"contactinfo\": \"\",\n        \"client\": 180,\n        \"car\": 39196,\n        \"forbidedit\": 0,\n        \"ratify\": 1,\n        \"driverlicenseissued\": \"2021-05-05\",\n        \"passportissued\": \"\",\n        \"seenbyadmin\": 0,\n        \"taxid\": \"\",\n        \"birthdate\": \"0000-00-00\",\n        \"inblacklist\": null,\n        \"deleted\": 0,\n        \"allowPush\": null,\n        \"language\": null,\n        \"driver_id_1C\": null,\n        \"passportnumber\": \"\",\n        \"passportissuedby\": \"\",\n        \"driverlicensenumber\": \"590\",\n        \"driverlicenseissuedby\": \"Impedit sed nemo si\",\n        \"hired\": 0,\n        \"invitationstatus\": null,\n        \"invitationdetails\": null,\n        \"vacant\": 0,\n        \"car_relation\": {\n            \"id\": 39196,\n            \"make\": 41,\n            \"number\": \"AA1033BB\",\n            \"cartype\": 1,\n            \"loadcapacity\": \"0.000\",\n            \"length\": \"20.000\",\n            \"volume\": \"0.000\",\n            \"trailer\": 37347,\n            \"client\": 180,\n            \"remark\": \"\",\n            \"carstyle\": \"optionalsplitcarstyle\",\n            \"forbidedit\": 0,\n            \"ratify\": 1,\n            \"seenbyadmin\": 0,\n            \"cellnum\": \"\",\n            \"availabledatetime\": null,\n            \"availabletown\": null,\n            \"availableregion\": null,\n            \"available\": null,\n            \"craft\": \"\",\n            \"telnum\": \"\",\n            \"consumptionempty\": \"0.000\",\n            \"consumptionlte5\": \"0.000\",\n            \"consumptiongt5lte10\": \"0.000\",\n            \"consumptiongt10lte15\": \"0.000\",\n            \"consumptiongt15lte20\": \"0.000\",\n            \"consumptiongt20\": \"0.000\",\n            \"expense1descr\": \"\",\n            \"expense1sum\": \"0.00\",\n            \"expense2descr\": \"\",\n            \"expense2sum\": \"0.00\",\n            \"expense3descr\": \"\",\n            \"expense3sum\": \"0.00\",\n            \"expense4descr\": \"\",\n            \"expense4sum\": \"0.00\",\n            \"expense5descr\": \"\",\n            \"expense5sum\": \"0.00\",\n            \"expense6descr\": \"\",\n            \"expense6sum\": \"0.00\",\n            \"expense7descr\": \"\",\n            \"expense7sum\": \"0.00\",\n            \"expense8descr\": \"\",\n            \"expense8sum\": \"0.00\",\n            \"expense9descr\": \"\",\n            \"expense9sum\": \"0.00\",\n            \"expense10descr\": \"\",\n            \"expense10sum\": \"0.00\",\n            \"vin\": \"123123\",\n            \"latit\": \"0.000000000000000\",\n            \"longit\": \"0.000000000000000\",\n            \"deadpath\": \"0.00\",\n            \"fullpath\": \"0.00\",\n            \"gpsstatus\": \"\",\n            \"gpsid\": null,\n            \"idhash\": \"e6659b3056627af11246faa24c164e5a\",\n            \"availablenextroute\": 0,\n            \"nextrouteid\": null,\n            \"currentrouteperiodic\": \"\",\n            \"bookedNextRouteStatus\": 0,\n            \"minrouteprice\": \"0.00\",\n            \"deleted\": 0,\n            \"width\": \"4.000\",\n            \"height\": \"5.000\",\n            \"insuredTil\": \"0000-00-00\",\n            \"weight\": \"0.000\",\n            \"axes\": 0,\n            \"dateInviteAndroid\": \"0000-00-00\",\n            \"userInviteAndroid\": null,\n            \"dateAcceptInviteAndroid\": \"0000-00-00\",\n            \"ImeiInviteAndroid\": null,\n            \"factclient\": null,\n            \"expeditorClient\": null,\n            \"driver\": null,\n            \"model\": \"Consectetur volupta\",\n            \"car_id_1C\": null,\n            \"carmodel_id_1C\": null,\n            \"gpsprovider\": 0,\n            \"vehicleclass\": null,\n            \"carbase\": null,\n            \"year_of_manufact\": 2000,\n            \"total_weight\": \"20.000\",\n            \"body_type\": 1,\n            \"trailer_relation\": {\n                \"id\": 37347,\n                \"number\": \"543\",\n                \"client\": 180,\n                \"loadcapacity\": \"50.000\",\n                \"length\": \"20.000\",\n                \"volume\": \"0.000\",\n                \"remark\": \"\",\n                \"forbidedit\": 0,\n                \"ratify\": 1,\n                \"cartype\": 38,\n                \"seenbyadmin\": 0,\n                \"vin\": \"09876890\",\n                \"deleted\": 0,\n                \"width\": \"4.000\",\n                \"height\": \"5.000\",\n                \"insuredTil\": \"0000-00-00\",\n                \"weight\": \"0.000\",\n                \"axes\": 0,\n                \"model\": \"Numquam eu commodi u\",\n                \"trailer_id_1C\": null,\n                \"trailermodel_id_1C\": null,\n                \"year_of_manufact\": 2000,\n                \"total_weight\": \"12.000\",\n                \"make\": \"1\",\n                \"body_type\": 1\n            }\n        }\n    }\n}"},{"id":"e8c4b795-082a-415d-8b2a-70387e7ad593","name":"Success (only driver)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"driver\":{\n      \"lastname\":\"Frank 1\",\n      \"firstname\":\"Stephanie\",\n      \"patronymic\":\"Perferendis aspernat\",\n      \"maincellphone\":\"+12551452087\",\n      \"driverlicenseserial\":\"Harum repellendus Q\",\n      \"driverlicensenumber\":590,\n      \"driverlicenseissued\":\"15.06.2021\",\n      \"driverlicenseissuedby\":\"Impedit sed nemo si\",\n      \"passportserial\":\"\",\n      \"passportnumber\":\"\",\n      \"taxid\":\"\",\n      \"passportissued\":\"\",\n      \"passportissuedby\":\"\",\n      \"birthdate\":\"\",\n      \"remark\":\"\"\n   }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{host}}/a/v2/rest/public/addVehicle?only=driver","host":["{{host}}"],"path":["a","v2","rest","public","addVehicle"],"query":[{"key":"only","value":"driver"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Sat, 09 Apr 2022 13:55:54 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"},{"key":"Strict-Transport-Security","value":"max-age=31536000;"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"id\": 37031,\n        \"lastname\": \"Frank 1\",\n        \"firstname\": \"Stephanie\",\n        \"patronymic\": \"Perferendis aspernat\",\n        \"maincellphone\": \"+12551452087\",\n        \"passportserial\": \"\",\n        \"driverlicenseserial\": \"Harum repellendus Q\",\n        \"contactinfo\": \"\",\n        \"client\": 180,\n        \"car\": null,\n        \"forbidedit\": 0,\n        \"ratify\": 1,\n        \"driverlicenseissued\": \"2021-06-15\",\n        \"passportissued\": \"\",\n        \"seenbyadmin\": 0,\n        \"taxid\": \"\",\n        \"birthdate\": \"0000-00-00\",\n        \"inblacklist\": null,\n        \"deleted\": 0,\n        \"allowPush\": null,\n        \"language\": null,\n        \"driver_id_1C\": null,\n        \"passportnumber\": \"\",\n        \"passportissuedby\": \"\",\n        \"driverlicensenumber\": \"590\",\n        \"driverlicenseissuedby\": \"Impedit sed nemo si\",\n        \"hired\": 0,\n        \"invitationstatus\": null,\n        \"invitationdetails\": null,\n        \"vacant\": 0,\n        \"car_relation\": null\n    }\n}"},{"id":"d8b5bab0-016f-4556-a170-d643a9c9a166","name":"Request by shipper","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"driver\":{\n      \"lastname\":\"Frank\",\n      \"firstname\":\"Stephanie\",\n      \"patronymic\":\"Perferendis aspernat\",\n      \"maincellphone\":\"+12551452087\",\n      \"driverlicenseserial\":\"Harum repellendus Q\",\n      \"driverlicensenumber\":590,\n      \"driverlicenseissued\":\"15.06.2021\",\n      \"driverlicenseissuedby\":\"Impedit sed nemo si\",\n      \"passportserial\":\"\",\n      \"passportnumber\":\"\",\n      \"taxid\":\"\",\n      \"passportissued\":\"\",\n      \"passportissuedby\":\"\",\n      \"birthdate\":\"\",\n      \"remark\":\"\"\n   },\n   \"car\":{\n      \"number\":103,\n      \"carstyle\":\"optionalsplitcarstyle\",\n      \"make-new-form\":41,\n      \"model\":\"Consectetur volupta\",\n      \"cartype\":1,\n      \"chargetype-7\":1,\n      \"chargetype-2\":1,\n      \"chargetype-1\":1,\n      \"chargetype-0\":1,\n      \"ferryproperty-14\":1,\n      \"ferryproperty-13\":1,\n      \"quantity-ferryproperty-13\":5,\n      \"ferryproperty-8\":1,\n      \"ferryproperty-7\":1,\n      \"ferryproperty-0\":\"5\",\n      \"vin\":\"\",\n      \"cellnum\":\"\",\n      \"insuredTil\":\"\",\n      \"carbase\":\"\",\n      \"craft\":\"\",\n      \"gpsid\":\"\",\n      \"vehicleclass\":\"\",\n      \"deadpath\":\"\",\n      \"fullpath\":\"\",\n      \"minRoutePrice\":\"\",\n      \"weight\":\"\",\n      \"axes\":\"\",\n      \"remark\":\"\"\n   },\n   \"trailer\":{\n      \"number\":543,\n      \"loadcapacity\":50,\n      \"cartype\":38,\n      \"model\":\"Numquam eu commodi u\",\n      \"chargetype-7\":1,\n      \"chargetype-2\":1,\n      \"chargetype-1\":1,\n      \"chargetype-3\":1,\n      \"chargetype-0\":\"\",\n      \"ferryproperty-5\":1,\n      \"ferryproperty-6\":1,\n      \"ferryproperty-11\":1,\n      \"quantity-ferryproperty-11\":\"-4\",\n      \"ferryproperty-0\":\"\",\n      \"vin\":\"\",\n      \"width\":\"\",\n      \"height\":\"\",\n      \"volume\":\"\",\n      \"length\":\"\",\n      \"weight\":\"\",\n      \"axes\":\"\",\n      \"remark\":\"\"\n   }\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/addVehicle"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Invalid action\",\n    \"relogin\": false\n}"},{"id":"522aae8b-c2fd-41d9-b25a-23eccedf561b","name":"Incorrect \"only\" param","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"driver\":{\n      \"lastname\":\"Frank 1\",\n      \"firstname\":\"Stephanie\",\n      \"patronymic\":\"Perferendis aspernat\",\n      \"maincellphone\":\"+12551452087\",\n      \"driverlicenseserial\":\"Harum repellendus Q\",\n      \"driverlicensenumber\":590,\n      \"driverlicenseissued\":\"15.06.2021\",\n      \"driverlicenseissuedby\":\"Impedit sed nemo si\",\n      \"passportserial\":\"\",\n      \"passportnumber\":\"\",\n      \"taxid\":\"\",\n      \"passportissued\":\"\",\n      \"passportissuedby\":\"\",\n      \"birthdate\":\"\",\n      \"remark\":\"\"\n   },\n   \"car\":{\n      \"number\":103,\n      \"carstyle\":\"optionalsplitcarstyle\",\n      \"make-new-form\":41,\n      \"model\":\"Consectetur volupta\",\n      \"cartype\":1,\n      \"chargetype-7\":1,\n      \"chargetype-2\":1,\n      \"chargetype-1\":1,\n      \"chargetype-0\":1,\n      \"ferryproperty-14\":1,\n      \"ferryproperty-13\":1,\n      \"quantity-ferryproperty-13\":5,\n      \"ferryproperty-8\":1,\n      \"ferryproperty-7\":1,\n      \"ferryproperty-0\":\"5\",\n      \"vin\":\"\",\n      \"cellnum\":\"\",\n      \"insuredTil\":\"\",\n      \"carbase\":\"\",\n      \"craft\":\"\",\n      \"gpsid\":\"\",\n      \"vehicleclass\":\"\",\n      \"deadpath\":\"\",\n      \"fullpath\":\"\",\n      \"minRoutePrice\":\"\",\n      \"weight\":\"\",\n      \"axes\":\"\",\n      \"remark\":\"\"\n   },\n   \"trailer\":{\n      \"number\":543,\n      \"loadcapacity\":50,\n      \"cartype\":38,\n      \"model\":\"Numquam eu commodi u\",\n      \"chargetype-7\":1,\n      \"chargetype-2\":1,\n      \"chargetype-1\":1,\n      \"chargetype-3\":1,\n      \"chargetype-0\":\"\",\n      \"ferryproperty-5\":1,\n      \"ferryproperty-6\":1,\n      \"ferryproperty-11\":1,\n      \"quantity-ferryproperty-11\":\"-4\",\n      \"ferryproperty-0\":\"\",\n      \"vin\":\"\",\n      \"width\":\"\",\n      \"height\":\"\",\n      \"volume\":\"\",\n      \"length\":\"\",\n      \"weight\":\"\",\n      \"axes\":\"\",\n      \"remark\":\"\"\n   }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{host}}/a/v2/rest/public/addVehicle?only={{invalidVehicleAddingEntity}}","host":["{{host}}"],"path":["a","v2","rest","public","addVehicle"],"query":[{"key":"only","value":"{{invalidVehicleAddingEntity}}","description":"Optional param. Accepted values: `car`, `driver` or `trailer`."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Wrong param only\",\n    \"relogin\": false\n}"},{"id":"980d6c57-d5e4-4464-8395-2609efb1a3e1","name":"Missing required params","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"driver\":{\n      \"lastname\":\"Frank 1\",\n      \"firstname\":\"Stephanie\",\n      \"patronymic\":\"Perferendis aspernat\",\n      \"maincellphone\":\"+12551452087\",\n      \"driverlicenseserial\":\"Harum repellendus Q\",\n      \"driverlicensenumber\":590,\n      \"driverlicenseissued\":\"15.06.2021\",\n      \"driverlicenseissuedby\":\"Impedit sed nemo si\",\n      \"passportserial\":\"\",\n      \"passportnumber\":\"\",\n      \"taxid\":\"\",\n      \"passportissued\":\"\",\n      \"passportissuedby\":\"\",\n      \"birthdate\":\"\",\n      \"remark\":\"\"\n   },\n   \"car\":{\n      \"number\":103,\n      \"carstyle\":\"optionalsplitcarstyle\",\n      \"make-new-form\":41,\n      \"model\":\"Consectetur volupta\",\n      \"cartype\":1,\n      \"chargetype-7\":1,\n      \"chargetype-2\":1,\n      \"chargetype-1\":1,\n      \"chargetype-0\":1,\n      \"ferryproperty-14\":1,\n      \"ferryproperty-13\":1,\n      \"quantity-ferryproperty-13\":5,\n      \"ferryproperty-8\":1,\n      \"ferryproperty-7\":1,\n      \"ferryproperty-0\":\"5\",\n      \"vin\":\"\",\n      \"cellnum\":\"\",\n      \"insuredTil\":\"\",\n      \"carbase\":\"\",\n      \"craft\":\"\",\n      \"gpsid\":\"\",\n      \"vehicleclass\":\"\",\n      \"deadpath\":\"\",\n      \"fullpath\":\"\",\n      \"minRoutePrice\":\"\",\n      \"weight\":\"\",\n      \"axes\":\"\",\n      \"remark\":\"\"\n   },\n   \"trailer\":{\n      \"number\":543,\n      \"loadcapacity\":50,\n      \"cartype\":38,\n      \"model\":\"Numquam eu commodi u\",\n      \"chargetype-7\":1,\n      \"chargetype-2\":1,\n      \"chargetype-1\":1,\n      \"chargetype-3\":1,\n      \"chargetype-0\":\"\",\n      \"ferryproperty-5\":1,\n      \"ferryproperty-6\":1,\n      \"ferryproperty-11\":1,\n      \"quantity-ferryproperty-11\":\"-4\",\n      \"ferryproperty-0\":\"\",\n      \"vin\":\"\",\n      \"width\":\"\",\n      \"height\":\"\",\n      \"volume\":\"\",\n      \"length\":\"\",\n      \"weight\":\"\",\n      \"axes\":\"\",\n      \"remark\":\"\"\n   }\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/addVehicle"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Required fields missing\",\n    \"relogin\": false\n}"}],"_postman_id":"177f155f-f9b3-4487-8575-e916007fd6f5"},{"name":"Get Vehicle Classes","id":"0e4b5a6d-8831-46bc-894d-7d638e4e847b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getVehicleClasses","description":"<p>Returns all vehicle classes of current user company that are set in the app in the settings section. Classes help you to segment your fleet</p>\n<ul>\n<li><p>if successful you will receive your vehicle classes</p>\n</li>\n<li><p>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</p>\n</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getVehicleClasses"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"c272c365-1743-4765-be19-33f69addfea4","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/getVehicleClasses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 63,\n            \"title\": \"DesertEagle\"\n        },\n        {\n            \"id\": 62,\n            \"title\": \"Mustang\"\n        }\n    ]\n}"},{"id":"adbdf2eb-b7e1-4802-8f70-14505742f652","name":"Operation is not available (request by shipper)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/getVehicleClasses"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Invalid action\",\n    \"relogin\": false\n}"},{"id":"41e4ce98-5fd6-4460-8283-b35b9c6b492b","name":"Invalid token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}1","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/getVehicleClasses"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"0e4b5a6d-8831-46bc-894d-7d638e4e847b"},{"name":"Get Vehicle Bases","id":"d4fe98de-ad76-4ca7-9944-95cee5fba7cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getVehicleBases","description":"<p>Returns all vehicle bases of current user company that are set in the app in the settings section.</p>\n<ul>\n<li><p>if successful you will receive your vehicle classes</p>\n</li>\n<li><p>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</p>\n</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getVehicleBases"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"30f9d520-0945-4d50-8095-9b4c12aad246","name":"Operation is not available (request by shipper)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/getVehicleClasses"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Invalid action\",\n    \"relogin\": false\n}"},{"id":"b1c415fa-e5ce-4e9f-ae77-94613bf13d8a","name":"Invalid token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}1","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/getVehicleClasses"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"d4fe98de-ad76-4ca7-9944-95cee5fba7cb"},{"name":"Add a Document to Driver/Car/Trailer","id":"51a74e68-49bb-4aad-aca2-2c3f2e27743b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>Access token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"entity","value":"driver","description":"<p>String. Required.</p>\n","type":"text"},{"key":"entityid","value":"35387","description":"<p>Int. Required.</p>\n","type":"text","uuid":"c12ea406-0558-4750-813a-b61744b44123"},{"key":"documents[]","description":"<p>Document to be added into route</p>\n","type":"file","src":"/Users/dennisberg/Downloads/ukrainian-flags-waving.jpg"},{"key":"documents[]","type":"file","value":null,"disabled":true},{"key":"important","value":"1","description":"<p>Optional. Int. Indicates most important document, as opposed to generic documents.</p>\n","type":"text","uuid":"862eae16-4455-4905-8683-4eb789e1fb49"}]},"url":"{{host}}/a/v2/rest/public/addGenericDocument","description":"<p>Allows carriers to add documents to the fleet entitities. Details of the allowed filetypes and size can be found in the endpoint GET getFileUploadRequirements (located in Aux folder of this documentation).</p>\n<p>No more than 5 files can be uploaded in a single request.</p>\n","urlObject":{"path":["a","v2","rest","public","addGenericDocument"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"65e91d82-0f5a-4360-a2f3-8c458408cd58","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"Access token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"periodic","value":"3005-06-22","description":"Periodic of the route. Required. String/tender","type":"text"},{"key":"documents[]","description":"Document to be added into route","type":"file","src":"/Users/dennisberg/Documents/ViberDownloads/0-02-0a-4f9bdbbac9084f6a3e726f30462e500aaf2ae740f4d8aa924e9e7a05d08e841d_2709ed6caa8.jpg"},{"key":"documents[]","type":"file","src":"/Users/dennisberg/Downloads/856 (1).pdf"},{"key":"documents[]","type":"file","value":null,"disabled":true}]},"url":"{{host}}/a/v2/rest/public/addDocument"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Thu, 16 Mar 2023 13:12:26 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"route\": \"3005-06-22\",\n        \"documents\": {\n            \"0-02-0a-4f9bdbbac9084f6a3e726f30462e500aaf2ae740f4d8aa924e9e7a05d08e841d_2709ed6caa8.jpg\": {\n                \"size\": \"250493\",\n                \"url\": \"https://sovtes.devel/uploads/Sovtes-route-43759-43a4af-0-02-0a-4f9bdbbac9084f6a3e726f30462e500aaf2ae740f4d8aa924e9e7a05d08e841d_2709ed6caa8.jpg\"\n            },\n            \"856 (1).pdf\": {\n                \"size\": \"189441\",\n                \"url\": \"https://sovtes.devel/uploads/Sovtes-route-71884-3dcba3-856 (1).pdf\"\n            }\n        }\n    }\n}"},{"id":"b0c2d864-a1c2-4662-b2b2-4867b597f25b","name":"Invalid file type passed","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"Access token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"periodic","value":"3005-06-22","description":"Periodic of the route. Required. String/tender","type":"text"},{"key":"documents[]","description":"Document to be added into route","type":"file","src":"/Users/dennisberg/Documents/dei/ CET134-webapps/cet134_assessment1_starter.zip"},{"key":"documents[]","type":"file","value":null},{"key":"documents[]","type":"file","value":null,"disabled":true}]},"url":"{{host}}/a/v2/rest/public/addDocument"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Thu, 16 Mar 2023 13:14:34 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Cet134_assessment1_starter.zip document is not one of jpg, jpeg, png, bmp, gif, tif, pdf, doc, docx, xls, xlsx (zip passed). Cannot proceed.\",\n    \"relogin\": false\n}"},{"id":"27a7e570-5f0e-41b1-8ecb-1d2cc27fc95c","name":"Supplied file is infected","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"Access token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"periodic","value":"3005-06-22","description":"Periodic of the route. Required. String/tender","type":"text"},{"key":"documents[]","description":"Document to be added into route","type":"file","src":"/Users/dennisberg/Documents/sovtes/materials/tests/_output/CheckAbilityToRefuseRouteByOperatorCest.refuseFromRoute.fail.png"},{"key":"documents[]","type":"file","value":null},{"key":"documents[]","type":"file","value":null,"disabled":true}]},"url":"{{host}}/a/v2/rest/public/addDocument"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Thu, 16 Mar 2023 13:17:13 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"CheckAbilityToRefuseRouteByOperatorCest.refuseFromRoute.fail.png document is infected. Cannot proceed.\",\n    \"relogin\": false\n}"},{"id":"8049eb77-19b3-4a22-b90e-062e2fddfc25","name":"Too many documents supplied","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"Access token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"periodic","value":"3005-06-22","description":"Periodic of the route. Required. String/tender","type":"text"},{"key":"documents[]","description":"Document to be added into route","type":"file","src":"/Users/dennisberg/Documents/sovtes/materials/tests/_output/CheckAbilityToRefuseRouteByOperatorCest.refuseFromRoute.fail.png"},{"key":"documents[]","type":"file","src":"/Users/dennisberg/Downloads/856 (1).pdf"},{"key":"documents[]","type":"file","src":"/Users/dennisberg/Downloads/1678970831998162 2.doc"},{"key":"documents[]","type":"file","src":"/Users/dennisberg/Downloads/1678970831998162.doc"},{"key":"documents[]","type":"file","src":"/Users/dennisberg/Downloads/експорт.pdf"},{"key":"documents[]","type":"file","src":"/Users/dennisberg/Downloads/sovtes-document-13784.pdf"}]},"url":"{{host}}/a/v2/rest/public/addDocument"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Thu, 16 Mar 2023 13:18:55 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"No more than 5 documents are allowed (6 supplied). Cannot proceed.\",\n    \"relogin\": false\n}"},{"id":"082f82e4-9763-475c-9dc4-f0c02dd16f73","name":"Supplied document is too big","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"Access token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"periodic","value":"3005-06-22","description":"Periodic of the route. Required. String/tender","type":"text"},{"key":"documents[]","description":"Document to be added into route","type":"file","src":"/Users/dennisberg/Downloads/ticket_4995937.pdf"},{"key":"documents[]","type":"file","src":"/Users/dennisberg/Downloads/856 (1).pdf","disabled":true},{"key":"documents[]","type":"file","src":"/Users/dennisberg/Downloads/1678970831998162 2.doc","disabled":true},{"key":"documents[]","type":"file","src":"/Users/dennisberg/Downloads/1678970831998162.doc","disabled":true},{"key":"documents[]","type":"file","src":"/Users/dennisberg/Downloads/експорт.pdf","disabled":true},{"key":"documents[]","type":"file","src":"/Users/dennisberg/Downloads/sovtes-document-13784.pdf","disabled":true}]},"url":"{{host}}/a/v2/rest/public/addDocument"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.23.3"},{"key":"Date","value":"Thu, 16 Mar 2023 13:19:42 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Ticket_4995937.pdf document is too big (9221KB). Must be less than 8MB. Cannot proceed.\",\n    \"relogin\": false\n}"}],"_postman_id":"51a74e68-49bb-4aad-aca2-2c3f2e27743b"},{"name":"Delete Documents","id":"ab700e0c-fbe1-411a-992f-1ae413b35cbf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/document/?documentids=12663,12664","description":"<p>Allow carriers to soft delete a trailer.</p>\n<ul>\n<li><p>if successful you will receive a 200 response and data will be immediately changed</p>\n</li>\n<li><p>If unsuccessful you will receive an error explaining<br />  the problem in the language you supplied with the header or the language<br />  set in the app</p>\n</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","document",""],"host":["{{host}}"],"query":[{"description":{"content":"<p>Int. Required.</p>\n","type":"text/plain"},"key":"documentids","value":"12663,12664"}],"variable":[]}},"response":[{"id":"855a4f8f-f5d5-4e32-8c12-9ee0d5c3e780","name":"Success","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"lastname\": \"Снова 1\",\n    \"firstname\": \"Тест 1\",\n    \"patronymic\": \"Водителя 1\",\n    \"maincellphone\": \"+380637479032d\",\n    \"passportserial\": \"\",\n    \"passportissued\": \"\",\n    \"passportnumber\": \"asd\",\n    \"passportissuedby\": \"\",\n    \"driverlicenseserial\": \"УК\",\n    \"driverlicenseissued\": \"цу\",\n    \"inblacklist\": false,\n    \"driverlicensenumber\": null,\n    \"driverlicenseissuedby\": null,\n    \"car\": null,\n    \"taxid\": \"asd\",\n    \"birthdate\":\"\",\n    \"remark\":\"\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{host}}/a/v2/rest/public/document/?documentids=12663,12664","host":["{{host}}"],"path":["a","v2","rest","public","document",""],"query":[{"key":"documentids","value":"12663,12664"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"},{"id":"d5e3a0d5-3aff-497a-98fc-78015d4f1c1d","name":"Not allowed","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{host}}/a/v2/rest/public/document/?documentids=12663,12664","host":["{{host}}"],"path":["a","v2","rest","public","document",""],"query":[{"key":"documentids","value":"12663,12664","description":"Int. Required."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"Text","header":[{"key":"Server","value":"nginx/1.27.3"},{"key":"Date","value":"Thu, 11 Sep 2025 08:15:50 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"X-Xdebug-Profile-Filename","value":"/var/tmp/cachegrind.out.6674"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"You don’t have permission to delete one or more of the provided documents.\",\n    \"relogin\": false\n}"}],"_postman_id":"ab700e0c-fbe1-411a-992f-1ae413b35cbf"},{"name":"Post Add Vehicle Class","id":"20a026cd-3508-44ba-9286-b11ff928aaf4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>Access token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n \"vehicleclass\": \"test2\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/addVehicleClass","urlObject":{"path":["a","v2","rest","public","addVehicleClass"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"20a026cd-3508-44ba-9286-b11ff928aaf4"},{"name":"Post Add Carbase","id":"6b3b0db7-fa71-4f23-86f6-846c42770f89","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>Access token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n \"address\":\"Hürriyet, 48439 Sk, 33000 Mezitli/Mersin\",\n \"carbase\":\"Test\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/addCarbase","urlObject":{"path":["a","v2","rest","public","addCarbase"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6b3b0db7-fa71-4f23-86f6-846c42770f89"}],"id":"1267bed0-dc98-43ff-9aff-0419c09e530e","_postman_id":"1267bed0-dc98-43ff-9aff-0419c09e530e","description":""},{"name":"For all","item":[{"name":"Get Trailer Body Types","event":[{"listen":"test","script":{"id":"a0fb96ac-7056-474e-8349-4d1e0716ac1f","exec":["var response = pm.response.json();","var isContains = pm.response.text();","if (response.status === 200 || response.status === 'success') {","    pm.test(\"data in response matches array\", () => {","        pm.expect(response.data).to.be.an(\"array\");","    });","","   ","","} else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","   ","};",""],"type":"text/javascript","packages":{}}}],"id":"b577cae2-dda4-4501-9563-e88dbc6ee8b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getTrailerBodyType","description":"<p>Returns the list of trailer body types available in the app.</p>\n<ul>\n<li>if successful you will receive all trailer body types available in the app</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getTrailerBodyType"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"f703f282-82a3-4bd3-8a95-e79e0199aa70","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getTrailerBodyType"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 43,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ БОРТОВИЙ\"\n        },\n        {\n            \"id\": 44,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ БОРТОВИЙ-ТЕНТОВАНИЙ\"\n        },\n        {\n            \"id\": 45,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ВАНТАЖНИЙ-С\"\n        },\n        {\n            \"id\": 46,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ КОМБІ-B\"\n        },\n        {\n            \"id\": 47,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ КОНТЕЙНЕРОВОЗ-C\"\n        },\n        {\n            \"id\": 48,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ЛІСОВОЗ-E\"\n        },\n        {\n            \"id\": 49,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-АВТОВОЗ\"\n        },\n        {\n            \"id\": 50,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-БІТУМОВОЗ\"\n        },\n        {\n            \"id\": 51,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-БІТУМОВОЗ-E\"\n        },\n        {\n            \"id\": 52,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-БЕТОНОРОЗМІШУВАЧ\"\n        },\n        {\n            \"id\": 53,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-БОРОШНОВОЗ\"\n        },\n        {\n            \"id\": 54,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-БОРОШНОВОЗ-E\"\n        },\n        {\n            \"id\": 55,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-БОРТОВИЙ\"\n        },\n        {\n            \"id\": 56,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-БОРТОВИЙ (З КРАНОМ-МАНІПУЛЯТОРОМ)\"\n        },\n        {\n            \"id\": 57,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-БОРТОВИЙ-E\"\n        },\n        {\n            \"id\": 58,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-БОРТОВИЙ-ТЕНТОВАНИЙ\"\n        },\n        {\n            \"id\": 59,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-Д/П ХУДОБИ\"\n        },\n        {\n            \"id\": 60,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-Д/П ХУДОБИ-E\"\n        },\n        {\n            \"id\": 61,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ЗЕРНОВОЗ\"\n        },\n        {\n            \"id\": 62,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ЗЕРНОВОЗ-E\"\n        },\n        {\n            \"id\": 63,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-КОНТЕЙНЕРОВОЗ\"\n        },\n        {\n            \"id\": 64,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-КОНТЕЙНЕРОВОЗ (З ПРИСТР.САМОВИВАНТАЖ)\"\n        },\n        {\n            \"id\": 65,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-КОНТЕЙНЕРОВОЗ-E\"\n        },\n        {\n            \"id\": 66,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ЛІСОВОЗ\"\n        },\n        {\n            \"id\": 67,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ЛІСОВОЗ-E\"\n        },\n        {\n            \"id\": 68,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ПАЛИВОЗАПРАВН-E\"\n        },\n        {\n            \"id\": 69,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ПАЛИВОЗАПРАВНИК\"\n        },\n        {\n            \"id\": 70,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ПАЛИВОЦИСТЕРНА\"\n        },\n        {\n            \"id\": 71,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ПАЛИВОЦИСТЕРНА-E\"\n        },\n        {\n            \"id\": 72,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ПАНЕЛЕВОЗ\"\n        },\n        {\n            \"id\": 73,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ПАНЕЛЕВОЗ-E\"\n        },\n        {\n            \"id\": 74,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ПЛАТФОРМА\"\n        },\n        {\n            \"id\": 75,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ПЛАТФОРМА (З КРАНОМ-МАНІПУЛЯТОРОМ)\"\n        },\n        {\n            \"id\": 76,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ПЛАТФОРМА ТЕНТОВАНА\"\n        },\n        {\n            \"id\": 77,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ПЛАТФОРМА-E\"\n        },\n        {\n            \"id\": 78,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-РЕФРИЖЕРАТОР-E\"\n        },\n        {\n            \"id\": 79,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-РОЗПУСК\"\n        },\n        {\n            \"id\": 80,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-РОЗПУСК-Е\"\n        },\n        {\n            \"id\": 81,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-САМОСКИД\"\n        },\n        {\n            \"id\": 82,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-САМОСКИД-E\"\n        },\n        {\n            \"id\": 83,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-СОРТИМЕНТОВОЗ\"\n        },\n        {\n            \"id\": 84,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ТЕНТОВАНИЙ\"\n        },\n        {\n            \"id\": 85,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ФУРГОН\"\n        },\n        {\n            \"id\": 86,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ФУРГОН ІЗОТЕРМІЧНИЙ\"\n        },\n        {\n            \"id\": 87,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ФУРГОН ІЗОТЕРМІЧНИЙ-E\"\n        },\n        {\n            \"id\": 88,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ФУРГОН РЕФРИЖЕРАТОР\"\n        },\n        {\n            \"id\": 89,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ФУРГОН-E\"\n        },\n        {\n            \"id\": 90,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ЦЕМЕНТОВОЗ\"\n        },\n        {\n            \"id\": 91,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ЦЕМЕНТОВОЗ-E\"\n        },\n        {\n            \"id\": 92,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ЦИСТЕРНА\"\n        },\n        {\n            \"id\": 93,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ЦИСТЕРНА АСЕНІЗАЦІЙНА\"\n        },\n        {\n            \"id\": 94,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ЦИСТЕРНА Д/П НЕБЕЗ. ВАНТАЖ\"\n        },\n        {\n            \"id\": 95,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ЦИСТЕРНА НЕБЕЗ\"\n        },\n        {\n            \"id\": 96,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ЦИСТЕРНА НЕБЕЗ-E\"\n        },\n        {\n            \"id\": 97,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ЦИСТЕРНА ХАРЧОВА\"\n        },\n        {\n            \"id\": 98,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ЦИСТЕРНА ХАРЧОВА-E\"\n        },\n        {\n            \"id\": 99,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ЦИСТЕРНА-E\"\n        },\n        {\n            \"id\": 100,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПРИЧІП\"\n        },\n        {\n            \"id\": 101,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ Н/ПРИЧІП-ФУРГОН-E\"\n        },\n        {\n            \"id\": 102,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ НП-АВТОВОЗ\"\n        },\n        {\n            \"id\": 103,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ПАЛИВОЦИСТЕРНА\"\n        },\n        {\n            \"id\": 104,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ПЛАТФОРМА\"\n        },\n        {\n            \"id\": 105,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ПР-БОРТОВИЙ\"\n        },\n        {\n            \"id\": 106,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ПР-БОРТОВИЙ-E\"\n        },\n        {\n            \"id\": 107,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ПР-БОРТОВИЙ-ТЕНТОВАНИЙ\"\n        },\n        {\n            \"id\": 108,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ПР-ЗЕРНОВОЗ-E\"\n        },\n        {\n            \"id\": 109,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ПР-КОНТЕЙНЕРОВОЗ\"\n        },\n        {\n            \"id\": 110,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ПР-ЛЕГКОВИЙ-B\"\n        },\n        {\n            \"id\": 111,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ПР-ПАЛИВОЦИСТЕРНА-E\"\n        },\n        {\n            \"id\": 112,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ПР-ПЛАТФОРМА\"\n        },\n        {\n            \"id\": 113,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ПР-ПЛАТФОРМА-E\"\n        },\n        {\n            \"id\": 114,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ПР-РЕФРИЖЕРАТОР-E\"\n        },\n        {\n            \"id\": 115,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ПР-РОЗПУСК\"\n        },\n        {\n            \"id\": 116,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ПР-САМОСКИД-E\"\n        },\n        {\n            \"id\": 117,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ПР-ФУРГОН ІЗОТЕРМІЧНИЙ-E\"\n        },\n        {\n            \"id\": 118,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ПР-ФУРГОН РЕФРИЖЕРАТОР\"\n        },\n        {\n            \"id\": 119,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ПР-ФУРГОН-E\"\n        },\n        {\n            \"id\": 120,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ПР-ЦИСТЕРНА\"\n        },\n        {\n            \"id\": 121,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ПР-ЦИСТЕРНА ХАРЧОВА-E\"\n        },\n        {\n            \"id\": 122,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ПР-ЦИСТЕРНА-E\"\n        },\n        {\n            \"id\": 123,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ПРИЧІП\"\n        },\n        {\n            \"id\": 124,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ СІДЛОВИЙ ТЯГАЧ-E\"\n        },\n        {\n            \"id\": 125,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ САМОСКИД\"\n        },\n        {\n            \"id\": 126,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ФУРГОН\"\n        },\n        {\n            \"id\": 127,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ФУРГОН ІЗОТЕРМІЧНИЙ-C\"\n        },\n        {\n            \"id\": 128,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ФУРГОН ІЗОТЕРМІЧНИЙ-В\"\n        },\n        {\n            \"id\": 129,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ФУРГОН РЕФРИЖЕРАТОР\"\n        },\n        {\n            \"id\": 130,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ФУРГОН-C\"\n        },\n        {\n            \"id\": 131,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ФУРГОН-РЕФРИЖЕРАТОР\"\n        },\n        {\n            \"id\": 132,\n            \"title\": \"НАПІВПРИЧІП ЗАГАЛЬНИЙ ЦИСТЕРНА\"\n        },\n        {\n            \"id\": 133,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ БОРТОВИЙ\"\n        },\n        {\n            \"id\": 134,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ БОРТОВИЙ-ТЕНТОВАНИЙ\"\n        },\n        {\n            \"id\": 135,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ КОНТЕЙНЕРОВОЗ\"\n        },\n        {\n            \"id\": 136,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ КОНТЕЙНЕРОВОЗ-C\"\n        },\n        {\n            \"id\": 137,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ ЛІСОВОЗ\"\n        },\n        {\n            \"id\": 138,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ ЛІСОВОЗ-E\"\n        },\n        {\n            \"id\": 139,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-АВТОВОЗ\"\n        },\n        {\n            \"id\": 140,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-БІТУМОВОЗ\"\n        },\n        {\n            \"id\": 141,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-БІТУМОВОЗ-E\"\n        },\n        {\n            \"id\": 142,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-БЕТОНОРОЗМІШУВАЧ\"\n        },\n        {\n            \"id\": 143,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-БОРОШНОВОЗ\"\n        },\n        {\n            \"id\": 144,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-БОРОШНОВОЗ-E\"\n        },\n        {\n            \"id\": 145,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-БОРТОВИЙ\"\n        },\n        {\n            \"id\": 146,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-БОРТОВИЙ (З КРАНОМ-МАНІПУЛЯТОРОМ)\"\n        },\n        {\n            \"id\": 147,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-БОРТОВИЙ-E\"\n        },\n        {\n            \"id\": 148,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-БОРТОВИЙ-ТЕНТОВАНИЙ\"\n        },\n        {\n            \"id\": 149,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-Д/П ПТИЦІ\"\n        },\n        {\n            \"id\": 150,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-Д/П ХУДОБИ\"\n        },\n        {\n            \"id\": 151,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-Д/П ХУДОБИ-E\"\n        },\n        {\n            \"id\": 152,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-Д/П ЧОВНІВ\"\n        },\n        {\n            \"id\": 153,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ЗЕРНОВОЗ\"\n        },\n        {\n            \"id\": 154,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ЗЕРНОВОЗ-E\"\n        },\n        {\n            \"id\": 155,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-КОНТЕЙНЕРОВОЗ\"\n        },\n        {\n            \"id\": 156,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-КОНТЕЙНЕРОВОЗ (З ПРИСТР.САМОВИВАНТАЖ)\"\n        },\n        {\n            \"id\": 157,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-КОНТЕЙНЕРОВОЗ-E\"\n        },\n        {\n            \"id\": 158,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ЛІСОВОЗ\"\n        },\n        {\n            \"id\": 159,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ЛІСОВОЗ-E\"\n        },\n        {\n            \"id\": 160,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ПАЛИВОЗАПРАВН-E\"\n        },\n        {\n            \"id\": 161,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ПАЛИВОЗАПРАВНИК\"\n        },\n        {\n            \"id\": 162,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ПАЛИВОЦИСТЕРНА\"\n        },\n        {\n            \"id\": 163,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ПАЛИВОЦИСТЕРНА-E\"\n        },\n        {\n            \"id\": 164,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ПАНЕЛЕВОЗ\"\n        },\n        {\n            \"id\": 165,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ПАНЕЛЕВОЗ-E\"\n        },\n        {\n            \"id\": 166,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ПЛАТФОРМА\"\n        },\n        {\n            \"id\": 167,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ПЛАТФОРМА (З КРАНОМ-МАНІПУЛЯТОРОМ)\"\n        },\n        {\n            \"id\": 168,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ПЛАТФОРМА ТЕНТОВАНА\"\n        },\n        {\n            \"id\": 169,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ПЛАТФОРМА(З КРАНОМ-МАНІПУЛЯТОРОМ)\"\n        },\n        {\n            \"id\": 170,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ПЛАТФОРМА-E\"\n        },\n        {\n            \"id\": 171,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-РЕФРИЖЕРАТОР-E\"\n        },\n        {\n            \"id\": 172,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-РОЗПУСК\"\n        },\n        {\n            \"id\": 173,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-РОЗПУСК-Е\"\n        },\n        {\n            \"id\": 174,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-САМОСКИД\"\n        },\n        {\n            \"id\": 175,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-САМОСКИД-E\"\n        },\n        {\n            \"id\": 176,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-СКЛОВОЗ\"\n        },\n        {\n            \"id\": 177,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-СОРТИМЕНТОВОЗ\"\n        },\n        {\n            \"id\": 178,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-СПЕЦІАЛЬНИЙ-Е\"\n        },\n        {\n            \"id\": 179,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ТЕНТОВАНИЙ\"\n        },\n        {\n            \"id\": 180,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ФУРГОН\"\n        },\n        {\n            \"id\": 181,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ФУРГОН ІЗОТЕРМІЧНИЙ\"\n        },\n        {\n            \"id\": 182,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ФУРГОН ІЗОТЕРМІЧНИЙ-E\"\n        },\n        {\n            \"id\": 183,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ФУРГОН ЖИТЛОВИЙ\"\n        },\n        {\n            \"id\": 184,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ФУРГОН РЕФРИЖЕРАТОР\"\n        },\n        {\n            \"id\": 185,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ФУРГОН-E\"\n        },\n        {\n            \"id\": 186,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ЦЕМЕНТОВОЗ\"\n        },\n        {\n            \"id\": 187,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ЦЕМЕНТОВОЗ-E\"\n        },\n        {\n            \"id\": 188,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ЦИСТЕРНА\"\n        },\n        {\n            \"id\": 189,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ЦИСТЕРНА АСЕНІЗАЦІЙНА\"\n        },\n        {\n            \"id\": 190,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ЦИСТЕРНА АСЕНІЗАЦІЙНА-E\"\n        },\n        {\n            \"id\": 191,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ЦИСТЕРНА Д/П НЕБЕЗ. ВАНТАЖ\"\n        },\n        {\n            \"id\": 192,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ЦИСТЕРНА НЕБЕЗ\"\n        },\n        {\n            \"id\": 193,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ЦИСТЕРНА НЕБЕЗ-E\"\n        },\n        {\n            \"id\": 194,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ЦИСТЕРНА САМОСКИД\"\n        },\n        {\n            \"id\": 195,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ЦИСТЕРНА ХАРЧОВА\"\n        },\n        {\n            \"id\": 196,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ЦИСТЕРНА ХАРЧОВА-E\"\n        },\n        {\n            \"id\": 197,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ЦИСТЕРНА-E\"\n        },\n        {\n            \"id\": 198,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПРИЧІП\"\n        },\n        {\n            \"id\": 199,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПРИЧІП-ФУРГОН-E\"\n        },\n        {\n            \"id\": 200,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ НЕВИЗНАЧЕНИЙ\"\n        },\n        {\n            \"id\": 201,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПАЛИВОЗАПРАВНИК-C\"\n        },\n        {\n            \"id\": 202,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПАЛИВОЦИСТЕРНА\"\n        },\n        {\n            \"id\": 203,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПЛАТФОРМА\"\n        },\n        {\n            \"id\": 204,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-Д/П ХУДОБИ\"\n        },\n        {\n            \"id\": 205,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-Д/П ХУДОБИ-E\"\n        },\n        {\n            \"id\": 206,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ЗЕРНОВОЗ-E\"\n        },\n        {\n            \"id\": 207,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-КОНТЕЙНЕРОВОЗ\"\n        },\n        {\n            \"id\": 208,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ЛІСОВОЗ-E\"\n        },\n        {\n            \"id\": 209,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ПЛАТФОРМА-E\"\n        },\n        {\n            \"id\": 210,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-САМОСКИД\"\n        },\n        {\n            \"id\": 211,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-САМОСКИД-E\"\n        },\n        {\n            \"id\": 212,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ФУРГОН\"\n        },\n        {\n            \"id\": 213,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ЦИСТЕРНА НЕБЕЗП.-E\"\n        },\n        {\n            \"id\": 214,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ САМОСКИД\"\n        },\n        {\n            \"id\": 215,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ СОРТИМЕНТОВОЗ\"\n        },\n        {\n            \"id\": 216,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ СПЕЦІАЛЬНИЙ ВАНТАЖНИЙ-C\"\n        },\n        {\n            \"id\": 217,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛІЗОВАНИЙ ФУРГОН РЕФРИЖЕРАТОР\"\n        },\n        {\n            \"id\": 218,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ БУРОВИЙ-C\"\n        },\n        {\n            \"id\": 219,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ ВОДОЦИСТЕРНА-C\"\n        },\n        {\n            \"id\": 220,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ КОНТЕЙНЕРОВОЗ\"\n        },\n        {\n            \"id\": 221,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ КОНТЕЙНЕРОВОЗ-C\"\n        },\n        {\n            \"id\": 222,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ ЛІСОВОЗ-E\"\n        },\n        {\n            \"id\": 223,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-АВТОГУДРОНАТОР-Е\"\n        },\n        {\n            \"id\": 224,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-БІТУМОВОЗ-E\"\n        },\n        {\n            \"id\": 225,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-БЕТОНОРОЗМІШУВАЧ\"\n        },\n        {\n            \"id\": 226,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-БОРОШНОВОЗ\"\n        },\n        {\n            \"id\": 227,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-БОРОШНОВОЗ-E\"\n        },\n        {\n            \"id\": 228,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-БОРТОВИЙ\"\n        },\n        {\n            \"id\": 229,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-БОРТОВИЙ-E\"\n        },\n        {\n            \"id\": 230,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-БОРТОВИЙ-ТЕНТОВАНИЙ\"\n        },\n        {\n            \"id\": 231,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ГІДРАТАЦІЙНА УСТАНОВКА\"\n        },\n        {\n            \"id\": 232,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-Д/П ПТИЦІ\"\n        },\n        {\n            \"id\": 233,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-Д/П ХУДОБИ\"\n        },\n        {\n            \"id\": 234,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-Д/П ХУДОБИ-E\"\n        },\n        {\n            \"id\": 235,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ЗЕРНОВОЗ-E\"\n        },\n        {\n            \"id\": 236,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-КОЛТЮБІНГОВА УСТАНОВКА\"\n        },\n        {\n            \"id\": 237,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-КОМПРЕСОРНА СТАНЦІЯ\"\n        },\n        {\n            \"id\": 238,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-КОНТЕЙНЕРОВОЗ\"\n        },\n        {\n            \"id\": 239,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-КОНТЕЙНЕРОВОЗ-E\"\n        },\n        {\n            \"id\": 240,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-КУХНЯ\"\n        },\n        {\n            \"id\": 241,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ЛІСОВОЗ\"\n        },\n        {\n            \"id\": 242,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-НАСОСНА УСТАНОВКА\"\n        },\n        {\n            \"id\": 243,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ПІДКАТНИЙ СІДЛОВИЙ\"\n        },\n        {\n            \"id\": 244,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ПАЛИВОЗАПРАВН-E\"\n        },\n        {\n            \"id\": 245,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ПАЛИВОЗАПРАВНИК\"\n        },\n        {\n            \"id\": 246,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ПАЛИВОЦИСТЕРНА\"\n        },\n        {\n            \"id\": 247,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ПАЛИВОЦИСТЕРНА-E\"\n        },\n        {\n            \"id\": 248,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ПАНЕЛЕВОЗ\"\n        },\n        {\n            \"id\": 249,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ПАНЕЛЕВОЗ-E\"\n        },\n        {\n            \"id\": 250,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ПЛАТФОРМА\"\n        },\n        {\n            \"id\": 251,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ПЛАТФОРМА-E\"\n        },\n        {\n            \"id\": 252,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-РЕФРИЖЕРАТОР-E\"\n        },\n        {\n            \"id\": 253,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-РОЗПУСК-Е\"\n        },\n        {\n            \"id\": 254,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-САМОСКИД\"\n        },\n        {\n            \"id\": 255,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-САМОСКИД-E\"\n        },\n        {\n            \"id\": 256,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-СМІТТЄВОЗ\"\n        },\n        {\n            \"id\": 257,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-СОРТИМЕНТОВОЗ\"\n        },\n        {\n            \"id\": 258,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-СПЕЦІАЛЬНИЙ-Е\"\n        },\n        {\n            \"id\": 259,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ТЕНТОВАНИЙ\"\n        },\n        {\n            \"id\": 260,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-УСТАНОВКА МАНІФОЛЬД\"\n        },\n        {\n            \"id\": 261,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ФУРГОН ІЗОТЕРМІЧНИЙ\"\n        },\n        {\n            \"id\": 262,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ФУРГОН ІЗОТЕРМІЧНИЙ-E\"\n        },\n        {\n            \"id\": 263,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ФУРГОН ЖИТЛОВИЙ\"\n        },\n        {\n            \"id\": 264,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ФУРГОН РЕФРИЖЕРАТОР\"\n        },\n        {\n            \"id\": 265,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ФУРГОН-E\"\n        },\n        {\n            \"id\": 266,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ЦЕМЕНТОВОЗ\"\n        },\n        {\n            \"id\": 267,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ЦЕМЕНТОВОЗ-E\"\n        },\n        {\n            \"id\": 268,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ЦИСТЕРНА\"\n        },\n        {\n            \"id\": 269,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ЦИСТЕРНА АВТОГУДРОНАТОР\"\n        },\n        {\n            \"id\": 270,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ЦИСТЕРНА Д/П НЕБЕЗ. ВАНТАЖ\"\n        },\n        {\n            \"id\": 271,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ЦИСТЕРНА НЕБЕЗ\"\n        },\n        {\n            \"id\": 272,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ЦИСТЕРНА НЕБЕЗ-E\"\n        },\n        {\n            \"id\": 273,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ЦИСТЕРНА ХАРЧОВА\"\n        },\n        {\n            \"id\": 274,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ЦИСТЕРНА ХАРЧОВА-E\"\n        },\n        {\n            \"id\": 275,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ЦИСТЕРНА-E\"\n        },\n        {\n            \"id\": 276,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ Н/ПРИЧІП\"\n        },\n        {\n            \"id\": 277,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ НП-АВТОВОЗ\"\n        },\n        {\n            \"id\": 278,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ ПАЛИВОЗАПРАВНИК-C\"\n        },\n        {\n            \"id\": 279,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ ПАЛИВОЦИСТЕРНА\"\n        },\n        {\n            \"id\": 280,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ ПР-КОНТЕЙНЕРОВОЗ\"\n        },\n        {\n            \"id\": 281,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ ПР-ПАЛИВОЦИСТЕРНА-E\"\n        },\n        {\n            \"id\": 282,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ ПР-ПЛАТФОРМА-E\"\n        },\n        {\n            \"id\": 283,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ ПР-РЕФРИЖЕРАТОР-E\"\n        },\n        {\n            \"id\": 284,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ ПР-РОЗПУСК-E\"\n        },\n        {\n            \"id\": 285,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ ПР-ФУРГОН ІЗОТЕРМІЧНИЙ-E\"\n        },\n        {\n            \"id\": 286,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ ПР-ФУРГОН-E\"\n        },\n        {\n            \"id\": 287,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ ПР-ЦИСТЕРНА НЕБЕЗП.-E\"\n        },\n        {\n            \"id\": 288,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ ПР-ЦИСТЕРНА ХАРЧОВА-E\"\n        },\n        {\n            \"id\": 289,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ САМОСКИД\"\n        },\n        {\n            \"id\": 290,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ СПЕЦІАЛЬНИЙ ВАНТАЖНИЙ-C\"\n        },\n        {\n            \"id\": 291,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ ФУРГОН ІЗОТЕРМІЧНИЙ-C\"\n        },\n        {\n            \"id\": 292,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ ФУРГОН ІЗОТЕРМІЧНИЙ-В\"\n        },\n        {\n            \"id\": 293,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ ФУРГОН РЕФРИЖЕРАТОР-B\"\n        },\n        {\n            \"id\": 294,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ ФУРГОН-РЕФРИЖЕРАТОР\"\n        },\n        {\n            \"id\": 295,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ ЦИСТЕРНА АСЕНІЗАЦІЙНА-C\"\n        },\n        {\n            \"id\": 296,\n            \"title\": \"НАПІВПРИЧІП СПЕЦІАЛЬНИЙ ЦИСТЕРНА Д/П НЕБЕЗ. ВАН-C\"\n        },\n        {\n            \"id\": 297,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ БОРТОВИЙ\"\n        },\n        {\n            \"id\": 298,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ БОРТОВИЙ МАЛОТОНАЖНИЙ-B\"\n        },\n        {\n            \"id\": 299,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ БОРТОВИЙ-ТЕНТОВАНИЙ\"\n        },\n        {\n            \"id\": 300,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ВАНТАЖНИЙ-С\"\n        },\n        {\n            \"id\": 301,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ КОНТЕЙНЕРОВОЗ-C\"\n        },\n        {\n            \"id\": 302,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ЛІСОВОЗ-E\"\n        },\n        {\n            \"id\": 303,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ЛЕГКОВИЙ-В\"\n        },\n        {\n            \"id\": 304,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ Н/ПР-БОРТОВИЙ\"\n        },\n        {\n            \"id\": 305,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ Н/ПР-БОРТОВИЙ-E\"\n        },\n        {\n            \"id\": 306,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ Н/ПР-БОРТОВИЙ-ТЕНТОВАНИЙ\"\n        },\n        {\n            \"id\": 307,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ Н/ПР-КОНТЕЙНЕРОВОЗ-E\"\n        },\n        {\n            \"id\": 308,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ПАЛИВОЦИСТЕРНА-E\"\n        },\n        {\n            \"id\": 309,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ПЛАТФОРМА\"\n        },\n        {\n            \"id\": 310,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ПЛАТФОРМА-E\"\n        },\n        {\n            \"id\": 311,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ Н/ПР-РЕФРИЖЕРАТОР-E\"\n        },\n        {\n            \"id\": 312,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ Н/ПР-РОЗПУСК\"\n        },\n        {\n            \"id\": 313,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ Н/ПР-РОЗПУСК-Е\"\n        },\n        {\n            \"id\": 314,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ Н/ПР-САМОСКИД-E\"\n        },\n        {\n            \"id\": 315,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ФУРГОН ІЗОТЕРМІЧНИЙ-E\"\n        },\n        {\n            \"id\": 316,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ФУРГОН-E\"\n        },\n        {\n            \"id\": 317,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ЦИСТЕРНА ХАРЧОВА\"\n        },\n        {\n            \"id\": 318,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ЦИСТЕРНА ХАРЧОВА-E\"\n        },\n        {\n            \"id\": 319,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ Н/ПР-ЦИСТЕРНА-E\"\n        },\n        {\n            \"id\": 320,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ Н/ПРИЧІП\"\n        },\n        {\n            \"id\": 321,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ Н/ПРИЧІП-ФУРГОН-E\"\n        },\n        {\n            \"id\": 322,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПАЛИВОЦИСТЕРНА\"\n        },\n        {\n            \"id\": 323,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПЛАТФОРМА\"\n        },\n        {\n            \"id\": 324,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-АВТОВОЗ\"\n        },\n        {\n            \"id\": 325,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-АМФІБІЯ\"\n        },\n        {\n            \"id\": 326,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-БОРТОВИЙ\"\n        },\n        {\n            \"id\": 327,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-БОРТОВИЙ-B\"\n        },\n        {\n            \"id\": 328,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-БОРТОВИЙ-E\"\n        },\n        {\n            \"id\": 329,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-БОРТОВИЙ-ТЕНТОВАНИЙ\"\n        },\n        {\n            \"id\": 330,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-Д/П МОТОТРАНСПОРТУ\"\n        },\n        {\n            \"id\": 331,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-Д/П ХУДОБИ\"\n        },\n        {\n            \"id\": 332,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-Д/П ХУДОБИ-E\"\n        },\n        {\n            \"id\": 333,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-Д/П ЧОВНІВ\"\n        },\n        {\n            \"id\": 334,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-ЗЕРНОВОЗ\"\n        },\n        {\n            \"id\": 335,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-ЗЕРНОВОЗ-E\"\n        },\n        {\n            \"id\": 336,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-КОНТЕЙНЕРОВОЗ\"\n        },\n        {\n            \"id\": 337,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-ЛІСОВОЗ\"\n        },\n        {\n            \"id\": 338,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-ЛІСОВОЗ-E\"\n        },\n        {\n            \"id\": 339,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-ЛЕГКОВИЙ-B\"\n        },\n        {\n            \"id\": 340,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-МОТОЦИКЛЕТНИЙ\"\n        },\n        {\n            \"id\": 341,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-ПІДЙОМНИК\"\n        },\n        {\n            \"id\": 342,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-ПАЛИВОЦИСТЕРНА\"\n        },\n        {\n            \"id\": 343,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-ПАЛИВОЦИСТЕРНА-E\"\n        },\n        {\n            \"id\": 344,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-ПЛАТФОРМА\"\n        },\n        {\n            \"id\": 345,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-ПЛАТФОРМА ТЕНТОВАНА\"\n        },\n        {\n            \"id\": 346,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-ПЛАТФОРМА-B\"\n        },\n        {\n            \"id\": 347,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-ПЛАТФОРМА-E\"\n        },\n        {\n            \"id\": 348,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-РЕФРИЖЕРАТОР-E\"\n        },\n        {\n            \"id\": 349,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-РОЗПУСК\"\n        },\n        {\n            \"id\": 350,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-РОЗПУСК-E\"\n        },\n        {\n            \"id\": 351,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-САМОСКИД\"\n        },\n        {\n            \"id\": 352,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-САМОСКИД-E\"\n        },\n        {\n            \"id\": 353,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-СОРТИМЕНТОВОЗ\"\n        },\n        {\n            \"id\": 354,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-ТЕНТОВАНИЙ\"\n        },\n        {\n            \"id\": 355,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-ТОРГОВИЙ\"\n        },\n        {\n            \"id\": 356,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-ФУРГОН\"\n        },\n        {\n            \"id\": 357,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-ФУРГОН ІЗОТЕРМІЧНИЙ\"\n        },\n        {\n            \"id\": 358,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-ФУРГОН ІЗОТЕРМІЧНИЙ-E\"\n        },\n        {\n            \"id\": 359,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-ФУРГОН ЖИТЛОВИЙ\"\n        },\n        {\n            \"id\": 360,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-ФУРГОН ЛЕГКОВИЙ\"\n        },\n        {\n            \"id\": 361,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-ФУРГОН ЛЕГКОВИЙ-B\"\n        },\n        {\n            \"id\": 362,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-ФУРГОН РЕФРИЖЕРАТОР\"\n        },\n        {\n            \"id\": 363,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-ФУРГОН-E\"\n        },\n        {\n            \"id\": 364,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-ЦИСТЕРНА\"\n        },\n        {\n            \"id\": 365,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-ЦИСТЕРНА НЕБЕЗП.-E\"\n        },\n        {\n            \"id\": 366,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-ЦИСТЕРНА ХАРЧОВА\"\n        },\n        {\n            \"id\": 367,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-ЦИСТЕРНА ХАРЧОВА-E\"\n        },\n        {\n            \"id\": 368,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПР-ЦИСТЕРНА-E\"\n        },\n        {\n            \"id\": 369,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ПРИЧІП\"\n        },\n        {\n            \"id\": 370,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ САМОСКИД\"\n        },\n        {\n            \"id\": 371,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ФУРГОН\"\n        },\n        {\n            \"id\": 372,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ФУРГОН ІЗОТЕРМІЧНИЙ-C\"\n        },\n        {\n            \"id\": 373,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ФУРГОН ІЗОТЕРМІЧНИЙ-В\"\n        },\n        {\n            \"id\": 374,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ФУРГОН ЖИТЛОВИЙ\"\n        },\n        {\n            \"id\": 375,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ФУРГОН МАЛОТОНАЖНИЙ-B\"\n        },\n        {\n            \"id\": 376,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ФУРГОН ПАСАЖИРСЬКИЙ-CІD\"\n        },\n        {\n            \"id\": 377,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ФУРГОН-C\"\n        },\n        {\n            \"id\": 378,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ЦИСТЕРНА МАЛОТОНАЖНА-В\"\n        },\n        {\n            \"id\": 379,\n            \"title\": \"ПРИЧІП ЗАГАЛЬНИЙ ЦИСТЕРНА ХАРЧОВА\"\n        },\n        {\n            \"id\": 380,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ БОРТОВИЙ\"\n        },\n        {\n            \"id\": 381,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ БОРТОВИЙ-ТЕНТОВАНИЙ\"\n        },\n        {\n            \"id\": 382,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ КОНТЕЙНЕРОВОЗ-C\"\n        },\n        {\n            \"id\": 383,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ЛІСОВОЗ\"\n        },\n        {\n            \"id\": 384,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ЛІСОВОЗ-E\"\n        },\n        {\n            \"id\": 385,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-БОРТОВИЙ-E\"\n        },\n        {\n            \"id\": 386,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ЗЕРНОВОЗ-E\"\n        },\n        {\n            \"id\": 387,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-КОНТЕЙНЕРОВОЗ-E\"\n        },\n        {\n            \"id\": 388,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ЛІСОВОЗ-E\"\n        },\n        {\n            \"id\": 389,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ПАЛИВОЦИСТЕРНА-E\"\n        },\n        {\n            \"id\": 390,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ПЛАТФОРМА\"\n        },\n        {\n            \"id\": 391,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ПЛАТФОРМА-E\"\n        },\n        {\n            \"id\": 392,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-РЕФРИЖЕРАТОР-E\"\n        },\n        {\n            \"id\": 393,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-САМОСКИД-E\"\n        },\n        {\n            \"id\": 394,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ФУРГОН РЕФРИЖЕРАТОР\"\n        },\n        {\n            \"id\": 395,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПР-ЦИСТЕРНА ХАРЧОВА-E\"\n        },\n        {\n            \"id\": 396,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ Н/ПРИЧІП\"\n        },\n        {\n            \"id\": 397,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПЛАТФОРМА\"\n        },\n        {\n            \"id\": 398,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-АВТОВОЗ\"\n        },\n        {\n            \"id\": 399,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-АМФІБІЯ\"\n        },\n        {\n            \"id\": 400,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-БОРТОВИЙ\"\n        },\n        {\n            \"id\": 401,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-БОРТОВИЙ-B\"\n        },\n        {\n            \"id\": 402,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-БОРТОВИЙ-E\"\n        },\n        {\n            \"id\": 403,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-БОРТОВИЙ-ТЕНТОВАНИЙ\"\n        },\n        {\n            \"id\": 404,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ВОДОЦИСТЕРНА\"\n        },\n        {\n            \"id\": 405,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ВОДОЦИСТЕРНА-E\"\n        },\n        {\n            \"id\": 406,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-Д/П МОТОТРАНСПОРТУ\"\n        },\n        {\n            \"id\": 407,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-Д/П ХУДОБИ\"\n        },\n        {\n            \"id\": 408,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-Д/П ХУДОБИ-B\"\n        },\n        {\n            \"id\": 409,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-Д/П ХУДОБИ-E\"\n        },\n        {\n            \"id\": 410,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-Д/П ЧОВНІВ\"\n        },\n        {\n            \"id\": 411,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ДЛЯ БУКСИРУВАННЯ НАПІВПРИЧЕПІВ\"\n        },\n        {\n            \"id\": 412,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ДЛЯ БУКСИРУВАННЯ НАПІВПРИЧЕПІВ-E\"\n        },\n        {\n            \"id\": 413,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ЗЕРНОВОЗ\"\n        },\n        {\n            \"id\": 414,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ЗЕРНОВОЗ-E\"\n        },\n        {\n            \"id\": 415,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-КОНТЕЙНЕРОВОЗ\"\n        },\n        {\n            \"id\": 416,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-КОРМОВОЗ\"\n        },\n        {\n            \"id\": 417,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ЛІСОВОЗ\"\n        },\n        {\n            \"id\": 418,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ЛІСОВОЗ-E\"\n        },\n        {\n            \"id\": 419,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ЛЕГКОВИЙ-B\"\n        },\n        {\n            \"id\": 420,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ПАЛИВОЦИСТЕРНА\"\n        },\n        {\n            \"id\": 421,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ПАЛИВОЦИСТЕРНА-E\"\n        },\n        {\n            \"id\": 422,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ПЛАТФОРМА\"\n        },\n        {\n            \"id\": 423,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ПЛАТФОРМА ТЕНТОВАНА\"\n        },\n        {\n            \"id\": 424,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ПЛАТФОРМА-B\"\n        },\n        {\n            \"id\": 425,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ПЛАТФОРМА-E\"\n        },\n        {\n            \"id\": 426,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-РЕФРИЖЕРАТОР-E\"\n        },\n        {\n            \"id\": 427,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-РОЗПУСК\"\n        },\n        {\n            \"id\": 428,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-РОЗПУСК-E\"\n        },\n        {\n            \"id\": 429,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-САМОСКИД\"\n        },\n        {\n            \"id\": 430,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-САМОСКИД-B\"\n        },\n        {\n            \"id\": 431,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-САМОСКИД-E\"\n        },\n        {\n            \"id\": 432,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-СОРТИМЕНТОВОЗ\"\n        },\n        {\n            \"id\": 433,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ТЕНТОВАНИЙ\"\n        },\n        {\n            \"id\": 434,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ТОРГОВИЙ\"\n        },\n        {\n            \"id\": 435,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ФУРГОН\"\n        },\n        {\n            \"id\": 436,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ФУРГОН ІЗОТЕРМІЧНИЙ\"\n        },\n        {\n            \"id\": 437,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ФУРГОН ІЗОТЕРМІЧНИЙ-E\"\n        },\n        {\n            \"id\": 438,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ФУРГОН ЖИТЛОВИЙ\"\n        },\n        {\n            \"id\": 439,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ФУРГОН ЛЕГКОВИЙ\"\n        },\n        {\n            \"id\": 440,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ФУРГОН ЛЕГКОВИЙ-B\"\n        },\n        {\n            \"id\": 441,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ФУРГОН РЕФРИЖЕРАТОР\"\n        },\n        {\n            \"id\": 442,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ФУРГОН-E\"\n        },\n        {\n            \"id\": 443,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ЦИСТЕРНА\"\n        },\n        {\n            \"id\": 444,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ЦИСТЕРНА АСЕНІЗАЦІЙНА\"\n        },\n        {\n            \"id\": 445,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ЦИСТЕРНА Д/П НЕБЕЗ. ВАНТАЖ\"\n        },\n        {\n            \"id\": 446,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ЦИСТЕРНА НЕБЕЗП\"\n        },\n        {\n            \"id\": 447,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ЦИСТЕРНА НЕБЕЗП.-E\"\n        },\n        {\n            \"id\": 448,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ЦИСТЕРНА ХАРЧОВА\"\n        },\n        {\n            \"id\": 449,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ЦИСТЕРНА ХАРЧОВА-E\"\n        },\n        {\n            \"id\": 450,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ЦИСТЕРНА-B\"\n        },\n        {\n            \"id\": 451,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ЦИСТЕРНА-E\"\n        },\n        {\n            \"id\": 452,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР-ШАСІ\"\n        },\n        {\n            \"id\": 453,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПР.НЕВИЗНАЧЕНИЙ\"\n        },\n        {\n            \"id\": 454,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ПРИЧІП\"\n        },\n        {\n            \"id\": 455,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ САМОСКИД\"\n        },\n        {\n            \"id\": 456,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ФУРГОН\"\n        },\n        {\n            \"id\": 457,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ФУРГОН ІЗОТЕРМІЧНИЙ-В\"\n        },\n        {\n            \"id\": 458,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ФУРГОН ХЛІБНИЙ\"\n        },\n        {\n            \"id\": 459,\n            \"title\": \"ПРИЧІП СПЕЦІАЛІЗОВАНИЙ ЦИСТЕРНА\"\n        },\n        {\n            \"id\": 460,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ АВТОПІДЙОМНИК\"\n        },\n        {\n            \"id\": 461,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ БЕТОНОРОЗМІШУВАЧ-C\"\n        },\n        {\n            \"id\": 462,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ БОРТОВИЙ\"\n        },\n        {\n            \"id\": 463,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ БУРОВИЙ-C\"\n        },\n        {\n            \"id\": 464,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ КОНТЕЙНЕРОВОЗ-C\"\n        },\n        {\n            \"id\": 465,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ЛІСОВОЗ-E\"\n        },\n        {\n            \"id\": 466,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-БІТУМОВОЗ-E\"\n        },\n        {\n            \"id\": 467,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-БОРТОВИЙ\"\n        },\n        {\n            \"id\": 468,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-БОРТОВИЙ-E\"\n        },\n        {\n            \"id\": 469,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-Д/П ХУДОБИ-E\"\n        },\n        {\n            \"id\": 470,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-КОНТЕЙНЕРОВОЗ-E\"\n        },\n        {\n            \"id\": 471,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ПАЛИВОЗАПРАВН-E\"\n        },\n        {\n            \"id\": 472,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ПАЛИВОЦИСТЕРНА-E\"\n        },\n        {\n            \"id\": 473,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ПЛАТФОРМА-E\"\n        },\n        {\n            \"id\": 474,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-РЕФРИЖЕРАТОР-E\"\n        },\n        {\n            \"id\": 475,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ФУРГОН ІЗОТЕРМІЧНИЙ-E\"\n        },\n        {\n            \"id\": 476,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ФУРГОН РЕФРИЖЕРАТОР\"\n        },\n        {\n            \"id\": 477,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ЦЕМЕНТОВОЗ-E\"\n        },\n        {\n            \"id\": 478,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ Н/ПР-ЦИСТЕРНА ХАРЧОВА-E\"\n        },\n        {\n            \"id\": 479,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ Н/ПРИЧІП\"\n        },\n        {\n            \"id\": 480,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПАЛИВОЦИСТЕРНА\"\n        },\n        {\n            \"id\": 481,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-АМФІБІЯ\"\n        },\n        {\n            \"id\": 482,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-АМФІБІЯ-B\"\n        },\n        {\n            \"id\": 483,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-БОРТОВИЙ\"\n        },\n        {\n            \"id\": 484,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-БОРТОВИЙ-E\"\n        },\n        {\n            \"id\": 485,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-БОРТОВИЙ-ТЕНТОВАНИЙ\"\n        },\n        {\n            \"id\": 486,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-Д/П ЧОВНІВ\"\n        },\n        {\n            \"id\": 487,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ДОРОЖНЬОРЕМОНТНИЙ\"\n        },\n        {\n            \"id\": 488,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ЕЛЕКТРОСТАНЦІЯ\"\n        },\n        {\n            \"id\": 489,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-КОНТЕЙНЕРОВОЗ\"\n        },\n        {\n            \"id\": 490,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-КУХНЯ\"\n        },\n        {\n            \"id\": 491,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ЛІСОВОЗ\"\n        },\n        {\n            \"id\": 492,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ЛІСОВОЗ-E\"\n        },\n        {\n            \"id\": 493,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ЛЕГКОВИЙ-B\"\n        },\n        {\n            \"id\": 494,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-НАСОСНА УСТАНОВКА\"\n        },\n        {\n            \"id\": 495,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ПІДЙОМНИК\"\n        },\n        {\n            \"id\": 496,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ПІДЙОМНИК-Е\"\n        },\n        {\n            \"id\": 497,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ПІДКАТНИЙ ВІЗОК\"\n        },\n        {\n            \"id\": 498,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ПІСКОРОЗКИДУВАЧ\"\n        },\n        {\n            \"id\": 499,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ПАЛИВОЦИСТЕРНА\"\n        },\n        {\n            \"id\": 500,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ПАЛИВОЦИСТЕРНА-E\"\n        },\n        {\n            \"id\": 501,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ПЛАТФОРМА\"\n        },\n        {\n            \"id\": 502,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ПЛАТФОРМА-B\"\n        },\n        {\n            \"id\": 503,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ПЛАТФОРМА-E\"\n        },\n        {\n            \"id\": 504,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-РЕФРИЖЕРАТОР-E\"\n        },\n        {\n            \"id\": 505,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-РОЗПУСК\"\n        },\n        {\n            \"id\": 506,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-РОЗПУСК-E\"\n        },\n        {\n            \"id\": 507,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-САМОСКИД\"\n        },\n        {\n            \"id\": 508,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-САМОСКИД-E\"\n        },\n        {\n            \"id\": 509,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-СПЕЦІАЛЬНИЙ-Е\"\n        },\n        {\n            \"id\": 510,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ТОРГОВИЙ\"\n        },\n        {\n            \"id\": 511,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ФУРГОН\"\n        },\n        {\n            \"id\": 512,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ФУРГОН ІЗОТЕРМІЧНИЙ\"\n        },\n        {\n            \"id\": 513,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ФУРГОН ІЗОТЕРМІЧНИЙ-E\"\n        },\n        {\n            \"id\": 514,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ФУРГОН ЖИТЛОВИЙ\"\n        },\n        {\n            \"id\": 515,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ФУРГОН ЛЕГКОВИЙ-B\"\n        },\n        {\n            \"id\": 516,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ФУРГОН РЕФРИЖЕРАТОР\"\n        },\n        {\n            \"id\": 517,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ФУРГОН-E\"\n        },\n        {\n            \"id\": 518,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ЦИСТЕРНА\"\n        },\n        {\n            \"id\": 519,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ЦИСТЕРНА АВТОГУДРОНАТОР\"\n        },\n        {\n            \"id\": 520,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ЦИСТЕРНА НЕБЕЗП.-E\"\n        },\n        {\n            \"id\": 521,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ЦИСТЕРНА ХАРЧОВА\"\n        },\n        {\n            \"id\": 522,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ЦИСТЕРНА ХАРЧОВА-E\"\n        },\n        {\n            \"id\": 523,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР-ЦИСТЕРНА-E\"\n        },\n        {\n            \"id\": 524,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПР.НЕВИЗНАЧЕНИЙ\"\n        },\n        {\n            \"id\": 525,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ПРИЧІП\"\n        },\n        {\n            \"id\": 526,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ САМОСКИД\"\n        },\n        {\n            \"id\": 527,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ СПЕЦІАЛЬНИЙ ВАНТАЖНИЙ-C\"\n        },\n        {\n            \"id\": 528,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ СПЕЦІАЛЬНИЙ МАЛОТОНАЖНИЙ-В\"\n        },\n        {\n            \"id\": 529,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ФУРГОН ІЗОТЕРМІЧНИЙ-C\"\n        },\n        {\n            \"id\": 530,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ФУРГОН ІЗОТЕРМІЧНИЙ-В\"\n        },\n        {\n            \"id\": 531,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ФУРГОН-РЕФРИЖЕРАТОР\"\n        },\n        {\n            \"id\": 532,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ЦИСТЕРНА Д/П НЕБЕЗ. ВАН-C\"\n        },\n        {\n            \"id\": 533,\n            \"title\": \"ПРИЧІП СПЕЦІАЛЬНИЙ ЦИСТЕРНА ХАРЧОВА\"\n        }\n    ]\n}"},{"id":"2414b4c3-3189-4290-87df-9a3d171197b0","name":"Missing token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text","disabled":true},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getTrailerBodyType"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token is required\",\n    \"relogin\": true\n}"}],"_postman_id":"b577cae2-dda4-4501-9563-e88dbc6ee8b1"},{"name":"Get Truck/Trailer Type","event":[{"listen":"test","script":{"id":"a0fb96ac-7056-474e-8349-4d1e0716ac1f","exec":["var response = pm.response.json();","var isContains = pm.response.text();","if (response.status === 200 || response.status === 'success') {","    pm.test(\"data in response matches array\", () => {","        pm.expect(response.data).to.be.an(\"array\");","    });","","   ","","} else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","   ","};",""],"type":"text/javascript"}}],"id":"7de74b4d-cc9b-4e11-8dcb-2021e695c704","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getCartype","description":"<p>Returns the list of  truck or trailer types available in the app.</p>\n<ul>\n<li>if successful you will receive all truck or trailer types available in the app</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getCartype"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"f60a9983-6beb-4339-abbe-ca50670ec9a6","name":"Invalid token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/a/v2/rest/public/getCartype"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token invalid\",\n    \"relogin\": true\n}"},{"id":"0a1cce49-f8cf-4a1d-bfa8-891904f021b8","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getCartype"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.25.1"},{"key":"Date","value":"Thu, 04 Jan 2024 11:38:21 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Powered-By","value":"PHP/7.3.33"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"https://mobile-sandbox.sovtes.ua"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": \"6\",\n            \"title\": \"bus (passenger + freight)\"\n        },\n        {\n            \"id\": \"7\",\n            \"title\": \"luxury coach\"\n        },\n        {\n            \"id\": \"8\",\n            \"title\": \"car transporter\"\n        },\n        {\n            \"id\": \"9\",\n            \"title\": \"mobile crane\"\n        },\n        {\n            \"id\": \"10\",\n            \"title\": \"fuel tanker\"\n        },\n        {\n            \"id\": \"11\",\n            \"title\": \"bitumen tanker\"\n        },\n        {\n            \"id\": \"12\",\n            \"title\": \"flatbed\"\n        },\n        {\n            \"id\": \"48\",\n            \"title\": \"light van (Gazelle-type)\"\n        },\n        {\n            \"id\": \"56\",\n            \"title\": \"dual-zone refrigerated trailer\"\n        },\n        {\n            \"id\": \"13\",\n            \"title\": \"grain truck\"\n        },\n        {\n            \"id\": \"14\",\n            \"title\": \"isothermal box\"\n        },\n        {\n            \"id\": \"15\",\n            \"title\": \"container\"\n        },\n        {\n            \"id\": \"16\",\n            \"title\": \"container carrier\"\n        },\n        {\n            \"id\": \"2\",\n            \"title\": \"box / enclosed\"\n        },\n        {\n            \"id\": \"54\",\n            \"title\": \"low-loader trailer (bed trailer)\"\n        },\n        {\n            \"id\": \"18\",\n            \"title\": \"timber truck\"\n        },\n        {\n            \"id\": \"19\",\n            \"title\": \"any\"\n        },\n        {\n            \"id\": \"21\",\n            \"title\": \"furniture van\"\n        },\n        {\n            \"id\": \"22\",\n            \"title\": \"minibus\"\n        },\n        {\n            \"id\": \"49\",\n            \"title\": \"cargo van\"\n        },\n        {\n            \"id\": \"23\",\n            \"title\": \"flour tanker\"\n        },\n        {\n            \"id\": \"24\",\n            \"title\": \"oversize / abnormal load\"\n        },\n        {\n            \"id\": \"25\",\n            \"title\": \"open\"\n        },\n        {\n            \"id\": \"26\",\n            \"title\": \"panel carrier\"\n        },\n        {\n            \"id\": \"27\",\n            \"title\": \"platform\"\n        },\n        {\n            \"id\": \"50\",\n            \"title\": \"trailer with hydraulic tail lift\"\n        },\n        {\n            \"id\": \"53\",\n            \"title\": \"poultry truck\"\n        },\n        {\n            \"id\": \"5\",\n            \"title\": \"refrigerated (reefer)\"\n        },\n        {\n            \"id\": \"29\",\n            \"title\": \"tipper\"\n        },\n        {\n            \"id\": \"30\",\n            \"title\": \"livestock truck\"\n        },\n        {\n            \"id\": \"31\",\n            \"title\": \"special purpose vehicle\"\n        },\n        {\n            \"id\": \"47\",\n            \"title\": \"glass carrier\"\n        },\n        {\n            \"id\": \"1\",\n            \"title\": \"curtain sider\"\n        },\n        {\n            \"id\": \"33\",\n            \"title\": \"low-loader (step-frame)\"\n        },\n        {\n            \"id\": \"34\",\n            \"title\": \"pipe carrier\"\n        },\n        {\n            \"id\": \"35\",\n            \"title\": \"tractor unit\"\n        },\n        {\n            \"id\": \"4\",\n            \"title\": \"box van (all-metal)\"\n        },\n        {\n            \"id\": \"37\",\n            \"title\": \"plastic-bodied van\"\n        },\n        {\n            \"id\": \"38\",\n            \"title\": \"cement tanker\"\n        },\n        {\n            \"id\": \"46\",\n            \"title\": \"gas tanker\"\n        },\n        {\n            \"id\": \"39\",\n            \"title\": \"food-grade tanker\"\n        },\n        {\n            \"id\": \"51\",\n            \"title\": \"steam-jacketed tanker\"\n        },\n        {\n            \"id\": \"40\",\n            \"title\": \"chemical tanker\"\n        },\n        {\n            \"id\": \"45\",\n            \"title\": \"tipper\"\n        },\n        {\n            \"id\": \"41\",\n            \"title\": \"recovery truck\"\n        },\n        {\n            \"id\": \"42\",\n            \"title\": \"excavator\"\n        },\n        {\n            \"id\": \"52\",\n            \"title\": \"boat / yacht transporter\"\n        }\n    ]\n}"}],"_postman_id":"7de74b4d-cc9b-4e11-8dcb-2021e695c704"},{"name":"Get Truck Body Types","event":[{"listen":"test","script":{"id":"a0fb96ac-7056-474e-8349-4d1e0716ac1f","exec":["var response = pm.response.json();","var isContains = pm.response.text();","if (response.status === 200 || response.status === 'success') {","    pm.test(\"data in response matches array\", () => {","        pm.expect(response.data).to.be.an(\"array\");","    });","","   ","","} else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","   ","};",""],"type":"text/javascript","packages":{}}}],"id":"4155f323-d014-46d4-82a2-ba6e2a768a23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getCarBodyType","description":"<p>Returns the list of truck body types available in the app.</p>\n<ul>\n<li>if successful you will receive all truck body types available in the app</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getCarBodyType"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"fd8eae2f-a3be-4bd4-a02a-664ef39d1072","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getCarBodyType"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 36,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ АВАРІЙНО-РЯТУВАЛЬНИЙ\"\n        },\n        {\n            \"id\": 37,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ АВТОБУС ЗЧЛЕНОВАНИЙ-DІE\"\n        },\n        {\n            \"id\": 38,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ АВТОБУС-D\"\n        },\n        {\n            \"id\": 39,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ АВТОВОЗ\"\n        },\n        {\n            \"id\": 40,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ АВТОЕВАКУАТОР\"\n        },\n        {\n            \"id\": 41,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ АВТОЕВАКУАТОР (ДУБЛЬ КАБІНА)\"\n        },\n        {\n            \"id\": 42,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ АВТОКРАН 10-20Т\"\n        },\n        {\n            \"id\": 43,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ АВТОКРАН 10-20Т-C\"\n        },\n        {\n            \"id\": 44,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ АВТОКРАН БІЛЬШЕ 20Т\"\n        },\n        {\n            \"id\": 45,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ АВТОКРАН БІЛЬШЕ 20Т-C\"\n        },\n        {\n            \"id\": 46,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ АВТОКРАН ДО 10Т\"\n        },\n        {\n            \"id\": 47,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ АВТОКРАН ДО 10Т-C\"\n        },\n        {\n            \"id\": 48,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ АВТОМ. Д/П БАЛОНІВ\"\n        },\n        {\n            \"id\": 49,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ АВТОМ. Д/П БАЛОНІВ-C\"\n        },\n        {\n            \"id\": 50,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ АВТОМАЙСТЕРНЯ\"\n        },\n        {\n            \"id\": 51,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ АВТОМАЙСТЕРНЯ-C\"\n        },\n        {\n            \"id\": 52,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ АВТОПІДЙОМНИК\"\n        },\n        {\n            \"id\": 53,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ БІТУМОВОЗ-C\"\n        },\n        {\n            \"id\": 54,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ БЕТОНОНАСОС\"\n        },\n        {\n            \"id\": 55,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ БЕТОНОРОЗМІШУВАЧ\"\n        },\n        {\n            \"id\": 56,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ БЕТОНОРОЗМІШУВАЧ-C\"\n        },\n        {\n            \"id\": 57,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ БОРТОВА ПЛАТФОРМА (З ГІДРОБОРТОМ)\"\n        },\n        {\n            \"id\": 58,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ БОРТОВИЙ\"\n        },\n        {\n            \"id\": 59,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ БОРТОВИЙ (ДУБЛЬ КАБІНА)\"\n        },\n        {\n            \"id\": 60,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ БОРТОВИЙ (З КРАНОМ-МАНІПУЛЯТОРОМ)\"\n        },\n        {\n            \"id\": 61,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ БОРТОВИЙ (УЧБОВИЙ)\"\n        },\n        {\n            \"id\": 62,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ БОРТОВИЙ МАЛОТОНАЖНИЙ\"\n        },\n        {\n            \"id\": 63,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ БОРТОВИЙ МАЛОТОНАЖНИЙ-B\"\n        },\n        {\n            \"id\": 64,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ БОРТОВИЙ-ТЕНТОВАНИЙ\"\n        },\n        {\n            \"id\": 65,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ БОРТОВИЙ-ТЕНТОВАНИЙ (З ГІДРОБОРТОМ)\"\n        },\n        {\n            \"id\": 66,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ БУРОВИЙ\"\n        },\n        {\n            \"id\": 67,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ БУРОВИЙ (ДУБЛЬ КАБІНА)\"\n        },\n        {\n            \"id\": 68,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ БУРОВИЙ-C\"\n        },\n        {\n            \"id\": 69,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ВАНТАЖНИЙ-С\"\n        },\n        {\n            \"id\": 70,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ВАНТАЖОПАСАЖИРСЬКИЙ\"\n        },\n        {\n            \"id\": 71,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ВАНТАЖОПАСАЖИРСЬКИЙ ОПЕРАТИВНИЙ-В\"\n        },\n        {\n            \"id\": 72,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ВАНТАЖОПАСАЖИРСЬКИЙ-B\"\n        },\n        {\n            \"id\": 73,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ВАНТАЖОПАСАЖИРСЬКИЙ-B.\"\n        },\n        {\n            \"id\": 74,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ВАНТАЖОПАСАЖИРСЬКИЙ-C\"\n        },\n        {\n            \"id\": 75,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ВАНТАЖОПАСАЖИРСЬКИЙ-DІC\"\n        },\n        {\n            \"id\": 76,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ВАНТАЖОПАСАЖИРСЬКИЙ-В\"\n        },\n        {\n            \"id\": 77,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ВАХТОВИЙ\"\n        },\n        {\n            \"id\": 78,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ВАХТОВИЙ - C\"\n        },\n        {\n            \"id\": 79,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ВОДОЦИСТЕРНА\"\n        },\n        {\n            \"id\": 80,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ВОДОЦИСТЕРНА-C\"\n        },\n        {\n            \"id\": 81,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ДОРОЖНЬОРЕМОНТНИЙ\"\n        },\n        {\n            \"id\": 82,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ЕКСКАВАТОР-ПЛАНУВАЛЬНИК\"\n        },\n        {\n            \"id\": 83,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ЕЛЕКТРОЛАБОРАТОРІЯ\"\n        },\n        {\n            \"id\": 84,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ЗЕРНОВОЗ\"\n        },\n        {\n            \"id\": 85,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ЗМІННИЙ КУЗОВ\"\n        },\n        {\n            \"id\": 86,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ЗМІШУВАЛЬНО-ЗАРЯДЖАЛЬНИЙ\"\n        },\n        {\n            \"id\": 87,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ КАТАФАЛК\"\n        },\n        {\n            \"id\": 88,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ КОМБІ-B\"\n        },\n        {\n            \"id\": 89,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ КОНТЕЙНЕРОВОЗ\"\n        },\n        {\n            \"id\": 90,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ КОНТЕЙНЕРОВОЗ-C\"\n        },\n        {\n            \"id\": 91,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ КОРМОВОЗ\"\n        },\n        {\n            \"id\": 92,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ЛІСОВОЗ\"\n        },\n        {\n            \"id\": 93,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ЛІСОВОЗ-E\"\n        },\n        {\n            \"id\": 94,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ЛЕГКОВИЙ-В\"\n        },\n        {\n            \"id\": 95,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ МІКРОАВТОБУС\"\n        },\n        {\n            \"id\": 96,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ МІКРОАВТОБУС МЕДДОПОМ.-D\"\n        },\n        {\n            \"id\": 97,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ МІКРОАВТОБУС МЕДДОПОМОГА\"\n        },\n        {\n            \"id\": 98,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ МІКРОАВТОБУС-D\"\n        },\n        {\n            \"id\": 99,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ МЕДДОПОМОГА\"\n        },\n        {\n            \"id\": 100,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ МЕДДОПОМОГА-B\"\n        },\n        {\n            \"id\": 101,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ Н/ПР-БОРТОВИЙ-E\"\n        },\n        {\n            \"id\": 102,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ Н/ПР-БОРТОВИЙ-ТЕНТОВАНИЙ\"\n        },\n        {\n            \"id\": 103,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ Н/ПР-ПЛАТФОРМА-E\"\n        },\n        {\n            \"id\": 104,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ Н/ПР-САМОСКИД-E\"\n        },\n        {\n            \"id\": 105,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ Н/ПР-ЦИСТЕРНА-E\"\n        },\n        {\n            \"id\": 106,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ НАСОСНА УСТАНОВКА\"\n        },\n        {\n            \"id\": 107,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ НЕВИЗНАЧЕНИЙ\"\n        },\n        {\n            \"id\": 108,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ОПЕРАТИВНИЙ-B\"\n        },\n        {\n            \"id\": 109,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПІДМІТАЛЬНО-ПРИБИРАЛЬНА\"\n        },\n        {\n            \"id\": 110,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПІДМІТАЛЬНО-ПРИБИРАЛЬНА-C\"\n        },\n        {\n            \"id\": 111,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПІКАП\"\n        },\n        {\n            \"id\": 112,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПІКАП-B\"\n        },\n        {\n            \"id\": 113,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПІКАП-C\"\n        },\n        {\n            \"id\": 114,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПІКАП-В\"\n        },\n        {\n            \"id\": 115,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПІСКОРОЗКИДУВАЧ\"\n        },\n        {\n            \"id\": 116,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПІСКОРОЗКИДУВАЧ-C\"\n        },\n        {\n            \"id\": 117,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПАЛИВОЗАПРАВНИК\"\n        },\n        {\n            \"id\": 118,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПАЛИВОЗАПРАВНИК-C\"\n        },\n        {\n            \"id\": 119,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПАЛИВОЦИСТЕРНА\"\n        },\n        {\n            \"id\": 120,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПАРОГЕНЕРАТОР\"\n        },\n        {\n            \"id\": 121,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПАСАЖИРСЬКИЙ\"\n        },\n        {\n            \"id\": 122,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПАСАЖИРСЬКИЙ-B\"\n        },\n        {\n            \"id\": 123,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПАСАЖИРСЬКИЙ-CІD\"\n        },\n        {\n            \"id\": 124,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПЛАТФОРМА\"\n        },\n        {\n            \"id\": 125,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПЛАТФОРМА (ДУБЛЬ КАБІНА)\"\n        },\n        {\n            \"id\": 126,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПЛАТФОРМА (З КРАНОМ-МАНІПУЛЯТОРОМ)\"\n        },\n        {\n            \"id\": 127,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПЛАТФОРМА ТЕНТОВАНА\"\n        },\n        {\n            \"id\": 128,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПОЖЕЖНИЙ\"\n        },\n        {\n            \"id\": 129,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПОЖЕЖНИЙ-C\"\n        },\n        {\n            \"id\": 130,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПР-БОРТОВИЙ-E\"\n        },\n        {\n            \"id\": 131,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПР-БОРТОВИЙ-ТЕНТОВАНИЙ\"\n        },\n        {\n            \"id\": 132,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПР-ЛЕГКОВИЙ-B\"\n        },\n        {\n            \"id\": 133,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПР-ПЛАТФОРМА-E\"\n        },\n        {\n            \"id\": 134,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПР-САМОСКИД-E\"\n        },\n        {\n            \"id\": 135,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПР-ФУРГОН ІЗОТЕРМІЧНИЙ-E\"\n        },\n        {\n            \"id\": 136,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПР-ФУРГОН ЛЕГКОВИЙ-B\"\n        },\n        {\n            \"id\": 137,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПР-ФУРГОН-E\"\n        },\n        {\n            \"id\": 138,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПР-ЦИСТЕРНА ХАРЧОВА-E\"\n        },\n        {\n            \"id\": 139,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ПРИЧІП\"\n        },\n        {\n            \"id\": 140,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ РОЗЧИНОВОЗ-C\"\n        },\n        {\n            \"id\": 141,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ СІДЛОВИЙ ТЯГАЧ\"\n        },\n        {\n            \"id\": 142,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ СІДЛОВИЙ ТЯГАЧ-B\"\n        },\n        {\n            \"id\": 143,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ СІДЛОВИЙ ТЯГАЧ-E\"\n        },\n        {\n            \"id\": 144,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ САМОСКИД\"\n        },\n        {\n            \"id\": 145,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ САМОСКИД (З КРАНОМ-МАНІПУЛЯТОРОМ)\"\n        },\n        {\n            \"id\": 146,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ САМОСКИД МАЛОТОНАЖНИЙ-В\"\n        },\n        {\n            \"id\": 147,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ САНІТАРНИЙ\"\n        },\n        {\n            \"id\": 148,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ САНІТАРНИЙ-B\"\n        },\n        {\n            \"id\": 149,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ САНІТАРНИЙ-C\"\n        },\n        {\n            \"id\": 150,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ СЕДАН\"\n        },\n        {\n            \"id\": 151,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ СЕДАН-B\"\n        },\n        {\n            \"id\": 152,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ СМІТТЄВОЗ\"\n        },\n        {\n            \"id\": 153,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ СМІТТЄВОЗ-C\"\n        },\n        {\n            \"id\": 154,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ СНІГООЧИСНИК-C\"\n        },\n        {\n            \"id\": 155,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ СОРТИМЕНТОВОЗ\"\n        },\n        {\n            \"id\": 156,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ СОРТИМЕНТОВОЗ (З КРАНОМ-МАНІПУЛЯТОРОМ)\"\n        },\n        {\n            \"id\": 157,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ СПЕЦІАЛІЗОВАНИЙ МЕДДОПОМОГА-B\"\n        },\n        {\n            \"id\": 158,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ СПЕЦІАЛЬНИЙ ВАНТАЖНИЙ-C\"\n        },\n        {\n            \"id\": 159,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ СПЕЦІАЛЬНИЙ МАЛОТОНАЖНИЙ-В\"\n        },\n        {\n            \"id\": 160,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ТЕХДОПОМОГА\"\n        },\n        {\n            \"id\": 161,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ТЕХДОПОМОГА-B\"\n        },\n        {\n            \"id\": 162,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ТЕХДОПОМОГА-C\"\n        },\n        {\n            \"id\": 163,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ УНІВЕРСАЛ\"\n        },\n        {\n            \"id\": 164,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ УНІВЕРСАЛ-B\"\n        },\n        {\n            \"id\": 165,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФАЕТОН\"\n        },\n        {\n            \"id\": 166,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФАЕТОН-B\"\n        },\n        {\n            \"id\": 167,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФУРГОН\"\n        },\n        {\n            \"id\": 168,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФУРГОН (ДУБЛЬ КАБІНА)\"\n        },\n        {\n            \"id\": 169,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФУРГОН (З ГІДРОБОРТОМ)\"\n        },\n        {\n            \"id\": 170,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФУРГОН ІЗОТЕРМІЧНИЙ\"\n        },\n        {\n            \"id\": 171,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФУРГОН ІЗОТЕРМІЧНИЙ (ДУБЛЬ КАБІНА)\"\n        },\n        {\n            \"id\": 172,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФУРГОН ІЗОТЕРМІЧНИЙ-C\"\n        },\n        {\n            \"id\": 173,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФУРГОН ІЗОТЕРМІЧНИЙ-В\"\n        },\n        {\n            \"id\": 174,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФУРГОН Д/П Д/П НЕБЕЗ. ВАНТАЖ\"\n        },\n        {\n            \"id\": 175,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФУРГОН Д/П НЕБЕЗ. ВАН.-C\"\n        },\n        {\n            \"id\": 176,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФУРГОН Д/П ХУДОБИ\"\n        },\n        {\n            \"id\": 177,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФУРГОН Д/П ХУДОБИ (B)\"\n        },\n        {\n            \"id\": 178,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФУРГОН ЖИТЛОВИЙ\"\n        },\n        {\n            \"id\": 179,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФУРГОН МАЛОТОНАЖНИЙ\"\n        },\n        {\n            \"id\": 180,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФУРГОН МАЛОТОНАЖНИЙ ОПЕРАТИВНИЙ\"\n        },\n        {\n            \"id\": 181,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФУРГОН МАЛОТОНАЖНИЙ ОПЕРАТИВНИЙ-B\"\n        },\n        {\n            \"id\": 182,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФУРГОН МАЛОТОНАЖНИЙ-B\"\n        },\n        {\n            \"id\": 183,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФУРГОН МАЛОТОНАЖНИЙ-B (СПЕЦІАЛЬНИЙ)\"\n        },\n        {\n            \"id\": 184,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФУРГОН ОПЕРАТИВНИЙ\"\n        },\n        {\n            \"id\": 185,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФУРГОН ОПЕРАТИВНИЙ-C\"\n        },\n        {\n            \"id\": 186,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФУРГОН ПАСАЖИРСЬКИЙ-CІD\"\n        },\n        {\n            \"id\": 187,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФУРГОН РЕФРИЖЕРАТОР\"\n        },\n        {\n            \"id\": 188,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФУРГОН РЕФРИЖЕРАТОР (ДУБЛЬ КАБІНА)\"\n        },\n        {\n            \"id\": 189,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФУРГОН РЕФРИЖЕРАТОР (З ГІДРОБОРТОМ)\"\n        },\n        {\n            \"id\": 190,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФУРГОН РЕФРИЖЕРАТОР-B\"\n        },\n        {\n            \"id\": 191,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФУРГОН ХЛІБНИЙ\"\n        },\n        {\n            \"id\": 192,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФУРГОН-C\"\n        },\n        {\n            \"id\": 193,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ФУРГОН-РЕФРИЖЕРАТОР\"\n        },\n        {\n            \"id\": 194,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ХЕТЧБЕК-В\"\n        },\n        {\n            \"id\": 195,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ЦИСТЕРНА\"\n        },\n        {\n            \"id\": 196,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ЦИСТЕРНА АСЕНІЗАЦІЙНА\"\n        },\n        {\n            \"id\": 197,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ЦИСТЕРНА АСЕНІЗАЦІЙНА-C\"\n        },\n        {\n            \"id\": 198,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ЦИСТЕРНА Д/П НЕБЕЗ. ВАН\"\n        },\n        {\n            \"id\": 199,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ЦИСТЕРНА Д/П НЕБЕЗ. ВАН-C\"\n        },\n        {\n            \"id\": 200,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ЦИСТЕРНА Д/П НЕБЕЗ. ВАНТАЖ\"\n        },\n        {\n            \"id\": 201,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ЦИСТЕРНА КАНАЛОПРОМИВОЧНА\"\n        },\n        {\n            \"id\": 202,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ЦИСТЕРНА МАЛОТОНАЖНА-В\"\n        },\n        {\n            \"id\": 203,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ЦИСТЕРНА ПОЖЕЖНА\"\n        },\n        {\n            \"id\": 204,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ЦИСТЕРНА ПОЖЕЖНА-C\"\n        },\n        {\n            \"id\": 205,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ЦИСТЕРНА ПОЛИВОМИЄЧНА\"\n        },\n        {\n            \"id\": 206,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ЦИСТЕРНА ХАРЧОВА\"\n        },\n        {\n            \"id\": 207,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ЦИСТЕРНА-АВТОГУДРОНАТОР\"\n        },\n        {\n            \"id\": 208,\n            \"title\": \"ВАНТАЖНИЙ ЗАГАЛЬНИЙ ШАСІ\"\n        },\n        {\n            \"id\": 209,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ АВАРІЙНО-РЕМОНТНА\"\n        },\n        {\n            \"id\": 210,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ АВАРІЙНО-РЕМОНТНА МАЙСТЕРНЯ\"\n        },\n        {\n            \"id\": 211,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ АВАРІЙНО-РЯТУВАЛЬНИЙ\"\n        },\n        {\n            \"id\": 212,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ АВТОБУС\"\n        },\n        {\n            \"id\": 213,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ АВТОБУС ВАХТОВИЙ\"\n        },\n        {\n            \"id\": 214,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ АВТОБУС ОПЕРАТИВНИЙ-D\"\n        },\n        {\n            \"id\": 215,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ АВТОБУС-D\"\n        },\n        {\n            \"id\": 216,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ АВТОВОЗ\"\n        },\n        {\n            \"id\": 217,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ АВТОЕВАКУАТОР\"\n        },\n        {\n            \"id\": 218,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ АВТОЕВАКУАТОР (ДУБЛЬ КАБІНА)\"\n        },\n        {\n            \"id\": 219,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ АВТОКРАН 10-20Т\"\n        },\n        {\n            \"id\": 220,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ АВТОКРАН 10-20Т-C\"\n        },\n        {\n            \"id\": 221,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ АВТОКРАН БІЛЬШЕ 20Т\"\n        },\n        {\n            \"id\": 222,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ АВТОКРАН БІЛЬШЕ 20Т-C\"\n        },\n        {\n            \"id\": 223,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ АВТОКРАН ДО 10Т\"\n        },\n        {\n            \"id\": 224,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ АВТОКРАН ДО 10т-C\"\n        },\n        {\n            \"id\": 225,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ АВТОМ. Д/П БАЛОНІВ\"\n        },\n        {\n            \"id\": 226,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ АВТОМ. Д/П БАЛОНІВ -B\"\n        },\n        {\n            \"id\": 227,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ АВТОМ. Д/П БАЛОНІВ-C\"\n        },\n        {\n            \"id\": 228,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ АВТОМАЙСТЕРНЯ\"\n        },\n        {\n            \"id\": 229,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ АВТОМАЙСТЕРНЯ-C\"\n        },\n        {\n            \"id\": 230,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ АВТОПІДЙОМНИК\"\n        },\n        {\n            \"id\": 231,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ БІТУМОВОЗ\"\n        },\n        {\n            \"id\": 232,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ БІТУМОВОЗ-C\"\n        },\n        {\n            \"id\": 233,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ БЕТОНОНАСОС\"\n        },\n        {\n            \"id\": 234,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ БЕТОНОРОЗМІШУВАЧ\"\n        },\n        {\n            \"id\": 235,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ БЕТОНОРОЗМІШУВАЧ-C\"\n        },\n        {\n            \"id\": 236,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ БОРТОВА ПЛАТФОРМА (З ГІДРОБОРТОМ)\"\n        },\n        {\n            \"id\": 237,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ БОРТОВИЙ\"\n        },\n        {\n            \"id\": 238,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ БОРТОВИЙ (ДУБЛЬ КАБІНА)\"\n        },\n        {\n            \"id\": 239,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ БОРТОВИЙ (З КРАНОМ-МАНІПУЛЯТОРОМ)\"\n        },\n        {\n            \"id\": 240,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ БОРТОВИЙ (УЧБОВИЙ)\"\n        },\n        {\n            \"id\": 241,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ БОРТОВИЙ МАЛОТОНАЖНИЙ\"\n        },\n        {\n            \"id\": 242,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ БОРТОВИЙ МАЛОТОНАЖНИЙ-B\"\n        },\n        {\n            \"id\": 243,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ БОРТОВИЙ-ТЕНТОВАНИЙ\"\n        },\n        {\n            \"id\": 244,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ БОРТОВИЙ-ТЕНТОВАНИЙ (З ГІДРОБОРТОМ)\"\n        },\n        {\n            \"id\": 245,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ БРОНЬОВАНИЙ\"\n        },\n        {\n            \"id\": 246,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ БУРОВИЙ\"\n        },\n        {\n            \"id\": 247,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ БУРОВИЙ (ДУБЛЬ КАБІНА)\"\n        },\n        {\n            \"id\": 248,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ БУРОВИЙ-C\"\n        },\n        {\n            \"id\": 249,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ВАНТАЖНИЙ-С\"\n        },\n        {\n            \"id\": 250,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ВАНТАЖОПАСАЖИРСЬКИЙ\"\n        },\n        {\n            \"id\": 251,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ВАНТАЖОПАСАЖИРСЬКИЙ B\"\n        },\n        {\n            \"id\": 252,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ВАНТАЖОПАСАЖИРСЬКИЙ ОПЕРАТИВНИЙ\"\n        },\n        {\n            \"id\": 253,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ВАНТАЖОПАСАЖИРСЬКИЙ ОПЕРАТИВНИЙ-В\"\n        },\n        {\n            \"id\": 254,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ВАНТАЖОПАСАЖИРСЬКИЙ-B\"\n        },\n        {\n            \"id\": 255,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ВАНТАЖОПАСАЖИРСЬКИЙ-B.\"\n        },\n        {\n            \"id\": 256,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ВАНТАЖОПАСАЖИРСЬКИЙ-C\"\n        },\n        {\n            \"id\": 257,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ВАНТАЖОПАСАЖИРСЬКИЙ-DІC\"\n        },\n        {\n            \"id\": 258,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ВАНТАЖОПАСАЖИРСЬКИЙ-В\"\n        },\n        {\n            \"id\": 259,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ВАХТОВИЙ\"\n        },\n        {\n            \"id\": 260,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ВАХТОВИЙ - C\"\n        },\n        {\n            \"id\": 261,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ВОДОЦИСТЕРНА\"\n        },\n        {\n            \"id\": 262,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ВОДОЦИСТЕРНА-C\"\n        },\n        {\n            \"id\": 263,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ДЛЯ ПЕРЕСАДЖУВАННЯ ДЕРЕВ\"\n        },\n        {\n            \"id\": 264,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ДОРОЖНЬОРЕМОНТНИЙ\"\n        },\n        {\n            \"id\": 265,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ЕКСКАВАТОР-ПЛАНУВАЛЬНИК\"\n        },\n        {\n            \"id\": 266,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ЕЛЕКТРОЛАБОРАТОРІЯ\"\n        },\n        {\n            \"id\": 267,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ЖИТЛОВИЙ (КЕМПЕР)\"\n        },\n        {\n            \"id\": 268,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ЗЕРНОВОЗ\"\n        },\n        {\n            \"id\": 269,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ЗМІННИЙ КУЗОВ\"\n        },\n        {\n            \"id\": 270,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ЗМІННИЙ КУЗОВ (МУЛЬТИЛІФТ)\"\n        },\n        {\n            \"id\": 271,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ЗМІШУВАЛЬНО-ЗАРЯДЖАЛЬНИЙ\"\n        },\n        {\n            \"id\": 272,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ КАТАФАЛК\"\n        },\n        {\n            \"id\": 273,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ КОМПРЕСОРНА СТАНЦІЯ\"\n        },\n        {\n            \"id\": 274,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ КОНТЕЙНЕРОВОЗ\"\n        },\n        {\n            \"id\": 275,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ КОНТЕЙНЕРОВОЗ (З КРАНОМ-МАНІПУЛЯТОРОМ)\"\n        },\n        {\n            \"id\": 276,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ КОНТЕЙНЕРОВОЗ-C\"\n        },\n        {\n            \"id\": 277,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ КОРМОВОЗ\"\n        },\n        {\n            \"id\": 278,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ЛІСОВОЗ\"\n        },\n        {\n            \"id\": 279,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ЛІСОВОЗ-E\"\n        },\n        {\n            \"id\": 280,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ МІКРОАВТОБУС МЕДДОПОМ.-D\"\n        },\n        {\n            \"id\": 281,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ МІКРОАВТОБУС ОПЕРАТИВ-B/D\"\n        },\n        {\n            \"id\": 282,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ МЕДДОПОМОГА\"\n        },\n        {\n            \"id\": 283,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ МЕДДОПОМОГА-B\"\n        },\n        {\n            \"id\": 284,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ Н/ПР-САМОСКИД-E\"\n        },\n        {\n            \"id\": 285,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ Н/ПР-СПЕЦІАЛЬНИЙ-Е\"\n        },\n        {\n            \"id\": 286,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ Н/ПР-ФУРГОН ІЗОТЕРМІЧНИЙ\"\n        },\n        {\n            \"id\": 287,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ Н/ПР-ЦИСТЕРНА ХАРЧОВА-E\"\n        },\n        {\n            \"id\": 288,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ Н/ПР-ЦИСТЕРНА-E\"\n        },\n        {\n            \"id\": 289,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ НАСОСНА УСТАНОВКА\"\n        },\n        {\n            \"id\": 290,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ НЕВИЗНАЧЕНИЙ\"\n        },\n        {\n            \"id\": 291,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ОПЕРАТИВНИЙ-B\"\n        },\n        {\n            \"id\": 292,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ПІДІЙМАЛЬНА УСТАНОВКА\"\n        },\n        {\n            \"id\": 293,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ПІДМІТАЛЬНО-ПРИБИРАЛЬНА\"\n        },\n        {\n            \"id\": 294,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ПІДМІТАЛЬНО-ПРИБИРАЛЬНА-C\"\n        },\n        {\n            \"id\": 295,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ПІКАП\"\n        },\n        {\n            \"id\": 296,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ПІКАП-B\"\n        },\n        {\n            \"id\": 297,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ПІКАП-В\"\n        },\n        {\n            \"id\": 298,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ПІСКОРОЗКИДУВАЧ\"\n        },\n        {\n            \"id\": 299,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ПІСКОРОЗКИДУВАЧ-C\"\n        },\n        {\n            \"id\": 300,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ПАЛИВОЗАПРАВНИК\"\n        },\n        {\n            \"id\": 301,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ПАЛИВОЗАПРАВНИК-C\"\n        },\n        {\n            \"id\": 302,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ПАЛИВОЦИСТЕРНА\"\n        },\n        {\n            \"id\": 303,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ПАСАЖИРСЬКИЙ\"\n        },\n        {\n            \"id\": 304,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ПАСАЖИРСЬКИЙ-B\"\n        },\n        {\n            \"id\": 305,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ПАСАЖИРСЬКИЙ-CІD\"\n        },\n        {\n            \"id\": 306,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ПЛАТФОРМА\"\n        },\n        {\n            \"id\": 307,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ПЛАТФОРМА (ДУБЛЬ КАБІНА)\"\n        },\n        {\n            \"id\": 308,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ПЛАТФОРМА (З КРАНОМ-МАНІПУЛЯТОРОМ)\"\n        },\n        {\n            \"id\": 309,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ПЛАТФОРМА ТЕНТОВАНА\"\n        },\n        {\n            \"id\": 310,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ПОЖЕЖНИЙ\"\n        },\n        {\n            \"id\": 311,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ПОЖЕЖНИЙ-C\"\n        },\n        {\n            \"id\": 312,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ПР-БОРТОВИЙ-ТЕНТОВАНИЙ\"\n        },\n        {\n            \"id\": 313,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ПР-ПЛАТФОРМА-E\"\n        },\n        {\n            \"id\": 314,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ПР-ФУРГОН\"\n        },\n        {\n            \"id\": 315,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ПР-ФУРГОН ІЗОТЕРМІЧНИЙ\"\n        },\n        {\n            \"id\": 316,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ПР-ФУРГОН ЖИТЛОВИЙ\"\n        },\n        {\n            \"id\": 317,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ПР-ЦИСТЕРНА ХАРЧОВА-E\"\n        },\n        {\n            \"id\": 318,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ РОЗЧИНОВОЗ\"\n        },\n        {\n            \"id\": 319,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ РОЗЧИНОВОЗ-C\"\n        },\n        {\n            \"id\": 320,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ СІДЛОВИЙ ТЯГАЧ\"\n        },\n        {\n            \"id\": 321,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ СІДЛОВИЙ ТЯГАЧ (ДУБЛЬ КАБІНА)\"\n        },\n        {\n            \"id\": 322,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ СІДЛОВИЙ ТЯГАЧ (З КРАНОМ-МАНІПУЛЯТОРОМ)\"\n        },\n        {\n            \"id\": 323,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ СІДЛОВИЙ ТЯГАЧ-B\"\n        },\n        {\n            \"id\": 324,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ СІДЛОВИЙ ТЯГАЧ-E\"\n        },\n        {\n            \"id\": 325,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ САМОСКИД\"\n        },\n        {\n            \"id\": 326,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ САМОСКИД (З КРАНОМ-МАНІПУЛЯТОРОМ)\"\n        },\n        {\n            \"id\": 327,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ САМОСКИД МАЛОТОНАЖНИЙ\"\n        },\n        {\n            \"id\": 328,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ САМОСКИД МАЛОТОНАЖНИЙ-В\"\n        },\n        {\n            \"id\": 329,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ САНІТАРНИЙ\"\n        },\n        {\n            \"id\": 330,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ САНІТАРНИЙ-B\"\n        },\n        {\n            \"id\": 331,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ САНІТАРНИЙ-C\"\n        },\n        {\n            \"id\": 332,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ СЕДАН\"\n        },\n        {\n            \"id\": 333,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ СМІТТЄВОЗ\"\n        },\n        {\n            \"id\": 334,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ СМІТТЄВОЗ (З КРАНОМ-МАНІПУЛЯТОРОМ)\"\n        },\n        {\n            \"id\": 335,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ СМІТТЄВОЗ-C\"\n        },\n        {\n            \"id\": 336,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ СНІГООЧИСНИК\"\n        },\n        {\n            \"id\": 337,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ СНІГООЧИСНИК-C\"\n        },\n        {\n            \"id\": 338,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ СОРТИМЕНТОВОЗ\"\n        },\n        {\n            \"id\": 339,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ СОРТИМЕНТОВОЗ (З КРАНОМ-МАНІПУЛЯТОРОМ)\"\n        },\n        {\n            \"id\": 340,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ СПЕЦІАЛІЗОВАНИЙ МЕДДОПОМОГА-B\"\n        },\n        {\n            \"id\": 341,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ СПЕЦІАЛЬНИЙ ВАНТАЖНИЙ-C\"\n        },\n        {\n            \"id\": 342,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ СПЕЦІАЛЬНИЙ МАЛОТОНАЖНИЙ-В\"\n        },\n        {\n            \"id\": 343,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ СПЕЦІАЛЬНИЙ ЯМКОВОГО РЕМОНТУ\"\n        },\n        {\n            \"id\": 344,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ТЕХДОПОМОГА\"\n        },\n        {\n            \"id\": 345,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ТЕХДОПОМОГА - B\"\n        },\n        {\n            \"id\": 346,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ТЕХДОПОМОГА-B\"\n        },\n        {\n            \"id\": 347,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ТЕХДОПОМОГА-C\"\n        },\n        {\n            \"id\": 348,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ УНІВЕРСАЛ-B\"\n        },\n        {\n            \"id\": 349,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФАЕТОН\"\n        },\n        {\n            \"id\": 350,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН\"\n        },\n        {\n            \"id\": 351,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН (ДУБЛЬ КАБІНА)\"\n        },\n        {\n            \"id\": 352,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН (З ГІДРОБОРТОМ)\"\n        },\n        {\n            \"id\": 353,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН ІЗОТЕРМІЧНИЙ\"\n        },\n        {\n            \"id\": 354,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН ІЗОТЕРМІЧНИЙ (ДУБЛЬ КАБІНА)\"\n        },\n        {\n            \"id\": 355,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН ІЗОТЕРМІЧНИЙ-C\"\n        },\n        {\n            \"id\": 356,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН ІЗОТЕРМІЧНИЙ-В\"\n        },\n        {\n            \"id\": 357,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН Д/П Д/П НЕБЕЗ. ВАНТАЖ\"\n        },\n        {\n            \"id\": 358,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН Д/П НЕБЕЗ. ВАН\"\n        },\n        {\n            \"id\": 359,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН Д/П НЕБЕЗ. ВАН.-C\"\n        },\n        {\n            \"id\": 360,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН Д/П ХУДОБИ\"\n        },\n        {\n            \"id\": 361,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН Д/П ХУДОБИ (B)\"\n        },\n        {\n            \"id\": 362,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН Д/П ХУДОБИ-B\"\n        },\n        {\n            \"id\": 363,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН ЖИТЛОВИЙ\"\n        },\n        {\n            \"id\": 364,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН МАЛОТОНАЖНИЙ\"\n        },\n        {\n            \"id\": 365,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН МАЛОТОНАЖНИЙ ОПЕРАТИВНИЙ\"\n        },\n        {\n            \"id\": 366,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН МАЛОТОНАЖНИЙ ОПЕРАТИВНИЙ-B\"\n        },\n        {\n            \"id\": 367,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН МАЛОТОНАЖНИЙ-B\"\n        },\n        {\n            \"id\": 368,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН МАЛОТОНАЖНИЙ-B (СПЕЦІАЛЬНИЙ)\"\n        },\n        {\n            \"id\": 369,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН ОПЕРАТИВНИЙ\"\n        },\n        {\n            \"id\": 370,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН ОПЕРАТИВНИЙ-C\"\n        },\n        {\n            \"id\": 371,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН ПАСАЖИРСЬКИЙ-CІD\"\n        },\n        {\n            \"id\": 372,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН РЕФРИЖЕРАТОР\"\n        },\n        {\n            \"id\": 373,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН РЕФРИЖЕРАТОР (ДУБЛЬ КАБІНА)\"\n        },\n        {\n            \"id\": 374,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН РЕФРИЖЕРАТОР (З ГІДРОБОРТОМ)\"\n        },\n        {\n            \"id\": 375,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН РЕФРИЖЕРАТОР-B\"\n        },\n        {\n            \"id\": 376,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН СПЕЦІАЛЬНИЙ-C\"\n        },\n        {\n            \"id\": 377,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН ХЛІБНИЙ\"\n        },\n        {\n            \"id\": 378,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН-C\"\n        },\n        {\n            \"id\": 379,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН-РЕФРИЖЕРАТОР\"\n        },\n        {\n            \"id\": 380,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ФУРГОН-РЕФРИЖЕРАТОР(ДУБЛЬ КАБІНА)\"\n        },\n        {\n            \"id\": 381,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ЦЕМЕНТОВОЗ\"\n        },\n        {\n            \"id\": 382,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ЦЕМЕНТОВОЗ - C\"\n        },\n        {\n            \"id\": 383,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ЦИСТЕРНА\"\n        },\n        {\n            \"id\": 384,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ЦИСТЕРНА АСЕНІЗАЦІЙНА\"\n        },\n        {\n            \"id\": 385,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ЦИСТЕРНА АСЕНІЗАЦІЙНА-C\"\n        },\n        {\n            \"id\": 386,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ЦИСТЕРНА Д/П НЕБЕЗ. ВАН\"\n        },\n        {\n            \"id\": 387,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ЦИСТЕРНА Д/П НЕБЕЗ. ВАН-C\"\n        },\n        {\n            \"id\": 388,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ЦИСТЕРНА Д/П НЕБЕЗ. ВАНТАЖ\"\n        },\n        {\n            \"id\": 389,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ЦИСТЕРНА КАНАЛОПРОМИВОЧНА\"\n        },\n        {\n            \"id\": 390,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ЦИСТЕРНА МАЛОТОНАЖНА-В\"\n        },\n        {\n            \"id\": 391,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ЦИСТЕРНА ПОЖЕЖНА\"\n        },\n        {\n            \"id\": 392,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ЦИСТЕРНА ПОЖЕЖНА-C\"\n        },\n        {\n            \"id\": 393,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ЦИСТЕРНА ПОЛИВОМИЄЧНА\"\n        },\n        {\n            \"id\": 394,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ЦИСТЕРНА ХАРЧОВА\"\n        },\n        {\n            \"id\": 395,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ЦИСТЕРНА-АВТОГУДРОНАТОР\"\n        },\n        {\n            \"id\": 396,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ШАСІ\"\n        },\n        {\n            \"id\": 397,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ШАСІ З МАНІПУЛЯТОРОМ\"\n        },\n        {\n            \"id\": 398,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛІЗОВАНИЙ ЩЕПОДРОБАРКА (З КРАНОМ-МАНІПУЛЯТОРОМ)\"\n        },\n        {\n            \"id\": 399,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ АВАРІЙНО-РЕМОНТНА\"\n        },\n        {\n            \"id\": 400,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ АВАРІЙНО-РЕМОНТНА МАЙСТЕРНЯ\"\n        },\n        {\n            \"id\": 401,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ АВАРІЙНО-РЯТУВАЛЬНИЙ\"\n        },\n        {\n            \"id\": 402,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ АВТОБУС ВАХТОВИЙ\"\n        },\n        {\n            \"id\": 403,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ АВТОБУС-D\"\n        },\n        {\n            \"id\": 404,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ АВТОВОЗ\"\n        },\n        {\n            \"id\": 405,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ АВТОДРАБИНА ПОЖЕЖНА\"\n        },\n        {\n            \"id\": 406,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ АВТОЕВАКУАТОР\"\n        },\n        {\n            \"id\": 407,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ АВТОЕВАКУАТОР (ДУБЛЬ КАБІНА)\"\n        },\n        {\n            \"id\": 408,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ АВТОКРАН 10-20Т\"\n        },\n        {\n            \"id\": 409,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ АВТОКРАН 10-20т-C\"\n        },\n        {\n            \"id\": 410,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ АВТОКРАН БІЛЬШЕ 20Т\"\n        },\n        {\n            \"id\": 411,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ АВТОКРАН БІЛЬШЕ 20т-C\"\n        },\n        {\n            \"id\": 412,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ АВТОКРАН ДО 10Т\"\n        },\n        {\n            \"id\": 413,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ АВТОКРАН ДО 10т-C\"\n        },\n        {\n            \"id\": 414,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ АВТОМ. Д/П БАЛОНІВ\"\n        },\n        {\n            \"id\": 415,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ АВТОМ. Д/П БАЛОНІВ -B\"\n        },\n        {\n            \"id\": 416,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ АВТОМ. Д/П БАЛОНІВ-C\"\n        },\n        {\n            \"id\": 417,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ АВТОМАЙСТЕРНЯ\"\n        },\n        {\n            \"id\": 418,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ АВТОМАЙСТЕРНЯ-C\"\n        },\n        {\n            \"id\": 419,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ АВТОПІДЙОМНИК\"\n        },\n        {\n            \"id\": 420,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ БІТУМОВОЗ\"\n        },\n        {\n            \"id\": 421,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ БІТУМОВОЗ-C\"\n        },\n        {\n            \"id\": 422,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ БЕТОНОНАСОС\"\n        },\n        {\n            \"id\": 423,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ БЕТОНОРОЗМІШУВАЧ\"\n        },\n        {\n            \"id\": 424,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ БЕТОНОРОЗМІШУВАЧ-C\"\n        },\n        {\n            \"id\": 425,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ БОРТОВА ПЛАТФОРМА (З ГІДРОБОРТОМ)\"\n        },\n        {\n            \"id\": 426,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ БОРТОВИЙ\"\n        },\n        {\n            \"id\": 427,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ БОРТОВИЙ (ДУБЛЬ КАБІНА)\"\n        },\n        {\n            \"id\": 428,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ БОРТОВИЙ (З КРАНОМ-МАНІПУЛЯТОРОМ)\"\n        },\n        {\n            \"id\": 429,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ БОРТОВИЙ МАЛОТОНАЖНИЙ-B\"\n        },\n        {\n            \"id\": 430,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ БОРТОВИЙ-ТЕНТОВАНИЙ\"\n        },\n        {\n            \"id\": 431,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ БОРТОВИЙ-ТЕНТОВАНИЙ (З ГІДРОБОРТОМ)\"\n        },\n        {\n            \"id\": 432,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ БУРОВИЙ\"\n        },\n        {\n            \"id\": 433,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ БУРОВИЙ (ДУБЛЬ КАБІНА)\"\n        },\n        {\n            \"id\": 434,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ БУРОВИЙ-C\"\n        },\n        {\n            \"id\": 435,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ВАНТАЖНИЙ-С\"\n        },\n        {\n            \"id\": 436,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ВАНТАЖОПАСАЖИРСЬКИЙ\"\n        },\n        {\n            \"id\": 437,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ВАНТАЖОПАСАЖИРСЬКИЙ ОПЕРАТИВНИЙ-В\"\n        },\n        {\n            \"id\": 438,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ВАНТАЖОПАСАЖИРСЬКИЙ-B\"\n        },\n        {\n            \"id\": 439,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ВАНТАЖОПАСАЖИРСЬКИЙ-C\"\n        },\n        {\n            \"id\": 440,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ВАНТАЖОПАСАЖИРСЬКИЙ-В\"\n        },\n        {\n            \"id\": 441,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ВАХТОВИЙ - C\"\n        },\n        {\n            \"id\": 442,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ВОДОЦИСТЕРНА\"\n        },\n        {\n            \"id\": 443,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ВОДОЦИСТЕРНА-C\"\n        },\n        {\n            \"id\": 444,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ДЛЯ ПЕРЕСАДЖУВАННЯ ДЕРЕВ\"\n        },\n        {\n            \"id\": 445,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ДОРОЖНЬОРЕМОНТНИЙ\"\n        },\n        {\n            \"id\": 446,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ДОРОЖНЬОРЕМОНТНИЙ-ЦЕМЕНТОРОЗПОДІЛЮВАЧ\"\n        },\n        {\n            \"id\": 447,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ЕВАКУАЦІЙНИЙ ТЯГАЧ\"\n        },\n        {\n            \"id\": 448,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ЕКСКАВАТОР-ПЛАНУВАЛЬНИК\"\n        },\n        {\n            \"id\": 449,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ЕЛЕКТРОЛАБОРАТОРІЯ\"\n        },\n        {\n            \"id\": 450,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ЕСКАВАТОР-ПЛАНУВАЛЬНИК\"\n        },\n        {\n            \"id\": 451,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ЗМІННИЙ КУЗОВ\"\n        },\n        {\n            \"id\": 452,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ЗМІННИЙ КУЗОВ (МУЛЬТИЛІФТ)\"\n        },\n        {\n            \"id\": 453,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ЗМІШУВАЛЬНО-ЗАРЯДЖАЛЬНИЙ\"\n        },\n        {\n            \"id\": 454,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ КАТАФАЛК\"\n        },\n        {\n            \"id\": 455,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ КОМПРЕСОРНА СТАНЦІЯ\"\n        },\n        {\n            \"id\": 456,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ КОНТЕЙНЕРОВОЗ\"\n        },\n        {\n            \"id\": 457,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ КОНТЕЙНЕРОВОЗ (З КРАНОМ-МАНІПУЛЯТОРОМ)\"\n        },\n        {\n            \"id\": 458,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ КОНТЕЙНЕРОВОЗ-C\"\n        },\n        {\n            \"id\": 459,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ КОРМОВОЗ\"\n        },\n        {\n            \"id\": 460,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ЛІСОВОЗ\"\n        },\n        {\n            \"id\": 461,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ЛІСОВОЗ-E\"\n        },\n        {\n            \"id\": 462,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ЛАБОРАТОРІЯ З РЕНТГЕН. СКАНЕРОМ\"\n        },\n        {\n            \"id\": 463,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ МЕДДОПОМОГА\"\n        },\n        {\n            \"id\": 464,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ МЕДДОПОМОГА-B\"\n        },\n        {\n            \"id\": 465,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ Н/ПР-КОНТЕЙНЕРОВОЗ-E\"\n        },\n        {\n            \"id\": 466,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ Н/ПР-РЕФРИЖЕРАТОР-E\"\n        },\n        {\n            \"id\": 467,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ Н/ПР-ФУРГОН ІЗОТЕРМІЧНИЙ-E\"\n        },\n        {\n            \"id\": 468,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ Н/ПР-ЦИСТЕРНА НЕБЕЗ-E\"\n        },\n        {\n            \"id\": 469,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ Н/ПР-ЦИСТЕРНА-АВТОГУДРОНАТОР-Е\"\n        },\n        {\n            \"id\": 470,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ НАСОСНА УСТАНОВКА\"\n        },\n        {\n            \"id\": 471,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ НЕВИЗНАЧЕНИЙ\"\n        },\n        {\n            \"id\": 472,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ОПЕРАТИВНИЙ-B\"\n        },\n        {\n            \"id\": 473,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ПІДІЙМАЛЬНА УСТАНОВКА\"\n        },\n        {\n            \"id\": 474,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ПІДМІТАЛЬНО-ПРИБИРАЛЬНА\"\n        },\n        {\n            \"id\": 475,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ПІДМІТАЛЬНО-ПРИБИРАЛЬНА-C\"\n        },\n        {\n            \"id\": 476,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ПІКАП\"\n        },\n        {\n            \"id\": 477,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ПІКАП-B\"\n        },\n        {\n            \"id\": 478,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ПІСКОРОЗКИДУВАЧ\"\n        },\n        {\n            \"id\": 479,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ПІСКОРОЗКИДУВАЧ-C\"\n        },\n        {\n            \"id\": 480,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ПАЛЕБІЙНИЙ-C\"\n        },\n        {\n            \"id\": 481,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ПАЛИВОЗАПРАВНИК\"\n        },\n        {\n            \"id\": 482,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ПАЛИВОЗАПРАВНИК-C\"\n        },\n        {\n            \"id\": 483,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ПАЛИВОЦИСТЕРНА\"\n        },\n        {\n            \"id\": 484,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ПАСАЖИРСЬКИЙ\"\n        },\n        {\n            \"id\": 485,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ПАСАЖИРСЬКИЙ-B\"\n        },\n        {\n            \"id\": 486,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ПАСАЖИРСЬКИЙ-CІD\"\n        },\n        {\n            \"id\": 487,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ПЛАТФОРМА\"\n        },\n        {\n            \"id\": 488,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ПЛАТФОРМА (ДУБЛЬ КАБІНА)\"\n        },\n        {\n            \"id\": 489,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ПЛАТФОРМА (З КРАНОМ-МАНІПУЛЯТОРОМ)\"\n        },\n        {\n            \"id\": 490,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ПОЖЕЖНИЙ\"\n        },\n        {\n            \"id\": 491,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ПОЖЕЖНИЙ-C\"\n        },\n        {\n            \"id\": 492,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ПР-РЕФРИЖЕРАТОР-E\"\n        },\n        {\n            \"id\": 493,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ПР-ЦИСТЕРНА ХАРЧОВА-E\"\n        },\n        {\n            \"id\": 494,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ РОЗЧИНОВОЗ-C\"\n        },\n        {\n            \"id\": 495,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ СІДЛОВИЙ ТЯГАЧ\"\n        },\n        {\n            \"id\": 496,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ СІДЛОВИЙ ТЯГАЧ (ДУБЛЬ КАБІНА)\"\n        },\n        {\n            \"id\": 497,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ СІДЛОВИЙ ТЯГАЧ-E\"\n        },\n        {\n            \"id\": 498,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ САМОСКИД\"\n        },\n        {\n            \"id\": 499,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ САМОСКИД (З КРАНОМ-МАНІПУЛЯТОРОМ)\"\n        },\n        {\n            \"id\": 500,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ САМОСКИД МАЛОТОНАЖНИЙ\"\n        },\n        {\n            \"id\": 501,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ САМОСКИД МАЛОТОНАЖНИЙ-В\"\n        },\n        {\n            \"id\": 502,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ САНІТАРНИЙ\"\n        },\n        {\n            \"id\": 503,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ САНІТАРНИЙ-B\"\n        },\n        {\n            \"id\": 504,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ САНІТАРНИЙ-C\"\n        },\n        {\n            \"id\": 505,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ СМІТТЄВОЗ\"\n        },\n        {\n            \"id\": 506,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ СМІТТЄВОЗ-C\"\n        },\n        {\n            \"id\": 507,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ СНІГООЧИСНИК\"\n        },\n        {\n            \"id\": 508,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ СНІГООЧИСНИК-C\"\n        },\n        {\n            \"id\": 509,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ СОРТИМЕНТОВОЗ (З КРАНОМ-МАНІПУЛЯТОРОМ)\"\n        },\n        {\n            \"id\": 510,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ СПЕЦІАЛІЗОВАНИЙ МЕДДОПОМОГА-B\"\n        },\n        {\n            \"id\": 511,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ СПЕЦІАЛЬНИЙ ВАНТАЖНИЙ-C\"\n        },\n        {\n            \"id\": 512,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ СПЕЦІАЛЬНИЙ МАЛОТОНАЖНИЙ-В\"\n        },\n        {\n            \"id\": 513,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ СПЕЦІАЛЬНИЙ ЯМКОВОГО РЕМОНТУ\"\n        },\n        {\n            \"id\": 514,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ТЕХДОПОМОГА\"\n        },\n        {\n            \"id\": 515,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ТЕХДОПОМОГА - B\"\n        },\n        {\n            \"id\": 516,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ТЕХДОПОМОГА-B\"\n        },\n        {\n            \"id\": 517,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ТЕХДОПОМОГА-C\"\n        },\n        {\n            \"id\": 518,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ФУРГОН\"\n        },\n        {\n            \"id\": 519,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ФУРГОН (ДУБЛЬ КАБІНА)\"\n        },\n        {\n            \"id\": 520,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ФУРГОН (З ГІДРОБОРТОМ)\"\n        },\n        {\n            \"id\": 521,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ФУРГОН ІЗОТЕРМІЧНИЙ\"\n        },\n        {\n            \"id\": 522,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ФУРГОН ІЗОТЕРМІЧНИЙ-C\"\n        },\n        {\n            \"id\": 523,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ФУРГОН ІЗОТЕРМІЧНИЙ-В\"\n        },\n        {\n            \"id\": 524,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ФУРГОН Д/П Д/П НЕБЕЗ. ВАНТАЖ\"\n        },\n        {\n            \"id\": 525,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ФУРГОН Д/П НЕБЕЗ. ВАН.-C\"\n        },\n        {\n            \"id\": 526,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ФУРГОН Д/П ХУДОБИ\"\n        },\n        {\n            \"id\": 527,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ФУРГОН ЖИТЛОВИЙ\"\n        },\n        {\n            \"id\": 528,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ФУРГОН МАЛОТОНАЖНИЙ\"\n        },\n        {\n            \"id\": 529,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ФУРГОН МАЛОТОНАЖНИЙ ОПЕРАТИВНИЙ\"\n        },\n        {\n            \"id\": 530,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ФУРГОН МАЛОТОНАЖНИЙ ОПЕРАТИВНИЙ-B\"\n        },\n        {\n            \"id\": 531,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ФУРГОН МАЛОТОНАЖНИЙ-B\"\n        },\n        {\n            \"id\": 532,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ФУРГОН МАЛОТОНАЖНИЙ-B (СПЕЦІАЛЬНИЙ)\"\n        },\n        {\n            \"id\": 533,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ФУРГОН ОПЕРАТИВНИЙ\"\n        },\n        {\n            \"id\": 534,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ФУРГОН ОПЕРАТИВНИЙ-C\"\n        },\n        {\n            \"id\": 535,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ФУРГОН ПАСАЖИРСЬКИЙ-CІD\"\n        },\n        {\n            \"id\": 536,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ФУРГОН РЕФРИЖЕРАТОР\"\n        },\n        {\n            \"id\": 537,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ФУРГОН РЕФРИЖЕРАТОР (З ГІДРОБОРТОМ)\"\n        },\n        {\n            \"id\": 538,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ФУРГОН РЕФРИЖЕРАТОР-B\"\n        },\n        {\n            \"id\": 539,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ФУРГОН СПЕЦІАЛЬНИЙ-C\"\n        },\n        {\n            \"id\": 540,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ФУРГОН ХЛІБНИЙ\"\n        },\n        {\n            \"id\": 541,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ФУРГОН-C\"\n        },\n        {\n            \"id\": 542,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ФУРГОН-РЕФРИЖЕРАТОР\"\n        },\n        {\n            \"id\": 543,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ЦЕМЕНТОВОЗ\"\n        },\n        {\n            \"id\": 544,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ЦЕМЕНТОВОЗ - C\"\n        },\n        {\n            \"id\": 545,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ЦИСТЕРНА\"\n        },\n        {\n            \"id\": 546,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ЦИСТЕРНА АСЕНІЗАЦІЙНА\"\n        },\n        {\n            \"id\": 547,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ЦИСТЕРНА АСЕНІЗАЦІЙНА-C\"\n        },\n        {\n            \"id\": 548,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ЦИСТЕРНА Д/П НЕБЕЗ. ВАН\"\n        },\n        {\n            \"id\": 549,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ЦИСТЕРНА Д/П НЕБЕЗ. ВАН-C\"\n        },\n        {\n            \"id\": 550,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ЦИСТЕРНА Д/П НЕБЕЗ. ВАНТАЖ\"\n        },\n        {\n            \"id\": 551,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ЦИСТЕРНА КАНАЛОПРОМИВОЧНА\"\n        },\n        {\n            \"id\": 552,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ЦИСТЕРНА ПОЖЕЖНА\"\n        },\n        {\n            \"id\": 553,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ЦИСТЕРНА ПОЖЕЖНА-C\"\n        },\n        {\n            \"id\": 554,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ЦИСТЕРНА ПОЛИВОМИЄЧНА\"\n        },\n        {\n            \"id\": 555,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ЦИСТЕРНА ХАРЧОВА\"\n        },\n        {\n            \"id\": 556,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ЦИСТЕРНА-АВТОГУДРОНАТОР\"\n        },\n        {\n            \"id\": 557,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ШАСІ\"\n        },\n        {\n            \"id\": 558,\n            \"title\": \"ВАНТАЖНИЙ СПЕЦІАЛЬНИЙ ЩЕПОДРОБАРКА (З КРАНОМ-МАНІПУЛЯТОРОМ)\"\n        }\n    ]\n}"},{"id":"0e99d788-93b0-45d3-976d-2edcea2c03db","name":"Missing token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text","disabled":true},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getCarBodyType"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token is required\",\n    \"relogin\": true\n}"}],"_postman_id":"4155f323-d014-46d4-82a2-ba6e2a768a23"},{"name":"Get Truck/Trailer Manufacturers","id":"6dfa2008-51bb-4f6c-aff0-9331b2027934","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getCarMake","description":"<p>Returns the list of truck/trailer manufacturing companies available in the app.</p>\n<ul>\n<li>if successful you will receive all truck/trailer manufacturing companies available in the app</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getCarMake"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"b3ec680d-f504-48e7-b66f-0827389ebb34","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getCarMake"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1,\n            \"title\": \"Avia\"\n        },\n        {\n            \"id\": 2,\n            \"title\": \"Barkas\"\n        },\n        {\n            \"id\": 3,\n            \"title\": \"BAW\"\n        },\n        {\n            \"id\": 4,\n            \"title\": \"CAMC\"\n        },\n        {\n            \"id\": 5,\n            \"title\": \"Chevrolet\"\n        },\n        {\n            \"id\": 6,\n            \"title\": \"Citroen\"\n        },\n        {\n            \"id\": 7,\n            \"title\": \"Daewoo\"\n        },\n        {\n            \"id\": 8,\n            \"title\": \"DAF\"\n        },\n        {\n            \"id\": 9,\n            \"title\": \"Dongfeng\"\n        },\n        {\n            \"id\": 10,\n            \"title\": \"Eagle\"\n        },\n        {\n            \"id\": 11,\n            \"title\": \"ERF\"\n        },\n        {\n            \"id\": 12,\n            \"title\": \"FAW\"\n        },\n        {\n            \"id\": 13,\n            \"title\": \"Fiat\"\n        },\n        {\n            \"id\": 14,\n            \"title\": \"Ford\"\n        },\n        {\n            \"id\": 15,\n            \"title\": \"Forland\"\n        },\n        {\n            \"id\": 16,\n            \"title\": \"Foton\"\n        },\n        {\n            \"id\": 17,\n            \"title\": \"Freightliner\"\n        },\n        {\n            \"id\": 18,\n            \"title\": \"GMC\"\n        },\n        {\n            \"id\": 19,\n            \"title\": \"Groz\"\n        },\n        {\n            \"id\": 20,\n            \"title\": \"Hino\"\n        },\n        {\n            \"id\": 21,\n            \"title\": \"Howo\"\n        },\n        {\n            \"id\": 22,\n            \"title\": \"Hyundai\"\n        },\n        {\n            \"id\": 23,\n            \"title\": \"IFA\"\n        },\n        {\n            \"id\": 24,\n            \"title\": \"International\"\n        },\n        {\n            \"id\": 25,\n            \"title\": \"Isuzu\"\n        },\n        {\n            \"id\": 26,\n            \"title\": \"Iveco\"\n        },\n        {\n            \"id\": 27,\n            \"title\": \"JAC\"\n        },\n        {\n            \"id\": 28,\n            \"title\": \"Kenworth\"\n        },\n        {\n            \"id\": 29,\n            \"title\": \"KIA\"\n        },\n        {\n            \"id\": 30,\n            \"title\": \"LDV\"\n        },\n        {\n            \"id\": 31,\n            \"title\": \"LIAZ\"\n        },\n        {\n            \"id\": 32,\n            \"title\": \"Mack\"\n        },\n        {\n            \"id\": 33,\n            \"title\": \"Magnum\"\n        },\n        {\n            \"id\": 34,\n            \"title\": \"MAN\"\n        },\n        {\n            \"id\": 35,\n            \"title\": \"Mazda\"\n        },\n        {\n            \"id\": 36,\n            \"title\": \"Mercedes-Benz\"\n        },\n        {\n            \"id\": 37,\n            \"title\": \"Mitsubishi\"\n        },\n        {\n            \"id\": 38,\n            \"title\": \"Mudan\"\n        },\n        {\n            \"id\": 39,\n            \"title\": \"Nissan\"\n        },\n        {\n            \"id\": 40,\n            \"title\": \"Opel\"\n        },\n        {\n            \"id\": 67,\n            \"title\": \"Peterbilt\"\n        },\n        {\n            \"id\": 41,\n            \"title\": \"Peugeot\"\n        },\n        {\n            \"id\": 42,\n            \"title\": \"Praga\"\n        },\n        {\n            \"id\": 43,\n            \"title\": \"Renault\"\n        },\n        {\n            \"id\": 44,\n            \"title\": \"Robur\"\n        },\n        {\n            \"id\": 45,\n            \"title\": \"Scania\"\n        },\n        {\n            \"id\": 71,\n            \"title\": \"Skoda\"\n        },\n        {\n            \"id\": 72,\n            \"title\": \"Sterling\"\n        },\n        {\n            \"id\": 46,\n            \"title\": \"Steyr\"\n        },\n        {\n            \"id\": 47,\n            \"title\": \"Tata\"\n        },\n        {\n            \"id\": 48,\n            \"title\": \"Tatra\"\n        },\n        {\n            \"id\": 49,\n            \"title\": \"Toyota\"\n        },\n        {\n            \"id\": 50,\n            \"title\": \"Volkswagen\"\n        },\n        {\n            \"id\": 51,\n            \"title\": \"Volvo\"\n        },\n        {\n            \"id\": 66,\n            \"title\": \"Western Star\"\n        },\n        {\n            \"id\": 52,\n            \"title\": \"Yuejin\"\n        },\n        {\n            \"id\": 53,\n            \"title\": \"Zuk\"\n        },\n        {\n            \"id\": 69,\n            \"title\": \"Алтай\"\n        },\n        {\n            \"id\": 54,\n            \"title\": \"БЕЛАЗ\"\n        },\n        {\n            \"id\": 74,\n            \"title\": \"Бычок\"\n        },\n        {\n            \"id\": 55,\n            \"title\": \"ГАЗ\"\n        },\n        {\n            \"id\": 73,\n            \"title\": \"Газель\"\n        },\n        {\n            \"id\": 56,\n            \"title\": \"ЗАЗ\"\n        },\n        {\n            \"id\": 57,\n            \"title\": \"ЗИЛ\"\n        },\n        {\n            \"id\": 58,\n            \"title\": \"ЗИС\"\n        },\n        {\n            \"id\": 60,\n            \"title\": \"КАЗ\"\n        },\n        {\n            \"id\": 59,\n            \"title\": \"КамАЗ\"\n        },\n        {\n            \"id\": 61,\n            \"title\": \"КРАЗ\"\n        },\n        {\n            \"id\": 62,\n            \"title\": \"МАЗ\"\n        },\n        {\n            \"id\": 63,\n            \"title\": \"РАФ\"\n        },\n        {\n            \"id\": 64,\n            \"title\": \"УАЗ\"\n        },\n        {\n            \"id\": 65,\n            \"title\": \"УРАЛ\"\n        },\n        {\n            \"id\": 70,\n            \"title\": \"Шаанхи\"\n        },\n        {\n            \"id\": 68,\n            \"title\": \"Шеньци\"\n        }\n    ]\n}"},{"id":"f0434b32-8901-4c69-b1e3-b8c087f606e9","name":"Invalid token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getCarMake"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"6dfa2008-51bb-4f6c-aff0-9331b2027934"}],"id":"adb746ea-2444-4ac7-a5af-c4811bae9675","_postman_id":"adb746ea-2444-4ac7-a5af-c4811bae9675","description":""}],"id":"5065ab66-11fd-4fc6-aaca-279a2f06de7a","description":"<p>A list of endpoints dedicated to work with cars, drivers, trailers etc.</p>\n","_postman_id":"5065ab66-11fd-4fc6-aaca-279a2f06de7a"},{"name":"Partners","item":[{"name":"Get Partners","event":[{"listen":"test","script":{"id":"c82d67e8-6563-48d7-bd84-24f702992f73","exec":["var response = pm.response.json();","var isContains = pm.response.text();","if (response.status === 200 || response.status === 'success') {","    pm.test(\"data in response matches array\", () => {","        pm.expect(response.data).to.be.an(\"array\");","    });","","   ","","} else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","   ","};",""],"type":"text/javascript"}}],"id":"55b8b0c7-61c4-47cf-9bc0-a3c300f59088","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getPartners","description":"<p>Get the list of legal entities with which the legal entity of the current user has direct contracts for cargo deliveries.</p>\n<p>Each element of the list contains basic details of each partner, including the hash, by which full details can be queried using the <code>getCompany</code> endpoint.</p>\n<p>If queried by a shipper, the method will return the list of carriers, and vice versa. </p>\n<ul>\n<li>If successful, you will receive the list of partner legal entities</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getPartners"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"563bca77-49da-4cf6-8582-a5cbe6e52af5","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/a/v2/rest/public/getPartners"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"clientHash\": \"588a6b0ff42a6c39834c80dfc9fb38ba\",\n            \"title\": \"Northern Freight Solutions Ltd\",\n            \"company\": 49,\n            \"natcomid\": \"6722356984\",\n            \"contract\": \"\",\n            \"date\": \"2016-09-02\",\n            \"dateend\": \"\",\n            \"blocked\": true,\n            \"type\": \"operator\"\n        },\n        {\n            \"clientHash\": \"a65e7164cbc4d08fc2f9d0a164a6dc84\",\n            \"title\": \"Red Fox Transport Ltd\",\n            \"company\": 405,\n            \"natcomid\": \"4722356984\",\n            \"contract\": \"\",\n            \"date\": \"0000-00-00\",\n            \"dateend\": \"\",\n            \"blocked\": false,\n            \"type\": \"operator\"\n        },\n        {\n            \"clientHash\": \"321c3857d663d927239e33d87869197b\",\n            \"title\": \"Diamond Logistics Group plc\",\n            \"company\": 2704,\n            \"natcomid\": \"6722356984\",\n            \"contract\": \"GH-1/2\",\n            \"date\": \"2015-01-28\",\n            \"dateend\": \"\",\n            \"blocked\": false,\n            \"type\": \"expeditor\"\n        },\n        {\n            \"clientHash\": \"21a797775797725b9cc5925a722e2746\",\n            \"title\": \"Cosmos Logistics Ltd\",\n            \"company\": 3458,\n            \"natcomid\": \"6722356984\",\n            \"contract\": \"\",\n            \"date\": \"0000-00-00\",\n            \"dateend\": \"\",\n            \"blocked\": false,\n            \"type\": \"operator\"\n        },\n        {\n            \"clientHash\": \"302482b88fbe4901c7a773bcc4c5d124\",\n            \"title\": \"Prime Haulage Services Ltd\",\n            \"company\": 779709,\n            \"natcomid\": \"6722356984\",\n            \"contract\": \"5\",\n            \"date\": \"2021-03-22\",\n            \"dateend\": \"\",\n            \"blocked\": false,\n            \"type\": \"\"\n        }\n    ]\n}"},{"id":"fd6e74eb-1940-4103-a6f6-f2d17d3a1ded","name":"Invalid token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/a/v2/rest/public/getPartners"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"55b8b0c7-61c4-47cf-9bc0-a3c300f59088"},{"name":"Get Company Details","event":[{"listen":"test","script":{"id":"754ba6e6-a8ab-44d7-aaa7-d81f2d457643","exec":["var response = pm.response.json();\r","\r","if (response.status === 200 || response.status === 'success') {\r","    pm.test(\"data in response matches array\", () => {\r","        pm.expect(response.data).to.be.an(\"array\");\r","    });\r","\r","} else {\r","    pm.test(\"Response have relogin an Boolean\", () => {\r","        pm.expect(response.relogin).to.be.an('boolean');\r","    });\r","};\r","\r",""],"type":"text/javascript"}}],"id":"d471360f-af13-48c9-b319-110dfe56ccc9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/showCompany?hash={{companyHash}}","description":"<p>Return the data about a legal entity, identified by the <code>companyHash</code>.</p>\n<ul>\n<li>If successful, you will receive the details of the legal entity passed</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>(!) NOTE: current user might not have permission to view particular legal entities based on the relationships between the requested legal entity and the legal entity of the current user.</p>\n","urlObject":{"path":["a","v2","rest","public","showCompany"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Internal unique hash of the legal entity.</p>\n","type":"text/plain"},"key":"hash","value":"{{companyHash}}"}],"variable":[]}},"response":[{"id":"783e286a-983c-4bb8-98c1-5c7a90ade2b2","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/showCompany?hash={{companyHash}}","host":["{{host}}"],"path":["a","v2","rest","public","showCompany"],"query":[{"key":"hash","value":"{{companyHash}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"hash\": \"518a6b0fg42a6c39834c80dfc9fb38ba\",\n        \"created\": \"2014-03-06\",\n        \"titleRu\": \"LogisticaNova Ltd\",\n        \"titleFull\": \"LogisticaNova Limited\",\n        \"otherContactInfo\": \"\",\n        \"country\": \"United Kingdom\",\n        \"ownership\": \"\",\n        \"legalAddress\": \"Unit 4, Meridian Business Park, Southampton, SO14 5QF, United Kingdom\",\n        \"factAddress\": \"Warehouse B, Dock Gate 3, Southampton Docks, SO15 1HJ, United Kingdom\",\n        \"bankAccount\": \"GB29NWBK60161331926819\",\n        \"ifoid\": \"305749\",\n        \"natcomid\": \"09876543\",\n        \"taxid\": \"GB123456789\",\n        \"vatid\": \"GB123456789\",\n        \"telnum\": \"+442380123456\",\n        \"faxnum\": \"+442380654321\",\n        \"email\": \"operations@logisticanova.co.uk\",\n        \"website\": \"www.logisticanova.co.uk\",\n        \"bankname\": \"NatWest Bank plc\",\n        \"korraccount\": \"\",\n        \"signer\": \"Head of Road Transport Operations\",\n        \"director\": \"Thompson\",\n        \"actsonbaseof\": \"power of attorney\",\n        \"directorFirstName\": \"Michael\",\n        \"directorPatronymic\": \"\",\n        \"signerCase\": \"\",\n        \"directorCase\": \"\",\n        \"apikeyNP\": \"\",\n        \"logisticsRatified\": 0,\n        \"logisticsRatifiedByUser\": 0,\n        \"logisticsRatifiedMoment\": \"0000-00-00 00:00:00\",\n        \"swift\": \"NWBKGB2L\",\n        \"registryValidated\": null\n    }\n}"},{"id":"1ad751f1-fb29-411a-a2f2-1f88f3a4f158","name":"Invalid companyHash passed","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/showCompany?hash={{companyHash}}","host":["{{host}}"],"path":["a","v2","rest","public","showCompany"],"query":[{"key":"hash","value":"{{companyHash}}","description":"Internal unique hash of the legal entity."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Cannot find the company\",\n    \"relogin\": false\n}"}],"_postman_id":"d471360f-af13-48c9-b319-110dfe56ccc9"},{"name":"Invite Partner for Cooperation","event":[{"listen":"test","script":{"id":"1685f872-f858-44ad-903b-b6c79d47618e","exec":["var response = pm.response.json();","var isContains = pm.response.text();","","if (response.status === 200 || response.status === 'success'){","","pm.test(\"data in response matches object\", () => {","  pm.expect(response.data).to.be.an(\"object\");","});","","pm.test(\"data have key unreadMessages\", () => {","  pm.expect(isContains).to.include(\"unreadMessages\");","});","pm.test(\"data have key attentionRoutes\", () => {","  pm.expect(isContains).to.include(\"attentionRoutes\");","});","}else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","}","",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"65397edf-4de3-42b3-92be-dd1f5db8dac2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"clienthash\":{{clientHash}}\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/inviteForCooperation","description":"<p>Returns the summary of notifications. Includes unread messages and routes, in which actions are required.</p>\n<ul>\n<li>if successful you will receive all your notifications</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>(!) NOTE: Endpoint returns the number of notifications and number of routes in which actions are required, but does not return messages contents or route details.</p>\n","urlObject":{"path":["a","v2","rest","public","inviteForCooperation"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"65397edf-4de3-42b3-92be-dd1f5db8dac2"},{"name":"Remind Invites","id":"50b8e9b2-1ba0-491d-87e1-cf7e3fa4d584","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/remindInvites","urlObject":{"path":["a","v2","rest","public","remindInvites"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"50b8e9b2-1ba0-491d-87e1-cf7e3fa4d584"},{"name":"My Invites","id":"8322a977-dcc6-439c-a2ae-e3ee19909cba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getMyInvites","urlObject":{"path":["a","v2","rest","public","getMyInvites"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8322a977-dcc6-439c-a2ae-e3ee19909cba"},{"name":"Blocked Partners","id":"ddb1dc29-d4f2-4e1e-94a0-b3e78cdd651c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getBlockedPartners","urlObject":{"path":["a","v2","rest","public","getBlockedPartners"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ddb1dc29-d4f2-4e1e-94a0-b3e78cdd651c"},{"name":"Block Partner","id":"d696c01a-8920-4712-984a-4b8baf219662","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{ \"clienthash\":\"\" }","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/blockPartner","urlObject":{"path":["a","v2","rest","public","blockPartner"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d696c01a-8920-4712-984a-4b8baf219662"},{"name":"Unblock Partner","id":"81dd32ac-3941-4e3e-8d17-3248306cfbb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{ \"clienthash\":\"\" }","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/unblockPartner","urlObject":{"path":["a","v2","rest","public","unblockPartner"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"81dd32ac-3941-4e3e-8d17-3248306cfbb0"},{"name":"Carriers Open For Cooperation","id":"49e14b3b-3cdf-4ae4-83af-1d409c6bb2ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getCarriersOpenForCooperation","urlObject":{"path":["a","v2","rest","public","getCarriersOpenForCooperation"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"49e14b3b-3cdf-4ae4-83af-1d409c6bb2ae"},{"name":"Incoming Invites","id":"651a89ef-bace-41ed-8ee8-b0b68798f933","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getIncomingInvites","urlObject":{"path":["a","v2","rest","public","getIncomingInvites"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"651a89ef-bace-41ed-8ee8-b0b68798f933"},{"name":"Decline Invite","id":"9610b28f-a1ff-47f3-9f30-a9369ad22fb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n \"clienthash\":\"3912aaebebbfc4b0b3dd2a1d6db9a114\",\n \"reason\":\"Перевірка API decline\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/declineInvite","urlObject":{"path":["a","v2","rest","public","declineInvite"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9610b28f-a1ff-47f3-9f30-a9369ad22fb5"},{"name":"My Accepted Invites","id":"76b925f2-841e-417b-b4ac-2abad2e3c4c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getMyAcceptedInvites","urlObject":{"path":["a","v2","rest","public","getMyAcceptedInvites"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"76b925f2-841e-417b-b4ac-2abad2e3c4c3"},{"name":"Accept Invite","id":"9ff9867b-eafb-4532-83c3-9c199e4fb96c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{\n \"clienthash\":\"\",\n \"reason\":\"Перевірка API accept\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/acceptInvite","urlObject":{"path":["a","v2","rest","public","acceptInvite"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9ff9867b-eafb-4532-83c3-9c199e4fb96c"},{"name":"Invite For Cooperation With Specific User","id":"facb2766-c20f-4e60-9467-571c9313e000","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n \"clienthash\":\"\",\n \"contractnumber\":\"contract#1\",\n \"contractdate\":\"01.01.2025\",\n \"username\": \"1\",\n \"cellnum\": \"+380500000000\",\n \"email\":\"dddd@dd.com\",\n \"secretcode\":\"1\",\n \"v3_frontend\":1\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/inviteForCooperationWithSpecificUser","urlObject":{"path":["a","v2","rest","public","inviteForCooperationWithSpecificUser"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"facb2766-c20f-4e60-9467-571c9313e000"},{"name":"Get Shippers Open for New Contracts","event":[{"listen":"test","script":{"id":"1685f872-f858-44ad-903b-b6c79d47618e","exec":["var response = pm.response.json();","var isContains = pm.response.text();","","if (response.status === 200 || response.status === 'success'){","","pm.test(\"data in response matches object\", () => {","  pm.expect(response.data).to.be.an(\"object\");","});","","pm.test(\"data have key unreadMessages\", () => {","  pm.expect(isContains).to.include(\"unreadMessages\");","});","pm.test(\"data have key attentionRoutes\", () => {","  pm.expect(isContains).to.include(\"attentionRoutes\");","});","}else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","}","",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"8ac6108d-c8ce-4e34-bcee-3a9e6795bed0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getShippersOpenForCooperation","description":"<p>Returns the summary of notifications. Includes unread messages and routes, in which actions are required.</p>\n<ul>\n<li>if successful you will receive all your notifications</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>(!) NOTE: Endpoint returns the number of notifications and number of routes in which actions are required, but does not return messages contents or route details.</p>\n","urlObject":{"path":["a","v2","rest","public","getShippersOpenForCooperation"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8ac6108d-c8ce-4e34-bcee-3a9e6795bed0"}],"id":"591c5e01-7bc1-4f94-921f-b21cc17f79fd","_postman_id":"591c5e01-7bc1-4f94-921f-b21cc17f79fd","description":""},{"name":"Account","item":[{"name":"Get Current User Profile","event":[{"listen":"test","script":{"id":"5718e638-5b42-4e71-b140-a57fff199419","exec":["var response = pm.response.json();","","if (response.status === 200 || response.status === 'success') {","    pm.test(\"data in response matches object\", () => {","        pm.expect(response.data).to.be.an(\"object\");","    });","","    pm.test(\"data in response contains a user\", () => {","        pm.expect(pm.response.text()).to.include(\"user\");","    });","    pm.test(\"user in data matches object\", () => {","        pm.expect(response.data.user).to.be.an(\"object\");","    });","","","} else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","   ","};","",""],"type":"text/javascript"}}],"id":"7cfb1285-688a-4112-b71c-919ce00d5500","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getUserProfile","description":"<p>Allows you to see basic details of current user profile.</p>\n<ul>\n<li>If successful you will receive details of your profile such as: avatar, client, company, country, id, language, mackey, name, usertype</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getUserProfile"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"c30210fd-9351-4222-84df-8d2a21eab629","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getUserProfile"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n   \"status\": \"success\",\n   \"data\": {\n      \"user\": {\n         \"id\": 11111,\n         \"name\": \"James Walker\",\n         \"avatar\": \"\",\n         \"company\": \"Northern Freight Solutions Ltd\",\n         \"hash\": \"a88a8888aaa8a888aa8a9a8a888a8aa88\",\n         \"natcomid\": \"0987654321\",\n         \"usertype\": 1,\n         \"client\": 888,\n         \"language\": \"en\",\n         \"country\": \"GBR\",\n         \"vat\": 20,\n         \"mackey\": \"AA8aAa8aAa8Aaa8AaAAaAA8aAa8aAa8Aaa8AaAAA\",\n         \"personalSettings\": {\n            \"defaultTenderStep\": 0,\n            \"gridHomePage\": true,\n            \"copyTenderComment\": true\n         }\n      }\n   }\n}"},{"id":"e8b9c87c-9acf-4c1d-8e18-9e190a41da73","name":"Invalid JWT token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"},{"key":"Extend","value":"menu","type":"text","disabled":true},{"key":"","value":"","type":"text","disabled":true}],"url":"{{host}}/a/v2/rest/public/getUserProfile"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"7cfb1285-688a-4112-b71c-919ce00d5500"},{"name":"Get Settings","event":[{"listen":"test","script":{"id":"3984d51a-0a74-4788-a7c5-913d6f5746f0","exec":["var response = pm.response.json();","var isContains = pm.response.text();","if (response.status === 200 || response.status === 'success') {","    pm.test(\"data in response matches array\", () => {","        pm.expect(response.data).to.be.an(\"array\");","    });","","   ","","} else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","   ","};",""],"type":"text/javascript"}}],"id":"02da1433-980a-4893-b44c-695f34cd5f4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getSettings","description":"<p>Returns your company-level settings list. </p>\n<ul>\n<li>if successful you will receive your company-level settings list</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getSettings"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"47789228-2735-4961-a72c-397bf4d6c755","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getSettings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"priceriseby\": {\n            \"title\": \"Automatic Price Increase Amount\",\n            \"explanation\": \"This setting allows automatic price increases for Free routes by the specified amount at the defined interval while the route remains in Free status. When creating a route, you can choose whether automatic price increase should apply.\",\n            \"values\": [\"\"]\n        },\n        \"priceriseevery\": {\n            \"title\": \"Price Increase Interval\",\n            \"explanation\": \"Defines how often the automatic price increase is applied.\",\n            \"values\": [0]\n        },\n        \"userroutenumberrequired\": {\n            \"title\": \"Route Number Required\",\n            \"explanation\": \"Requires users to specify a route number when creating a route.\",\n            \"values\": [false]\n        },\n        \"usercategoryrequired\": {\n            \"title\": \"Cargo Category Required\",\n            \"explanation\": \"Requires cargo category selection during route creation.\",\n            \"values\": [true]\n        },\n        \"lastissuedinvoicenumber\": {\n            \"title\": \"Last Issued Invoice Number\",\n            \"explanation\": \"Stores the last issued invoice number used for automatic numbering.\",\n            \"values\": [false]\n        },\n        \"routereturnrequired\": {\n            \"title\": \"Return Route Required\",\n            \"explanation\": \"Requires specifying return route information when creating a route.\",\n            \"values\": [true]\n        },\n        \"copycategorytoload\": {\n            \"title\": \"Copy Category to Load\",\n            \"explanation\": \"Automatically copies the selected cargo category into load details.\",\n            \"values\": [false]\n        },\n        \"operatorselect\": {\n            \"title\": \"Operator Selection\",\n            \"explanation\": \"Allows selecting an operator during route creation.\",\n            \"values\": [true]\n        },\n        \"premiumindicate\": {\n            \"title\": \"Premium Indicator\",\n            \"explanation\": \"Displays premium indicators for routes and tenders.\",\n            \"values\": [true]\n        },\n        \"bookingtime\": {\n            \"title\": \"Booking Time\",\n            \"explanation\": \"Defines how long a booking remains reserved.\",\n            \"values\": [10]\n        },\n        \"acceptinvitations\": {\n            \"title\": \"Accept Partnership Invitations\",\n            \"explanation\": \"Allows carriers to invite your company to cooperation.\",\n            \"values\": [false]\n        },\n        \"seekchargedetails\": {\n            \"title\": \"Require Loading Time Details\",\n            \"explanation\": \"Requires carriers to provide planned vehicle arrival time during route confirmation and allows shippers to record actual loading times.\",\n            \"values\": [true]\n        },\n        \"allowunchargeoperatorconfirm\": {\n            \"title\": \"Allow Carrier Unloading Confirmation\",\n            \"explanation\": \"If enabled, carriers are allowed to confirm unloading completion.\",\n            \"values\": [true]\n        },\n        \"acceptinvitationsemailtext\": {\n            \"title\": \"Invitation Email Text\",\n            \"explanation\": \"Specify requirements for carriers. This message will be automatically sent to potential partners requesting cooperation.\",\n            \"values\": [\"\"]\n        },\n        \"showapicodeinlist\": {\n            \"title\": \"Display API Code in Lists\",\n            \"explanation\": \"Displays user-defined route API codes within route lists.\",\n            \"values\": [false]\n        },\n        \"paymenttype\": {\n            \"title\": \"Payment Method\",\n            \"explanation\": \"Defines the default payment method.\",\n            \"values\": [2]\n        },\n        \"nds\": {\n            \"title\": \"VAT Enabled\",\n            \"explanation\": \"Indicates whether VAT is applied.\",\n            \"values\": [true]\n        },\n        \"allowautobook\": {\n            \"title\": \"Allow Auto Booking\",\n            \"explanation\": \"Allows automatic booking when a published route matches carrier vehicle availability criteria.\",\n            \"values\": [false]\n        },\n        \"prolongtenders\": {\n            \"title\": \"Automatic Tender Extension\",\n            \"explanation\": \"Extends tender duration automatically if a bid is received shortly before completion.\",\n            \"values\": [true]\n        },\n        \"forcestepquotes\": {\n            \"title\": \"Enforce Bid Step\",\n            \"explanation\": \"Accepts only bids matching the defined tender step increment.\",\n            \"values\": [true]\n        },\n        \"forcemaxquote\": {\n            \"title\": \"Limit Bids by Starting Price\",\n            \"explanation\": \"Rejects bids exceeding the starting price if defined.\",\n            \"values\": [false]\n        },\n        \"allowdistanceedit\": {\n            \"title\": \"Allow Distance Adjustment\",\n            \"explanation\": \"Allows manual correction of route distance values stored for future reuse.\",\n            \"values\": [false]\n        },\n        \"deadpathallow\": {\n            \"title\": \"Empty Mileage Tracking\",\n            \"explanation\": \"Enables tracking of empty mileage before loading.\",\n            \"values\": [false]\n        },\n        \"addionalcarexpences\": {\n            \"title\": \"Additional Vehicle Expenses\",\n            \"explanation\": \"Allows accounting for additional vehicle operating costs.\",\n            \"values\": [false]\n        },\n        \"fuelprice\": {\n            \"title\": \"Fuel Price\",\n            \"explanation\": \"Defines fuel price used for calculations.\",\n            \"values\": [0]\n        },\n        \"fuelpriceallow\": {\n            \"title\": \"Fuel Cost Tracking\",\n            \"explanation\": \"Enables fuel cost accounting.\",\n            \"values\": [false]\n        },\n        \"factfuelprice\": {\n            \"title\": \"Average Fuel Price (Actual)\",\n            \"explanation\": \"Stores actual average fuel price for a selected period.\",\n            \"values\": [0]\n        }\n    }\n}"},{"id":"c3b734d7-9586-474b-8ca8-1c9ae3ed9dea","name":"Invalid Token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/getSettings"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"02da1433-980a-4893-b44c-695f34cd5f4b"},{"name":"Update personal details","id":"de3d30d3-7f4f-459a-a1d5-419a84c0f60a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"systemlanguage\":\"ua\",\n    \"name\":\"Harry Potter\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/personalDetails","urlObject":{"path":["a","v2","rest","public","personalDetails"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"de3d30d3-7f4f-459a-a1d5-419a84c0f60a"},{"name":"Update password","id":"e54e52fb-b646-49f1-bf0a-ae932a5f6445","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"oldpassword\": \"old password\",\n    \"password1\": \"new password\",\n    \"password2\": \"new password\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/updatePassword","urlObject":{"path":["a","v2","rest","public","updatePassword"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e54e52fb-b646-49f1-bf0a-ae932a5f6445"},{"name":"User Web","id":"33e92bbb-21af-4e62-a40e-09501aa70b7e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getUserWeb","urlObject":{"path":["a","v2","rest","public","getUserWeb"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"33e92bbb-21af-4e62-a40e-09501aa70b7e"},{"name":"User Web Token","id":"f90dcf63-8021-4fe5-8b28-44e853a2e506","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getUserWebToken?token=","urlObject":{"path":["a","v2","rest","public","getUserWebToken"],"host":["{{host}}"],"query":[{"key":"token","value":""}],"variable":[]}},"response":[],"_postman_id":"f90dcf63-8021-4fe5-8b28-44e853a2e506"},{"name":"My Documents","id":"9a030f67-087c-40db-8d73-55dec1835efe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>static token you get from within the webapp</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"<p>your username or email from the app</p>\n","key":"login","type":"text","value":"{{username}}"},{"description":"<p>your password from the app</p>\n","key":"password","type":"text","value":"{{password}}"}]},"url":"{{host}}/a/v2/rest/public/myDocuments","urlObject":{"path":["a","v2","rest","public","myDocuments"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9a030f67-087c-40db-8d73-55dec1835efe"},{"name":"My Users","id":"3e358a4d-2d37-4474-92e1-16f81f2b6332","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>static token you get from within the webapp</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"<p>your username or email from the app</p>\n","key":"login","type":"text","value":"{{username}}"},{"description":"<p>your password from the app</p>\n","key":"password","type":"text","value":"{{password}}"}]},"url":"{{host}}/a/v2/rest/public/myUsers","urlObject":{"path":["a","v2","rest","public","myUsers"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3e358a4d-2d37-4474-92e1-16f81f2b6332"},{"name":"My Requisites","id":"0f0a7b90-40d3-4ed4-81c0-bddea8e66841","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>static token you get from within the webapp</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"<p>your username or email from the app</p>\n","key":"login","type":"text","value":"{{username}}"},{"description":"<p>your password from the app</p>\n","key":"password","type":"text","value":"{{password}}"}]},"url":"{{host}}/a/v2/rest/public/myRequisites","urlObject":{"path":["a","v2","rest","public","myRequisites"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0f0a7b90-40d3-4ed4-81c0-bddea8e66841"},{"name":"Api Settings","id":"5e07a121-51c7-432f-b820-2ec35ef48c79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>static token you get from within the webapp</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"<p>your username or email from the app</p>\n","key":"login","type":"text","value":"{{username}}"},{"description":"<p>your password from the app</p>\n","key":"password","type":"text","value":"{{password}}"}]},"url":"{{host}}/a/v2/rest/public/apiSettings","urlObject":{"path":["a","v2","rest","public","apiSettings"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5e07a121-51c7-432f-b820-2ec35ef48c79"},{"name":"System Documents","id":"84ddb300-8786-4326-a89b-70a8d0986ffa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>static token you get from within the webapp</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"<p>your username or email from the app</p>\n","key":"login","type":"text","value":"{{username}}"},{"description":"<p>your password from the app</p>\n","key":"password","type":"text","value":"{{password}}"}]},"url":"{{host}}/a/v2/rest/public/systemDocuments","urlObject":{"path":["a","v2","rest","public","systemDocuments"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"84ddb300-8786-4326-a89b-70a8d0986ffa"},{"name":"System Requisites","id":"a9d8fe2b-b5a7-437e-8fed-8cd39934b542","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>static token you get from within the webapp</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"<p>your username or email from the app</p>\n","key":"login","type":"text","value":"{{username}}"},{"description":"<p>your password from the app</p>\n","key":"password","type":"text","value":"{{password}}"}]},"url":"{{host}}/a/v2/rest/public/systemRequisites","urlObject":{"path":["a","v2","rest","public","systemRequisites"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a9d8fe2b-b5a7-437e-8fed-8cd39934b542"},{"name":"System Data","id":"dad71175-f59c-4cb9-818e-fd0e4bdd9737","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>static token you get from within the webapp</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"<p>your username or email from the app</p>\n","key":"login","type":"text","value":"{{username}}"},{"description":"<p>your password from the app</p>\n","key":"password","type":"text","value":"{{password}}"}]},"url":"{{host}}/a/v2/rest/public/systemData","urlObject":{"path":["a","v2","rest","public","systemData"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"dad71175-f59c-4cb9-818e-fd0e4bdd9737"},{"name":"Update My Requisites","id":"40a647d2-4aa6-495d-babe-7535a07d8d6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"title_ru\": \"Берг Денис Олегович 180\",\n  \"title_full_ru\": \"Берг Денис Олегович\",\n  \"telnum\": \"+380445689887\",\n  \"email\": \"m.sevostianov@sovtes.ua\",\n  \"website\": \"http://logist.ua\",\n  \"othercontactinfo\": \"ДОПОЛНИТЕЛЬНАЯ ИНФОРМАЦИЯ!\",\n  \"country\": \"215\",\n  \"replaced_country_select_primary_key\": \"215\",\n  \"legaladdress\": \"02068, м.Київ, Дарницький район ВУЛИЦЯ ДРАГОМАНОВА буд. 1Б кв. 51\",\n  \"factaddress\": \"г. Киев, ул. Симиренка, 8а, оф. 501\",\n  \"bankaccount\": \"5896742345\",\n  \"bankname\": \"Приватбанк\",\n  \"ifoid\": \"320569\",\n  \"natcomid\": \"3648901827\",\n  \"taxid\": \"987456123997\",\n  \"vatid\": \"869788\",\n  \"gln\": \"0\",\n  \"signer\": \"Директор\",\n  \"actsonbaseof\": \"устава\",\n  \"director\": \"Руденко\",\n  \"directorfirstname\": \"Георгий\",\n  \"directorpatronymic\": \"Владимирович\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/updateMyRequisites","urlObject":{"path":["a","v2","rest","public","updateMyRequisites"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"40a647d2-4aa6-495d-babe-7535a07d8d6f"},{"name":"Unsubscribe All Notifications","id":"456384f0-d6cf-4f31-876e-423d9b133361","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"title_ru\": \"Берг Денис Олегович 180\",\n  \"title_full_ru\": \"Берг Денис Олегович\",\n  \"telnum\": \"+380445689887\",\n  \"email\": \"m.sevostianov@sovtes.ua\",\n  \"website\": \"http://logist.ua\",\n  \"othercontactinfo\": \"ДОПОЛНИТЕЛЬНАЯ ИНФОРМАЦИЯ!\",\n  \"country\": \"215\",\n  \"replaced_country_select_primary_key\": \"215\",\n  \"legaladdress\": \"02068, м.Київ, Дарницький район ВУЛИЦЯ ДРАГОМАНОВА буд. 1Б кв. 51\",\n  \"factaddress\": \"г. Киев, ул. Симиренка, 8а, оф. 501\",\n  \"bankaccount\": \"5896742345\",\n  \"bankname\": \"Приватбанк\",\n  \"ifoid\": \"320569\",\n  \"natcomid\": \"3648901827\",\n  \"taxid\": \"987456123997\",\n  \"vatid\": \"869788\",\n  \"gln\": \"0\",\n  \"signer\": \"Директор\",\n  \"actsonbaseof\": \"устава\",\n  \"director\": \"Руденко\",\n  \"directorfirstname\": \"Георгий\",\n  \"directorpatronymic\": \"Владимирович\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/unsubscribe/{{unsubscribeToken}}","urlObject":{"path":["a","v2","rest","public","unsubscribe","{{unsubscribeToken}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"456384f0-d6cf-4f31-876e-423d9b133361"},{"name":"Partners For User","id":"16270356-e156-4a3c-a403-14b650d097d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>static token you get from within the webapp</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"<p>your username or email from the app</p>\n","key":"login","type":"text","value":"{{username}}"},{"description":"<p>your password from the app</p>\n","key":"password","type":"text","value":"{{password}}"}]},"url":"{{host}}/a/v2/rest/public/partnersForUser?id=","urlObject":{"path":["a","v2","rest","public","partnersForUser"],"host":["{{host}}"],"query":[{"key":"id","value":""}],"variable":[]}},"response":[],"_postman_id":"16270356-e156-4a3c-a403-14b650d097d4"},{"name":"System Feedback","id":"666211f6-595c-4e36-8824-d524a1c314d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{\n \"message\":\"Some message 1.12.25 14 49\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/systemFeedback","urlObject":{"path":["a","v2","rest","public","systemFeedback"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"666211f6-595c-4e36-8824-d524a1c314d1"},{"name":"Add Generic Document","id":"284f63f9-5278-42fe-b93a-43a888055f39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"entity","value":"company","type":"text","uuid":"135da04b-4e08-455f-aee8-0231974b94f1"},{"key":"entityid","value":"hash","type":"text","uuid":"65c1bf77-5d38-4989-9098-3a36b58a2f25"},{"key":"documents[]","type":"file","uuid":"cf5d692a-7658-40a4-a187-26ecf592d3ca","src":"/Users/sofiabiserova/Downloads/Тестовий документ від перевізника 1.pdf"}]},"url":"{{host}}/a/v2/rest/public/addGenericDocument","urlObject":{"path":["a","v2","rest","public","addGenericDocument"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"284f63f9-5278-42fe-b93a-43a888055f39"},{"name":"Public Offer","id":"acf45530-7506-41e6-b482-4f145fc72e06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/publicOffer","urlObject":{"path":["a","v2","rest","public","publicOffer"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"acf45530-7506-41e6-b482-4f145fc72e06"},{"name":"Agree Public Offer","id":"fa3ddc0b-8043-4e93-9bd4-2d114e344b04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"agree","value":"true","type":"text","uuid":"ec108483-7634-4bf2-a04d-a4b7ffda1a69"}]},"url":"{{host}}/a/v2/rest/public/agreePublicOffer","urlObject":{"path":["a","v2","rest","public","agreePublicOffer"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fa3ddc0b-8043-4e93-9bd4-2d114e344b04"},{"name":"User Agreement","id":"27ebfbb7-3283-477e-b5d0-02a21cb77a61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>static token you get from within the webapp</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"<p>your username or email from the app</p>\n","key":"login","type":"text","value":"{{username}}"},{"description":"<p>your password from the app</p>\n","key":"password","type":"text","value":"{{password}}"}]},"url":"{{host}}/a/v2/rest/public/userAgreement","urlObject":{"path":["a","v2","rest","public","userAgreement"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"27ebfbb7-3283-477e-b5d0-02a21cb77a61"},{"name":"Add User","id":"3791c423-e717-4ed6-8b3d-04e0013030d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>Access token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"username\": \"addUserTest5\",\n    \"name\":\"addUserTest5\",\n    \"password\":\"123456\",\n    \"confirmation_password\":\"123456\",\n    \"cellnum\":\"+3805000000\",\n    \"email\": \"addUserTest2@gmail.com\",\n    \"v3_frontend\": 1\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/addUser","urlObject":{"path":["a","v2","rest","public","addUser"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3791c423-e717-4ed6-8b3d-04e0013030d0"},{"name":"Set Partners For User","id":"6889eb6b-3062-4d99-bd60-eb5f6886ef9a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>Access token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n \"clienthashes\": [\n \"\",\n \"\"\n ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/setPartnersForUser?id=","urlObject":{"path":["a","v2","rest","public","setPartnersForUser"],"host":["{{host}}"],"query":[{"key":"id","value":""}],"variable":[]}},"response":[],"_postman_id":"6889eb6b-3062-4d99-bd60-eb5f6886ef9a"},{"name":"Get My Notifications","id":"e10560e1-c8b9-4eb9-a899-1f845cbc3b5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/myNotifications","urlObject":{"path":["a","v2","rest","public","myNotifications"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e10560e1-c8b9-4eb9-a899-1f845cbc3b5f"},{"name":"Post Send Telegram Deeplink To Phone","id":"bdb6a63c-a5da-4d5b-b17e-f347ee39a51f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{\n \"cellnum\": \"+\",\n \"contactmedium\": \"Telegram\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/sendTelegramDeeplinkToPhone","urlObject":{"path":["a","v2","rest","public","sendTelegramDeeplinkToPhone"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bdb6a63c-a5da-4d5b-b17e-f347ee39a51f"},{"name":"Get Telegram Settings","id":"2f736c95-f399-4546-9330-108e958960c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/getTelegramSettings","urlObject":{"path":["a","v2","rest","public","getTelegramSettings"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2f736c95-f399-4546-9330-108e958960c1"},{"name":"Post Set My Notifications","id":"5ce6137b-2680-4152-a842-7bd27b5728ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"notifications\":[\n      {\n         \"id\":113,\n         \"title\":\"Вантаж прийнято з зауваженнями\",\n         \"media\":{\n            \"email\":true,\n            \"telegram\":false,\n            \"api\":false\n         }\n      }\n   ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/setMyNotifications","urlObject":{"path":["a","v2","rest","public","setMyNotifications"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5ce6137b-2680-4152-a842-7bd27b5728ce"},{"name":"Post Set WebHook","id":"21db2369-3543-4983-9655-362a4732a58d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{\n \"webhookurl\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/setWebHook","urlObject":{"path":["a","v2","rest","public","setWebHook"],"host":["{{host}}"],"query":[{"disabled":true,"key":"","value":""},{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[],"_postman_id":"21db2369-3543-4983-9655-362a4732a58d"},{"name":"Get Potential Geographies","id":"002be404-98f2-4aa6-86cd-84439dc0ec2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/getPotentialGeographies","urlObject":{"path":["a","v2","rest","public","getPotentialGeographies"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"002be404-98f2-4aa6-86cd-84439dc0ec2f"},{"name":"Get Advanced Settings","id":"d3ff9488-00ce-4b11-87f4-e085bf1385e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getAdvancedSettings","urlObject":{"path":["a","v2","rest","public","getAdvancedSettings"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d3ff9488-00ce-4b11-87f4-e085bf1385e8"},{"name":"Post Save Advanced Settings","id":"4e217b23-4fbc-41da-8566-9d1b416b61dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{\n \"deadpathallow\": true,\n \"fuelpriceallow\": true,\n \"addionalcarexpences\":\"false\",\n \"freeTrDurationHours\": 2,\n \"autosignFreeTransportPublish\":\"true\",\n \"onlyPartnerOpenTenders\":\"true\",\n \"orderlist\":\"true\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/saveAdvancedSettings","urlObject":{"path":["a","v2","rest","public","saveAdvancedSettings"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4e217b23-4fbc-41da-8566-9d1b416b61dc"},{"name":"Get Registered Vehicles","id":"aa8e5806-fe3d-4133-aa7b-a5c6e4ad2053","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/registeredVehicles?natcomid=natcomid","urlObject":{"path":["a","v2","rest","public","registeredVehicles"],"host":["{{host}}"],"query":[{"key":"natcomid","value":"natcomid"}],"variable":[]}},"response":[],"_postman_id":"aa8e5806-fe3d-4133-aa7b-a5c6e4ad2053"},{"name":"Get Vehicle Owner","id":"2bbc4cc4-151c-4e8d-ba53-84764deabb30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/vehicleOwner?number=number","urlObject":{"path":["a","v2","rest","public","vehicleOwner"],"host":["{{host}}"],"query":[{"key":"number","value":"number"}],"variable":[]}},"response":[],"_postman_id":"2bbc4cc4-151c-4e8d-ba53-84764deabb30"},{"name":"Get Payment Requests","id":"f9753503-b20f-47fa-931b-10499b057984","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/paymentRequests","urlObject":{"path":["a","v2","rest","public","paymentRequests"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f9753503-b20f-47fa-931b-10499b057984"},{"name":"Get Payment Request","id":"94df3c9f-ade7-4b29-8726-f29d21da2321","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/paymentRequest?request=uuid","urlObject":{"path":["a","v2","rest","public","paymentRequest"],"host":["{{host}}"],"query":[{"key":"request","value":"uuid"}],"variable":[]}},"response":[],"_postman_id":"94df3c9f-ade7-4b29-8726-f29d21da2321"},{"name":"Get Notification Filter","id":"90c7c910-4f05-440b-9b9f-2024de90f6a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getNotificationFilter","urlObject":{"path":["a","v2","rest","public","getNotificationFilter"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"90c7c910-4f05-440b-9b9f-2024de90f6a2"},{"name":"Get Payment Request Potential Routes","id":"fa063797-44cc-42e7-8462-65389779b3e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/paymentRequestPotentialRoutes?client=clienthash","urlObject":{"path":["a","v2","rest","public","paymentRequestPotentialRoutes"],"host":["{{host}}"],"query":[{"key":"client","value":"clienthash"}],"variable":[]}},"response":[],"_postman_id":"fa063797-44cc-42e7-8462-65389779b3e5"},{"name":"Get Payment Request Xls Export","id":"1fea44d4-1df6-4746-96e8-3c1ec9e96eb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/paymentRequestXlsExport?request=uuid","urlObject":{"path":["a","v2","rest","public","paymentRequestXlsExport"],"host":["{{host}}"],"query":[{"key":"request","value":"uuid"}],"variable":[]}},"response":[],"_postman_id":"1fea44d4-1df6-4746-96e8-3c1ec9e96eb7"},{"name":"Post Payment Request Create","id":"7ef960a3-4cde-4963-8812-562207d08fd9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n \"client\":\"{{clienthash}}\",\n \"title\":\"1\",\n \"routes\": [\"111-04-15\", \"222-04-15\", \"333-04-15\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/paymentRequestCreate","urlObject":{"path":["a","v2","rest","public","paymentRequestCreate"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7ef960a3-4cde-4963-8812-562207d08fd9"},{"name":"Post Payment Request Delete","id":"502c71a2-858e-450b-813f-49ccc295c8f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/paymentRequestDelete?request=uuid","urlObject":{"path":["a","v2","rest","public","paymentRequestDelete"],"host":["{{host}}"],"query":[{"key":"request","value":"uuid"}],"variable":[]}},"response":[],"_postman_id":"502c71a2-858e-450b-813f-49ccc295c8f7"},{"name":"Put Payment Request Update","id":"8ae450ea-180a-4310-970c-347859972710","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{ \n    \"request\":\"uuid\", \n    \"routes\":[\"111-11-25\",\"222-02-20\",\"333-02-20\"] \n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/paymentRequestUpdate","urlObject":{"path":["a","v2","rest","public","paymentRequestUpdate"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8ae450ea-180a-4310-970c-347859972710"},{"name":"Post Payment Request Paid","id":"365bf324-9798-46b5-b15f-9c70a3c38156","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{ \n    \"request\":\"uuid\", \n    \"date\":\"2025-12-19\" }","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/paymentRequestPaid","urlObject":{"path":["a","v2","rest","public","paymentRequestPaid"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"365bf324-9798-46b5-b15f-9c70a3c38156"},{"name":"Get Invoices Unpaid","id":"195425db-d579-422f-9891-1f90b3a7d196","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/invoicesUnpaid","urlObject":{"path":["a","v2","rest","public","invoicesUnpaid"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"195425db-d579-422f-9891-1f90b3a7d196"},{"name":"Get Invoices Paid","id":"293bc0ec-1b38-434c-8bf4-b879089b9b37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/invoicesPaid","urlObject":{"path":["a","v2","rest","public","invoicesPaid"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"293bc0ec-1b38-434c-8bf4-b879089b9b37"},{"name":"Get External Tokens","id":"b7d0d7df-a1ed-4e06-bb91-71421576fed5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/externalTokens","urlObject":{"path":["a","v2","rest","public","externalTokens"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b7d0d7df-a1ed-4e06-bb91-71421576fed5"},{"name":"Get invoice","id":"22c2c1c8-a965-415c-b403-3441bdb1f68a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/invoice?invoice=invoicePeriodic","urlObject":{"path":["a","v2","rest","public","invoice"],"host":["{{host}}"],"query":[{"key":"invoice","value":"invoicePeriodic"}],"variable":[]}},"response":[],"_postman_id":"22c2c1c8-a965-415c-b403-3441bdb1f68a"},{"name":"Get invoice Document","id":"b34c75c5-9192-45c3-bdea-97c7f1146ed7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/invoiceDocument?invoice=invoicePeriodic","urlObject":{"path":["a","v2","rest","public","invoiceDocument"],"host":["{{host}}"],"query":[{"key":"invoice","value":"invoicePeriodic"}],"variable":[]}},"response":[],"_postman_id":"b34c75c5-9192-45c3-bdea-97c7f1146ed7"},{"name":"Post invoice Delete","id":"3804b26f-22f5-4122-aee1-386b25045377","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/invoiceDelete?invoice=invoicePeriodic","urlObject":{"path":["a","v2","rest","public","invoiceDelete"],"host":["{{host}}"],"query":[{"key":"invoice","value":"invoicePeriodic"}],"variable":[]}},"response":[],"_postman_id":"3804b26f-22f5-4122-aee1-386b25045377"},{"name":"Get Tariffs","id":"503c78c3-7e98-4073-88b3-8bfb947e4e7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/tariffs","urlObject":{"path":["a","v2","rest","public","tariffs"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"503c78c3-7e98-4073-88b3-8bfb947e4e7d"},{"name":"Post SetTariff","id":"ab8a5019-f3bc-4314-8b7a-99e17687afce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/setTariff?tariff=1","urlObject":{"path":["a","v2","rest","public","setTariff"],"host":["{{host}}"],"query":[{"key":"tariff","value":"1"}],"variable":[]}},"response":[],"_postman_id":"ab8a5019-f3bc-4314-8b7a-99e17687afce"},{"name":"Post setTrial","id":"3b9bd435-72c2-49cd-91e6-af753c569e4c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/setTrial?tariff=3","urlObject":{"path":["a","v2","rest","public","setTrial"],"host":["{{host}}"],"query":[{"key":"tariff","value":"3"}],"variable":[]}},"response":[],"_postman_id":"3b9bd435-72c2-49cd-91e6-af753c569e4c"},{"name":"POST payment","id":"8f68f858-0b52-4633-a81c-3960ac98ca4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/payment?tariff=3&pack=3","urlObject":{"path":["a","v2","rest","public","payment"],"host":["{{host}}"],"query":[{"key":"tariff","value":"3"},{"key":"pack","value":"3"}],"variable":[]}},"response":[],"_postman_id":"8f68f858-0b52-4633-a81c-3960ac98ca4d"},{"name":"GET allMessages","id":"8fbace83-a236-468a-9c7d-1d4364393f8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/allMessages","urlObject":{"path":["a","v2","rest","public","allMessages"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8fbace83-a236-468a-9c7d-1d4364393f8d"},{"name":"GET onlinePaymentForm","event":[{"listen":"test","script":{"id":"ec01593b-f90c-4f62-958d-3d4e2d85dda5","exec":["// Visualization Script","// Visualization Script","const template = `","<style>","    body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; padding: 20px; background: #1e1e1e; color: #d4d4d4; }","    .container { max-width: 900px; margin: 0 auto; }","    .header { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); padding: 20px; border-radius: 8px; margin-bottom: 20px; }","    .header h1 { margin: 0; color: #fff; font-size: 1.5em; }","    .status-badge { display: inline-block; padding: 6px 16px; border-radius: 20px; font-weight: bold; margin-top: 10px; }","    .status-success { background: #10b981; color: #fff; }","    .status-error { background: #ef4444; color: #fff; }","    .card { background: #252526; border-radius: 8px; padding: 20px; margin-bottom: 20px; border: 1px solid #3c3c3c; }","    .card-title { color: #569cd6; font-size: 1.1em; font-weight: 600; margin-bottom: 15px; border-bottom: 1px solid #3c3c3c; padding-bottom: 10px; }","    .field { margin-bottom: 15px; }","    .field-label { color: #9cdcfe; font-size: 0.85em; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px; }","    .field-value { background: #1e1e1e; padding: 12px; border-radius: 4px; font-family: 'Consolas', 'Monaco', monospace; font-size: 0.9em; word-break: break-all; border: 1px solid #3c3c3c; }","    .structure-tree { background: #1e1e1e; padding: 15px; border-radius: 4px; font-family: 'Consolas', 'Monaco', monospace; font-size: 0.85em; border: 1px solid #3c3c3c; }","    .tree-key { color: #9cdcfe; }","    .tree-string { color: #ce9178; }","    .tree-bracket { color: #ffd700; }","    .tree-indent { margin-left: 20px; }","    .info-row { display: flex; gap: 20px; flex-wrap: wrap; }","    .info-item { flex: 1; min-width: 200px; }","</style>","","<div class=\"container\">","    <div class=\"header\">","        <h1>Payment Form Response</h1>","        <span class=\"status-badge {{statusClass}}\">{{status}}</span>","    </div>","    ","    <div class=\"card\">","        <div class=\"card-title\">Response Data</div>","        <div class=\"info-row\">","            <div class=\"info-item\">","                <div class=\"field\">","                    <div class=\"field-label\">Data (Base64 Encoded)</div>","                    <div class=\"field-value\">{{dataValue}}</div>","                </div>","            </div>","        </div>","        <div class=\"field\">","            <div class=\"field-label\">Signature</div>","            <div class=\"field-value\">{{signature}}</div>","        </div>","        <div class=\"field\">","            <div class=\"field-label\">Data Length</div>","            <div class=\"field-value\">{{dataLength}} characters</div>","        </div>","    </div>","    ","    <div class=\"card\">","        <div class=\"card-title\">Response Structure</div>","        <div class=\"structure-tree\">","            <div><span class=\"tree-bracket\">{</span></div>","            <div class=\"tree-indent\"><span class=\"tree-key\">\"status\"</span>: <span class=\"tree-string\">\"{{status}}\"</span>,</div>","            <div class=\"tree-indent\"><span class=\"tree-key\">\"data\"</span>: <span class=\"tree-bracket\">{</span></div>","            <div class=\"tree-indent tree-indent\"><span class=\"tree-key\">\"data\"</span>: <span class=\"tree-string\">\"[Base64 String - {{dataLength}} chars]\"</span>,</div>","            <div class=\"tree-indent tree-indent\"><span class=\"tree-key\">\"signature\"</span>: <span class=\"tree-string\">\"{{signature}}\"</span></div>","            <div class=\"tree-indent\"><span class=\"tree-bracket\">}</span></div>","            <div><span class=\"tree-bracket\">}</span></div>","        </div>","    </div>","</div>","`;","","function createPayload() {","    const response = pm.response.json();","    const status = response.status || 'unknown';","    const dataValue = response.data && response.data.data ? response.data.data : 'N/A';","    const signature = response.data && response.data.signature ? response.data.signature : 'N/A';","    ","    return {","        status: status,","        statusClass: status === 'success' ? 'status-success' : 'status-error',","        dataValue: dataValue.length > 100 ? dataValue.substring(0, 100) + '...' : dataValue,","        signature: signature,","        dataLength: dataValue !== 'N/A' ? dataValue.length : 0","    };","}","","pm.visualizer.set(template, createPayload());"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"e128d27f-c841-4718-8a40-9572387a5780","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/onlinePaymentForm?payment=orderID","urlObject":{"path":["a","v2","rest","public","onlinePaymentForm"],"host":["{{host}}"],"query":[{"key":"payment","value":"orderID"}],"variable":[]}},"response":[],"_postman_id":"e128d27f-c841-4718-8a40-9572387a5780"},{"name":"GET paymentStatus","id":"65c1e469-41d2-44da-9962-3294ad923183","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/paymentStatus?payment=orderID","urlObject":{"path":["a","v2","rest","public","paymentStatus"],"host":["{{host}}"],"query":[{"key":"payment","value":"orderID"}],"variable":[]}},"response":[],"_postman_id":"65c1e469-41d2-44da-9962-3294ad923183"},{"name":"POST makeInvoice","id":"4af20ae3-ad59-4c4e-9ec8-21eb5c30efa7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/makeInvoice?payment=orderID","urlObject":{"path":["a","v2","rest","public","makeInvoice"],"host":["{{host}}"],"query":[{"key":"payment","value":"orderID"}],"variable":[]}},"response":[],"_postman_id":"4af20ae3-ad59-4c4e-9ec8-21eb5c30efa7"},{"name":"Get Public Website","id":"fb7983a3-9712-4210-894e-2e1972b474b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/publicWebsite","urlObject":{"path":["a","v2","rest","public","publicWebsite"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fb7983a3-9712-4210-894e-2e1972b474b1"},{"name":"Update Public Website","id":"0995d535-d1a3-4796-bb1e-db8876bcf813","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","description":"<p>Access token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"companytitle\":\"Test\",\n    \"telnum\":\"+380500000000\",\n    \"maincellphone\": \"+380500000000\",\n    \"slogan\": \"slogan\",\n    \"companydescription\": \"companydescription\",\n    \"companyfoundingyear\": \"2990\",\n    \"companysize\": \"1\",\n    \"sovtesadvantages\": \"dasdas\",\n    \"sovtesdisadvantages\":\"asdasd\",\n    \"linkedin\":\"asdas\",\n    \"facebook\": \"asdasd\",\n    \"youtube\":\"youtube\",\n    \"larditrans\":\"larditrans\",\n    \"della\":\"della\",\n    \"website\":\"website\",\n    \"companyaboutphoto1label\":\"asdasd\",\n    \"companyaboutphoto2label\":\"companyaboutphoto2label\",\n    \"companyaboutphoto3label\":\"companyaboutphoto3label\",\n    \"expeditorinsurancelimit\":\"asdasd\",\n    \"inceptionyear\":\"2222\",\n    \"cartype\":[ 1,2]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/updatePublicWebsite","urlObject":{"path":["a","v2","rest","public","updatePublicWebsite"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0995d535-d1a3-4796-bb1e-db8876bcf813"},{"name":"Get User Measure Settings","id":"259ca5f5-3e11-49bc-b3ee-4d8451130793","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/userMeasureSettings","urlObject":{"path":["a","v2","rest","public","userMeasureSettings"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"259ca5f5-3e11-49bc-b3ee-4d8451130793"},{"name":"Post Update User Measure Settings","id":"d7eb7220-845f-4951-92be-584def1262f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{ \"distance_unit\": \"km\" }","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/updateUserMeasureSettings","urlObject":{"path":["a","v2","rest","public","updateUserMeasureSettings"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d7eb7220-845f-4951-92be-584def1262f4"},{"name":"GET User Mfa Settings","id":"90f1e07b-12db-4b45-bb8e-24230fe94641","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/userMfaSettings","urlObject":{"path":["a","v2","rest","public","userMfaSettings"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"90f1e07b-12db-4b45-bb8e-24230fe94641"},{"name":"POST User Mfa Enable","id":"f0c685e1-fd3f-44ea-8f8c-bdeaa36d7f9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"mfa_method\": 1\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/userMfaEnable","urlObject":{"path":["a","v2","rest","public","userMfaEnable"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f0c685e1-fd3f-44ea-8f8c-bdeaa36d7f9b"},{"name":"POST User Mfa Confirm","id":"d6f3c8ba-9c54-4f3b-b8a8-9a9ce61d333b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{ \"mfa_method\": 1, \"code\": \"980756\" }","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/userMfaConfirm","urlObject":{"path":["a","v2","rest","public","userMfaConfirm"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d6f3c8ba-9c54-4f3b-b8a8-9a9ce61d333b"},{"name":"POST Auth Validate Mfa","id":"ff6a3925-5a5e-4a28-97f2-22d10726c517","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzUxMiJ9.eyJzdWIiOiJtZmEiLCJpYXQiOjE3NzE2MDUxMjEsImV4cCI6MTc3MTYwNTQyMSwidXNlciI6MjM4NH0.nYpTBRIpwhTXW3IN0K_dKj1M0kpex1oIoWX9rcENIEfI1vzWHSUpgw5lGaUlazcJVhbzlJJ0pB8INnWFRxsdFT_JTISabJe14agLO683nqLYGtKWpEduLG2O51ZhWA6ff_3AZtuPZw5vJfIvsOSS03oe3XQnkpHC3eI5CWaLBCufOil_-o0rZtz7loY1YvOETJPIZMi7eT13X93HpT8elD_GfL2RUakWEaPuhJPFpuewRf8-N5-9HilLKuyFoPJzTm__LJOOrzY8Kd0J3x29T3pCYuTWBS6MKrRuDMlgy2cd00BZ9o01iR6Zs5Bzd_CLtbZ7HzE7mSCJ2dwZ3cQkQg","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"code\": \"811315\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/authValidateMfa","urlObject":{"path":["a","v2","rest","public","authValidateMfa"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ff6a3925-5a5e-4a28-97f2-22d10726c517"},{"name":"POST User Mfa Disable","id":"3e3e5439-4d9c-4a8d-a38e-bfe2f8ef69a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzUxMiJ9.eyJzdWIiOiJhdXRoIiwiaWF0IjoxNzcxNjA1MTUxLCJleHAiOjE3NzE2NDExNTEsInVzZXIiOnsiaWQiOjIzODQsImNsaWVudCI6MTgwLCJuYW1lIjoic3VwZXJ1c2VyIiwidXNlcnR5cGUiOjIsInN5c3RlbWxhbmd1YWdlIjoxfX0.u-2Xzfx5a9BR2jgEjGUxPLMARqFVYeSQW_5C5M0WcMy5EsuwnlDPVl18MVxG9kUrSOLpD2CKmXDofQM_NTBZCc-qHzVOwXBcHb2PDl9nwUrdSJY7gDsJ9AHVAF7Dbe37dN_BDxMj8UQfGRVdpde2_OIOBRn2RfykWId09cv10BS-CUNG4s7G_7sdbRn4x0VsiyFuvi8ysw2UJEfMo_t4j4XVLm-sHd88NsbeAB8Y41Dv8X6HILHcQGQga75LsHbJfBeS7hJfQ8rxsjw9CZ08FylONEv6L0dyoCHclA4B326SMQArMdJLAL5tXeMgsdDShkjOLSGQOZ9pHSeIOPF8FA","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/a/v2/rest/public/userMfaDisable","urlObject":{"path":["a","v2","rest","public","userMfaDisable"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3e3e5439-4d9c-4a8d-a38e-bfe2f8ef69a8"},{"name":"POST publishPublicWebsite","id":"f417dd24-26b1-4b9d-8fd9-5327905ca808","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/publishPublicWebsite","urlObject":{"path":["a","v2","rest","public","publishPublicWebsite"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f417dd24-26b1-4b9d-8fd9-5327905ca808"},{"name":"GET Onboarding Current State","id":"4d36a7e9-2cbf-44db-bb93-f75ef6d5e0cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/onboardingCurrentState","urlObject":{"path":["a","v2","rest","public","onboardingCurrentState"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4d36a7e9-2cbf-44db-bb93-f75ef6d5e0cf"},{"name":"POST Onboarding Init","id":"4f23c8ff-6a48-4f06-ba2c-cc2085d2ebb3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{staticToken}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/onboardingInit","urlObject":{"path":["a","v2","rest","public","onboardingInit"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4f23c8ff-6a48-4f06-ba2c-cc2085d2ebb3"},{"name":"POST Onboarding","id":"ade77e60-13d0-4fc5-98db-faee337561e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"testfirst\",\n    \"last_name\": \"testlast\",\n    \"email\": \"testfirst@example.com\",\n    \"telnum\": \"+3805012344567\",\n    \"natcomid\": \"604202601\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/onboarding","urlObject":{"path":["a","v2","rest","public","onboarding"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ade77e60-13d0-4fc5-98db-faee337561e0"},{"name":"POST Onboarding Confirm Company","id":"eea91c15-ba65-42dd-81c9-3a14d11f1ecc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/onboardingConfirmCompany","urlObject":{"path":["a","v2","rest","public","onboardingConfirmCompany"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"eea91c15-ba65-42dd-81c9-3a14d11f1ecc"},{"name":"POST Onboarding Retry","id":"d494da47-c83b-4fe8-a51e-50245e479f74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"natcomid\":\"12345678\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/onboardingRetry","urlObject":{"path":["a","v2","rest","public","onboardingRetry"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d494da47-c83b-4fe8-a51e-50245e479f74"},{"name":"POST Onboarding Confirm Telnum","id":"8876c5a7-07df-4d82-be38-36928aa16119","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"code\":593522\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/onboardingConfirmTelnum","urlObject":{"path":["a","v2","rest","public","onboardingConfirmTelnum"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8876c5a7-07df-4d82-be38-36928aa16119"},{"name":"POST Onboarding Resend Sms","id":"1c987120-a9ec-4810-a72f-7b89aaac5f0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"new\":\"+1234567890\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/onboardingResendSms","urlObject":{"path":["a","v2","rest","public","onboardingResendSms"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1c987120-a9ec-4810-a72f-7b89aaac5f0c"},{"name":"POST Onboarding Confirm Email","id":"3a8ade81-36a7-41b3-b2ef-bfc1f26a7d1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"code\":593522\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/onboardingConfirmEmail","urlObject":{"path":["a","v2","rest","public","onboardingConfirmEmail"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3a8ade81-36a7-41b3-b2ef-bfc1f26a7d1d"},{"name":"POST Onboarding Resend Email","id":"6a8c83c0-7aba-4722-97ac-3d9b31d3844a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"new\":\"new_email@example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/onboardingResendEmail","urlObject":{"path":["a","v2","rest","public","onboardingResendEmail"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6a8c83c0-7aba-4722-97ac-3d9b31d3844a"},{"name":"POST Onboarding Registration","id":"9ce24717-9840-4ad7-99f4-0d4533858f05","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"login\":\"login\",\n    \"password\":\"123456\",\n    \"confirm_password\":\"123456\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/a/v2/rest/public/onboardingRegistration","urlObject":{"path":["a","v2","rest","public","onboardingRegistration"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9ce24717-9840-4ad7-99f4-0d4533858f05"}],"id":"fe90cf2d-91e5-4030-8b5f-54c40270033b","_postman_id":"fe90cf2d-91e5-4030-8b5f-54c40270033b","description":""},{"name":"Aux","item":[{"name":"Get Notification Summary","event":[{"listen":"test","script":{"id":"1685f872-f858-44ad-903b-b6c79d47618e","exec":["var response = pm.response.json();","var isContains = pm.response.text();","","if (response.status === 200 || response.status === 'success'){","","pm.test(\"data in response matches object\", () => {","  pm.expect(response.data).to.be.an(\"object\");","});","","pm.test(\"data have key unreadMessages\", () => {","  pm.expect(isContains).to.include(\"unreadMessages\");","});","pm.test(\"data have key attentionRoutes\", () => {","  pm.expect(isContains).to.include(\"attentionRoutes\");","});","}else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","}","",""],"type":"text/javascript"}}],"id":"e822bced-5fa0-4546-8404-440015517bc2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getNotificationStatus","description":"<p>Returns the summary of notifications. Includes unread messages and routes, in which actions are required.</p>\n<ul>\n<li>if successful you will receive all your notifications</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>(!) NOTE: Endpoint returns the number of notifications and number of routes in which actions are required, but does not return messages contents or route details.</p>\n","urlObject":{"path":["a","v2","rest","public","getNotificationStatus"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"077c0704-bd6d-4e7a-ab7f-eff161549d10","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getNotificationStatus"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"unreadMessages\": 0,\n        \"attentionRoutes\": 5\n    }\n}"},{"id":"a764aff8-036d-48f7-a94f-f45f079f8937","name":"Success, but no new notifications","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getNotificationStatus"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": []\n}"}],"_postman_id":"e822bced-5fa0-4546-8404-440015517bc2"},{"name":"Get Language List","event":[{"listen":"test","script":{"id":"8193032a-b2c6-4043-8c9d-319a0848cde2","exec":["var response = pm.response.json();","var isContains = pm.response.text();","","if (response.status === 200 || response.status === 'success') {","    pm.test(\"data in response matches object\", () => {","        pm.expect(response.data).to.be.an(\"object\");","    });","","} else {","   ","};"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"41d54902-3e32-4a3b-a298-935108b9ab3f","exec":[""],"type":"text/javascript"}}],"id":"b0c3b848-6482-4dbc-a58d-4c4a0c068305","protocolProfileBehavior":{"disableBodyPruning":true,"strictSSL":false},"request":{"method":"GET","header":[],"url":"{{host}}/a/v2/rest/public/listLanguages","description":"<p>Returns the list of languages, supported by the app.</p>\n<p>(!) NOTE: Does not require JWT or static token.</p>\n","urlObject":{"path":["a","v2","rest","public","listLanguages"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"158a1d5b-2211-498a-baa6-fdc299533cf6","name":"Success","originalRequest":{"method":"GET","header":[],"url":"{{host}}/a/v2/rest/public/listLanguages"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Thu, 26 Feb 2026 13:48:50 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"sovtes-session=96n9ho5076e2mjlfi3hjq4sorg; expires=Thu, 26-Feb-2026 23:48:50 GMT; Max-Age=36000; path=/; domain=.test.sovtes.ua; secure; HttpOnly"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"},{"key":"Strict-Transport-Security","value":"max-age=31536000;"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"title\": \"Українська\",\n            \"id\": \"ua\",\n            \"title_iso2\": \"ukr\"\n        },\n        {\n            \"title\": \"English\",\n            \"id\": \"en\",\n            \"title_iso2\": \"eng\"\n        },\n        {\n            \"title\": \"Deutsch\",\n            \"id\": \"de\",\n            \"title_iso2\": \"deu\"\n        },\n        {\n            \"title\": \"Polski\",\n            \"id\": \"pl\",\n            \"title_iso2\": \"pol\"\n        },\n        {\n            \"title\": \"Slovenščina\",\n            \"id\": \"sl\",\n            \"title_iso2\": \"slv\"\n        },\n        {\n            \"title\": \"Français\",\n            \"id\": \"fr\",\n            \"title_iso2\": \"fra\"\n        },\n        {\n            \"title\": \"Eesti\",\n            \"id\": \"et\",\n            \"title_iso2\": \"est\"\n        },\n        {\n            \"title\": \"Русский\",\n            \"id\": \"ru\",\n            \"title_iso2\": \"rus\"\n        }\n    ]\n}"}],"_postman_id":"b0c3b848-6482-4dbc-a58d-4c4a0c068305"},{"name":"Get Countries","event":[{"listen":"test","script":{"id":"0cc1edf5-9623-4c48-9cee-853729452df3","exec":["var response = pm.response.json();","var isContains = pm.response.text();","if (response.status === 200 || response.status === 'success') {","    pm.test(\"data in response matches array\", () => {","        pm.expect(response.data).to.be.an(\"array\");","    });","","   ","","} else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","   ","};",""],"type":"text/javascript"}}],"id":"ca6483b3-f03b-4bb9-9cd4-0ce55d7e3302","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getCountry?byCheckpoint={{countriesByCheckpoint}}&byCompany={{countriesByCheckpointCompany}}&byTown={{countriesByCheckpointTown}}","description":"<p>Returns the list of countries, depending on the passed parameters.</p>\n<ul>\n<li>if successful you will receive list of countries, depending of the list parameters</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>(!) NOTE: Only for shippers</p>\n","urlObject":{"path":["a","v2","rest","public","getCountry"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Optional bool. False (default): returns the list of all countries. True: returns the list of countries in which loading/unloading checkpoints of current user company are present</p>\n","type":"text/plain"},"key":"byCheckpoint","value":"{{countriesByCheckpoint}}"},{"description":{"content":"<p>Optional int. Id of the company that owns the loading/unloading checkpoint . Returns the list of counties in which loading/unloading checkpoints of passed company are present. <code>byCheckpoint</code> parameter must be on</p>\n","type":"text/plain"},"key":"byCompany","value":"{{countriesByCheckpointCompany}}"},{"description":{"content":"<p>Optional int. Id of the town with loading/unloading checkpoints. Returns the list of countries in which there are loading/unloading checkpoints in the passed town. <code>byCheckpoint</code> parameter must be on</p>\n","type":"text/plain"},"key":"byTown","value":"{{countriesByCheckpointTown}}"}],"variable":[]}},"response":[{"id":"f67aa487-19a9-4e4a-a5f0-9e9f42584e86","name":"Success (No parameters passed)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token\n","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCountry","host":["{{host}}"],"path":["a","v2","rest","public","getCountry"],"query":[{"key":"byCheckpoint","value":"true","description":"Optional bool. False (default): returns the list of all countries. True: returns the list of countries in which loading/unloading checkpoints of current user company are present","disabled":true},{"key":"byCompany","value":"{{countriesByCheckpointCompany}}","description":"Optional int. Id of the company that owns the loading/unloading checkpoint . Returns the list of counties in which loading/unloading checkpoints of passed company are present. `byCheckpoint` parameter must be on","disabled":true},{"key":"byTown","value":"{{countriesByCheckpointTown}}","description":"Optional int. Id of the town with loading/unloading checkpoints. Returns the list of countries in which there are loading/unloading checkpoints in the passed town. `byCheckpoint`parameter must be on","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1,\n            \"title\": \"Австралия\",\n            \"titleLatin\": \"Australia\",\n            \"isoNum\": 36\n        },\n        {\n            \"id\": 2,\n            \"title\": \"Австрия\",\n            \"titleLatin\": \"Austria\",\n            \"isoNum\": 40\n        },\n        {\n            \"id\": 3,\n            \"title\": \"Азербайджан\",\n            \"titleLatin\": \"Azerbaijan\",\n            \"isoNum\": 31\n        },\n        {\n            \"id\": 4,\n            \"title\": \"Албания\",\n            \"titleLatin\": \"Albania\",\n            \"isoNum\": 8\n        },\n        {\n            \"id\": 5,\n            \"title\": \"Алжир\",\n            \"titleLatin\": \"Algeria\",\n            \"isoNum\": 12\n        },\n        {\n            \"id\": 6,\n            \"title\": \"Американское Самоа\",\n            \"titleLatin\": \"American Samoa\",\n            \"isoNum\": 16\n        },\n        {\n            \"id\": 7,\n            \"title\": \"Ангилья\",\n            \"titleLatin\": \"Anguilla\",\n            \"isoNum\": 660\n        },\n        {\n            \"id\": 8,\n            \"title\": \"Ангола\",\n            \"titleLatin\": \"Angola\",\n            \"isoNum\": 24\n        },\n        {\n            \"id\": 9,\n            \"title\": \"Андорра\",\n            \"titleLatin\": \"Andorra\",\n            \"isoNum\": 20\n        },\n        {\n            \"id\": 10,\n            \"title\": \"Антарктида\",\n            \"titleLatin\": \"Antarctica\",\n            \"isoNum\": 10\n        },\n        {\n            \"id\": 11,\n            \"title\": \"Антигуа и Барбуда\",\n            \"titleLatin\": \"Antigua and Barbuda\",\n            \"isoNum\": 28\n        },\n        {\n            \"id\": 12,\n            \"title\": \"Аргентина\",\n            \"titleLatin\": \"Argentina\",\n            \"isoNum\": 32\n        },\n        {\n            \"id\": 13,\n            \"title\": \"Армения\",\n            \"titleLatin\": \"Armenia\",\n            \"isoNum\": 51\n        },\n        {\n            \"id\": 14,\n            \"title\": \"Аруба\",\n            \"titleLatin\": \"Aruba\",\n            \"isoNum\": 533\n        },\n        {\n            \"id\": 15,\n            \"title\": \"Афганистан\",\n            \"titleLatin\": \"Afghanistan\",\n            \"isoNum\": 4\n        },\n        {\n            \"id\": 16,\n            \"title\": \"Багамы\",\n            \"titleLatin\": \"Bahamas, The\",\n            \"isoNum\": 44\n        },\n        {\n            \"id\": 17,\n            \"title\": \"Бангладеш\",\n            \"titleLatin\": \"Bangladesh\",\n            \"isoNum\": 50\n        },\n        {\n            \"id\": 18,\n            \"title\": \"Барбадос\",\n            \"titleLatin\": \"Barbados\",\n            \"isoNum\": 52\n        },\n        {\n            \"id\": 19,\n            \"title\": \"Бахрейн\",\n            \"titleLatin\": \"Bahrain\",\n            \"isoNum\": 48\n        },\n        {\n            \"id\": 20,\n            \"title\": \"Беларусь\",\n            \"titleLatin\": \"Belarus\",\n            \"isoNum\": 112\n        },\n        {\n            \"id\": 21,\n            \"title\": \"Белиз\",\n            \"titleLatin\": \"Belize\",\n            \"isoNum\": 84\n        },\n        {\n            \"id\": 22,\n            \"title\": \"Бельгия\",\n            \"titleLatin\": \"Belgium\",\n            \"isoNum\": 56\n        },\n        {\n            \"id\": 23,\n            \"title\": \"Бенин\",\n            \"titleLatin\": \"Benin\",\n            \"isoNum\": 204\n        },\n        {\n            \"id\": 24,\n            \"title\": \"Бермуды\",\n            \"titleLatin\": \"Bermuda\",\n            \"isoNum\": 60\n        },\n        {\n            \"id\": 25,\n            \"title\": \"Болгария\",\n            \"titleLatin\": \"Bulgaria\",\n            \"isoNum\": 100\n        },\n        {\n            \"id\": 26,\n            \"title\": \"Боливия\",\n            \"titleLatin\": \"Bolivia\",\n            \"isoNum\": 68\n        },\n        {\n            \"id\": 27,\n            \"title\": \"Босния и Герцеговина\",\n            \"titleLatin\": \"Bosnia and Herzegovina\",\n            \"isoNum\": 70\n        },\n        {\n            \"id\": 28,\n            \"title\": \"Ботсвана\",\n            \"titleLatin\": \"Botswana\",\n            \"isoNum\": 72\n        },\n        {\n            \"id\": 29,\n            \"title\": \"Бразилия\",\n            \"titleLatin\": \"Brazil\",\n            \"isoNum\": 76\n        },\n        {\n            \"id\": 30,\n            \"title\": \"Британская территория в Индийском океане\",\n            \"titleLatin\": \"British Indian Ocean Territory\",\n            \"isoNum\": 86\n        },\n        {\n            \"id\": 31,\n            \"title\": \"Бруней-Даруссалам\",\n            \"titleLatin\": \"Brunei\",\n            \"isoNum\": 96\n        },\n        {\n            \"id\": 32,\n            \"title\": \"Буркина-Фасо\",\n            \"titleLatin\": \"Burkina Faso\",\n            \"isoNum\": 854\n        },\n        {\n            \"id\": 33,\n            \"title\": \"Бурунди\",\n            \"titleLatin\": \"Burundi\",\n            \"isoNum\": 108\n        },\n        {\n            \"id\": 34,\n            \"title\": \"Бутан\",\n            \"titleLatin\": \"Bhutan\",\n            \"isoNum\": 64\n        },\n        {\n            \"id\": 35,\n            \"title\": \"Вануату\",\n            \"titleLatin\": \"Vanuatu\",\n            \"isoNum\": 548\n        },\n        {\n            \"id\": 36,\n            \"title\": \"Венгрия\",\n            \"titleLatin\": \"Hungary\",\n            \"isoNum\": 348\n        },\n        {\n            \"id\": 37,\n            \"title\": \"Венесуэла\",\n            \"titleLatin\": \"Venezuela\",\n            \"isoNum\": 862\n        },\n        {\n            \"id\": 38,\n            \"title\": \"Виргинские острова, Британские\",\n            \"titleLatin\": \"British Virgin Islands\",\n            \"isoNum\": 92\n        },\n        {\n            \"id\": 39,\n            \"title\": \"Виргинские острова, США\",\n            \"titleLatin\": \"Virgin Islands\",\n            \"isoNum\": 850\n        },\n        {\n            \"id\": 40,\n            \"title\": \"Вьетнам\",\n            \"titleLatin\": \"Vietnam\",\n            \"isoNum\": 704\n        },\n        {\n            \"id\": 41,\n            \"title\": \"Габон\",\n            \"titleLatin\": \"Gabon\",\n            \"isoNum\": 266\n        },\n        {\n            \"id\": 42,\n            \"title\": \"Гаити\",\n            \"titleLatin\": \"Haiti\",\n            \"isoNum\": 332\n        },\n        {\n            \"id\": 43,\n            \"title\": \"Гайана\",\n            \"titleLatin\": \"Guyana\",\n            \"isoNum\": 328\n        },\n        {\n            \"id\": 44,\n            \"title\": \"Гамбия\",\n            \"titleLatin\": \"Gambia, The\",\n            \"isoNum\": 270\n        },\n        {\n            \"id\": 45,\n            \"title\": \"Гана\",\n            \"titleLatin\": \"Ghana\",\n            \"isoNum\": 288\n        },\n        {\n            \"id\": 46,\n            \"title\": \"Гваделупа\",\n            \"titleLatin\": \"Guadeloupe\",\n            \"isoNum\": 312\n        },\n        {\n            \"id\": 47,\n            \"title\": \"Гватемала\",\n            \"titleLatin\": \"Guatemala\",\n            \"isoNum\": 320\n        },\n        {\n            \"id\": 48,\n            \"title\": \"Гвинея\",\n            \"titleLatin\": \"Guinea\",\n            \"isoNum\": 324\n        },\n        {\n            \"id\": 49,\n            \"title\": \"Гвинея-Бисау\",\n            \"titleLatin\": \"Guinea-Bissau\",\n            \"isoNum\": 624\n        },\n        {\n            \"id\": 50,\n            \"title\": \"Германия\",\n            \"titleLatin\": \"Germany\",\n            \"isoNum\": 276\n        },\n        {\n            \"id\": 51,\n            \"title\": \"Гернси\",\n            \"titleLatin\": \"Guernsey\",\n            \"isoNum\": 831\n        },\n        {\n            \"id\": 52,\n            \"title\": \"Гибралтар\",\n            \"titleLatin\": \"Gibraltar\",\n            \"isoNum\": 292\n        },\n        {\n            \"id\": 53,\n            \"title\": \"Гондурас\",\n            \"titleLatin\": \"Honduras\",\n            \"isoNum\": 340\n        },\n        {\n            \"id\": 54,\n            \"title\": \"Гонконг\",\n            \"titleLatin\": \"Hong Kong\",\n            \"isoNum\": 344\n        },\n        {\n            \"id\": 55,\n            \"title\": \"Гренада\",\n            \"titleLatin\": \"Grenada\",\n            \"isoNum\": 308\n        },\n        {\n            \"id\": 56,\n            \"title\": \"Гренландия\",\n            \"titleLatin\": \"Greenland\",\n            \"isoNum\": 304\n        },\n        {\n            \"id\": 57,\n            \"title\": \"Греция\",\n            \"titleLatin\": \"Greece\",\n            \"isoNum\": 300\n        },\n        {\n            \"id\": 58,\n            \"title\": \"Грузия\",\n            \"titleLatin\": \"Georgia\",\n            \"isoNum\": 268\n        },\n        {\n            \"id\": 59,\n            \"title\": \"Гуам\",\n            \"titleLatin\": \"Guam\",\n            \"isoNum\": 316\n        },\n        {\n            \"id\": 60,\n            \"title\": \"Дания\",\n            \"titleLatin\": \"Denmark\",\n            \"isoNum\": 208\n        },\n        {\n            \"id\": 61,\n            \"title\": \"Джерси\",\n            \"titleLatin\": \"Jersey\",\n            \"isoNum\": 832\n        },\n        {\n            \"id\": 62,\n            \"title\": \"Джибути\",\n            \"titleLatin\": \"Djibouti\",\n            \"isoNum\": 262\n        },\n        {\n            \"id\": 63,\n            \"title\": \"Доминика\",\n            \"titleLatin\": \"Dominica\",\n            \"isoNum\": 212\n        },\n        {\n            \"id\": 64,\n            \"title\": \"Доминиканская Республика\",\n            \"titleLatin\": \"Dominican Republic\",\n            \"isoNum\": 214\n        },\n        {\n            \"id\": 65,\n            \"title\": \"Египет\",\n            \"titleLatin\": \"Egypt\",\n            \"isoNum\": 818\n        },\n        {\n            \"id\": 66,\n            \"title\": \"Замбия\",\n            \"titleLatin\": \"Zambia\",\n            \"isoNum\": 894\n        },\n        {\n            \"id\": 67,\n            \"title\": \"Западная Сахара\",\n            \"titleLatin\": \"Western Sahara\",\n            \"isoNum\": 732\n        },\n        {\n            \"id\": 68,\n            \"title\": \"Зимбабве\",\n            \"titleLatin\": \"Zimbabwe\",\n            \"isoNum\": 716\n        },\n        {\n            \"id\": 69,\n            \"title\": \"Израиль\",\n            \"titleLatin\": \"Israel\",\n            \"isoNum\": 376\n        },\n        {\n            \"id\": 70,\n            \"title\": \"Индия\",\n            \"titleLatin\": \"India\",\n            \"isoNum\": 356\n        },\n        {\n            \"id\": 71,\n            \"title\": \"Индонезия\",\n            \"titleLatin\": \"Indonesia\",\n            \"isoNum\": 360\n        },\n        {\n            \"id\": 72,\n            \"title\": \"Иордания\",\n            \"titleLatin\": \"Jordan\",\n            \"isoNum\": 400\n        },\n        {\n            \"id\": 73,\n            \"title\": \"Ирак\",\n            \"titleLatin\": \"Iraq\",\n            \"isoNum\": 368\n        },\n        {\n            \"id\": 74,\n            \"title\": \"Иран, Исламская Республика\",\n            \"titleLatin\": \"Iran\",\n            \"isoNum\": 364\n        },\n        {\n            \"id\": 75,\n            \"title\": \"Ирландия\",\n            \"titleLatin\": \"Ireland\",\n            \"isoNum\": 372\n        },\n        {\n            \"id\": 76,\n            \"title\": \"Исландия\",\n            \"titleLatin\": \"Iceland\",\n            \"isoNum\": 352\n        },\n        {\n            \"id\": 77,\n            \"title\": \"Испания\",\n            \"titleLatin\": \"Spain\",\n            \"isoNum\": 724\n        },\n        {\n            \"id\": 78,\n            \"title\": \"Италия\",\n            \"titleLatin\": \"Italy\",\n            \"isoNum\": 380\n        },\n        {\n            \"id\": 79,\n            \"title\": \"Йемен\",\n            \"titleLatin\": \"Yemen\",\n            \"isoNum\": 887\n        },\n        {\n            \"id\": 80,\n            \"title\": \"Кабо-Верде\",\n            \"titleLatin\": \"Cape Verde\",\n            \"isoNum\": 132\n        },\n        {\n            \"id\": 81,\n            \"title\": \"Казахстан\",\n            \"titleLatin\": \"Kazakhstan\",\n            \"isoNum\": 398\n        },\n        {\n            \"id\": 82,\n            \"title\": \"Камбоджа\",\n            \"titleLatin\": \"Cambodia\",\n            \"isoNum\": 116\n        },\n        {\n            \"id\": 83,\n            \"title\": \"Камерун\",\n            \"titleLatin\": \"Cameroon\",\n            \"isoNum\": 120\n        },\n        {\n            \"id\": 84,\n            \"title\": \"Канада\",\n            \"titleLatin\": \"Canada\",\n            \"isoNum\": 124\n        },\n        {\n            \"id\": 85,\n            \"title\": \"Катар\",\n            \"titleLatin\": \"Qatar\",\n            \"isoNum\": 634\n        },\n        {\n            \"id\": 86,\n            \"title\": \"Кения\",\n            \"titleLatin\": \"Kenya\",\n            \"isoNum\": 404\n        },\n        {\n            \"id\": 87,\n            \"title\": \"Кипр\",\n            \"titleLatin\": \"Cyprus\",\n            \"isoNum\": 196\n        },\n        {\n            \"id\": 88,\n            \"title\": \"Киргизия\",\n            \"titleLatin\": \"Kyrgyzstan\",\n            \"isoNum\": 417\n        },\n        {\n            \"id\": 89,\n            \"title\": \"Кирибати\",\n            \"titleLatin\": \"Kiribati\",\n            \"isoNum\": 296\n        },\n        {\n            \"id\": 90,\n            \"title\": \"Китай\",\n            \"titleLatin\": \"China\",\n            \"isoNum\": 156\n        },\n        {\n            \"id\": 91,\n            \"title\": \"Кокосовые (Килинг) острова\",\n            \"titleLatin\": \"Cocos (Keeling) Islands\",\n            \"isoNum\": 166\n        },\n        {\n            \"id\": 92,\n            \"title\": \"Колумбия\",\n            \"titleLatin\": \"Colombia\",\n            \"isoNum\": 170\n        },\n        {\n            \"id\": 93,\n            \"title\": \"Коморы\",\n            \"titleLatin\": \"Comoros\",\n            \"isoNum\": 174\n        },\n        {\n            \"id\": 94,\n            \"title\": \"Конго\",\n            \"titleLatin\": \"Congo, Republic of the\",\n            \"isoNum\": 178\n        },\n        {\n            \"id\": 95,\n            \"title\": \"Конго, Демократическая Республика\",\n            \"titleLatin\": \"Congo, Democratic Republic of the\",\n            \"isoNum\": 180\n        },\n        {\n            \"id\": 96,\n            \"title\": \"Косово\",\n            \"titleLatin\": \"Kosovo\",\n            \"isoNum\": 688\n        },\n        {\n            \"id\": 97,\n            \"title\": \"Коста-Рика\",\n            \"titleLatin\": \"Costa Rica\",\n            \"isoNum\": 188\n        },\n        {\n            \"id\": 98,\n            \"title\": \"Кот д'Ивуар\",\n            \"titleLatin\": \"Cote d'Ivoire\",\n            \"isoNum\": 384\n        },\n        {\n            \"id\": 99,\n            \"title\": \"Куба\",\n            \"titleLatin\": \"Cuba\",\n            \"isoNum\": 192\n        },\n        {\n            \"id\": 100,\n            \"title\": \"Кувейт\",\n            \"titleLatin\": \"Kuwait\",\n            \"isoNum\": 414\n        },\n        {\n            \"id\": 101,\n            \"title\": \"Лаос\",\n            \"titleLatin\": \"Laos\",\n            \"isoNum\": 418\n        },\n        {\n            \"id\": 102,\n            \"title\": \"Латвия\",\n            \"titleLatin\": \"Latvia\",\n            \"isoNum\": 428\n        },\n        {\n            \"id\": 103,\n            \"title\": \"Лесото\",\n            \"titleLatin\": \"Lesotho\",\n            \"isoNum\": 426\n        },\n        {\n            \"id\": 104,\n            \"title\": \"Ливан\",\n            \"titleLatin\": \"Lebanon\",\n            \"isoNum\": 422\n        },\n        {\n            \"id\": 105,\n            \"title\": \"Ливийская Арабская Джамахирия\",\n            \"titleLatin\": \"Libya\",\n            \"isoNum\": 434\n        },\n        {\n            \"id\": 106,\n            \"title\": \"Либерия\",\n            \"titleLatin\": \"Liberia\",\n            \"isoNum\": 430\n        },\n        {\n            \"id\": 107,\n            \"title\": \"Лихтенштейн\",\n            \"titleLatin\": \"Liechtenstein\",\n            \"isoNum\": 438\n        },\n        {\n            \"id\": 108,\n            \"title\": \"Литва\",\n            \"titleLatin\": \"Lithuania\",\n            \"isoNum\": 440\n        },\n        {\n            \"id\": 109,\n            \"title\": \"Люксембург\",\n            \"titleLatin\": \"Luxembourg\",\n            \"isoNum\": 442\n        },\n        {\n            \"id\": 110,\n            \"title\": \"Маврикий\",\n            \"titleLatin\": \"Mauritius\",\n            \"isoNum\": 480\n        },\n        {\n            \"id\": 111,\n            \"title\": \"Мавритания\",\n            \"titleLatin\": \"Mauritania\",\n            \"isoNum\": 478\n        },\n        {\n            \"id\": 112,\n            \"title\": \"Мадагаскар\",\n            \"titleLatin\": \"Madagascar\",\n            \"isoNum\": 450\n        },\n        {\n            \"id\": 113,\n            \"title\": \"Майотта\",\n            \"titleLatin\": \"Mayotte\",\n            \"isoNum\": 175\n        },\n        {\n            \"id\": 114,\n            \"title\": \"Макао\",\n            \"titleLatin\": \"Macau\",\n            \"isoNum\": 446\n        },\n        {\n            \"id\": 115,\n            \"title\": \"Малави\",\n            \"titleLatin\": \"Malawi\",\n            \"isoNum\": 454\n        },\n        {\n            \"id\": 116,\n            \"title\": \"Малайзия\",\n            \"titleLatin\": \"Malaysia\",\n            \"isoNum\": 458\n        },\n        {\n            \"id\": 117,\n            \"title\": \"Мали\",\n            \"titleLatin\": \"Mali\",\n            \"isoNum\": 466\n        },\n        {\n            \"id\": 118,\n            \"title\": \"Малые Тихоокеанские отдаленные острова Соединенных\",\n            \"titleLatin\": \"United States Pacific Island Wildlife Refuges\",\n            \"isoNum\": 581\n        },\n        {\n            \"id\": 119,\n            \"title\": \"Мальдивы\",\n            \"titleLatin\": \"Maldives\",\n            \"isoNum\": 462\n        },\n        {\n            \"id\": 120,\n            \"title\": \"Мальта\",\n            \"titleLatin\": \"Malta\",\n            \"isoNum\": 470\n        },\n        {\n            \"id\": 121,\n            \"title\": \"Марокко\",\n            \"titleLatin\": \"Morocco\",\n            \"isoNum\": 504\n        },\n        {\n            \"id\": 122,\n            \"title\": \"Мартиника\",\n            \"titleLatin\": \"Martinique\",\n            \"isoNum\": 474\n        },\n        {\n            \"id\": 123,\n            \"title\": \"Маршалловы острова\",\n            \"titleLatin\": \"Marshall Islands\",\n            \"isoNum\": 584\n        },\n        {\n            \"id\": 124,\n            \"title\": \"Мексика\",\n            \"titleLatin\": \"Mexico\",\n            \"isoNum\": 484\n        },\n        {\n            \"id\": 125,\n            \"title\": \"Микронезия, Федеративные Штаты\",\n            \"titleLatin\": \"Micronesia, Federated States of\",\n            \"isoNum\": 583\n        },\n        {\n            \"id\": 126,\n            \"title\": \"Мозамбик\",\n            \"titleLatin\": \"Mozambique\",\n            \"isoNum\": 508\n        },\n        {\n            \"id\": 127,\n            \"title\": \"Молдова, Республика\",\n            \"titleLatin\": \"Moldova\",\n            \"isoNum\": 498\n        },\n        {\n            \"id\": 128,\n            \"title\": \"Монако\",\n            \"titleLatin\": \"Monaco\",\n            \"isoNum\": 492\n        },\n        {\n            \"id\": 129,\n            \"title\": \"Монголия\",\n            \"titleLatin\": \"Mongolia\",\n            \"isoNum\": 496\n        },\n        {\n            \"id\": 130,\n            \"title\": \"Монтсеррат\",\n            \"titleLatin\": \"Montserrat\",\n            \"isoNum\": 500\n        },\n        {\n            \"id\": 131,\n            \"title\": \"Мьянма\",\n            \"titleLatin\": \"Burma\",\n            \"isoNum\": 104\n        },\n        {\n            \"id\": 132,\n            \"title\": \"Намибия\",\n            \"titleLatin\": \"Namibia\",\n            \"isoNum\": 516\n        },\n        {\n            \"id\": 133,\n            \"title\": \"Науру\",\n            \"titleLatin\": \"Nauru\",\n            \"isoNum\": 520\n        },\n        {\n            \"id\": 134,\n            \"title\": \"Непал\",\n            \"titleLatin\": \"Nepal\",\n            \"isoNum\": 524\n        },\n        {\n            \"id\": 135,\n            \"title\": \"Нигер\",\n            \"titleLatin\": \"Niger\",\n            \"isoNum\": 562\n        },\n        {\n            \"id\": 136,\n            \"title\": \"Нигерия\",\n            \"titleLatin\": \"Nigeria\",\n            \"isoNum\": 566\n        },\n        {\n            \"id\": 137,\n            \"title\": \"Нидерландские Антилы\",\n            \"titleLatin\": \"Netherlands Antilles\",\n            \"isoNum\": 530\n        },\n        {\n            \"id\": 138,\n            \"title\": \"Нидерланды\",\n            \"titleLatin\": \"Netherlands\",\n            \"isoNum\": 528\n        },\n        {\n            \"id\": 139,\n            \"title\": \"Никарагуа\",\n            \"titleLatin\": \"Nicaragua\",\n            \"isoNum\": 558\n        },\n        {\n            \"id\": 140,\n            \"title\": \"Ниуэ\",\n            \"titleLatin\": \"Niue\",\n            \"isoNum\": 570\n        },\n        {\n            \"id\": 141,\n            \"title\": \"Новая Зеландия\",\n            \"titleLatin\": \"New Zealand\",\n            \"isoNum\": 554\n        },\n        {\n            \"id\": 142,\n            \"title\": \"Новая Каледония\",\n            \"titleLatin\": \"New Caledonia\",\n            \"isoNum\": 540\n        },\n        {\n            \"id\": 143,\n            \"title\": \"Норвегия\",\n            \"titleLatin\": \"Norway\",\n            \"isoNum\": 578\n        },\n        {\n            \"id\": 144,\n            \"title\": \"Объединенные Арабские Эмираты\",\n            \"titleLatin\": \"United Arab Emirates\",\n            \"isoNum\": 784\n        },\n        {\n            \"id\": 145,\n            \"title\": \"Оман\",\n            \"titleLatin\": \"Oman\",\n            \"isoNum\": 512\n        },\n        {\n            \"id\": 146,\n            \"title\": \"Остров Буве\",\n            \"titleLatin\": \"Bouvet Island\",\n            \"isoNum\": 74\n        },\n        {\n            \"id\": 147,\n            \"title\": \"Остров Клиппертон\",\n            \"titleLatin\": \"Clipperton Island\",\n            \"isoNum\": 0\n        },\n        {\n            \"id\": 148,\n            \"title\": \"Остров Мэн\",\n            \"titleLatin\": \"Isle of Man\",\n            \"isoNum\": 833\n        },\n        {\n            \"id\": 149,\n            \"title\": \"Остров Норфолк\",\n            \"titleLatin\": \"Norfolk Island\",\n            \"isoNum\": 574\n        },\n        {\n            \"id\": 150,\n            \"title\": \"Остров Рождества\",\n            \"titleLatin\": \"Christmas Island\",\n            \"isoNum\": 162\n        },\n        {\n            \"id\": 151,\n            \"title\": \"Остров Святого Мартина\",\n            \"titleLatin\": \"Saint Martin\",\n            \"isoNum\": 663\n        },\n        {\n            \"id\": 152,\n            \"title\": \"Остров Херд и острова Макдональд\",\n            \"titleLatin\": \"Heard Island and McDonald Islands\",\n            \"isoNum\": 334\n        },\n        {\n            \"id\": 153,\n            \"title\": \"Острова Кайман\",\n            \"titleLatin\": \"Cayman Islands\",\n            \"isoNum\": 136\n        },\n        {\n            \"id\": 154,\n            \"title\": \"Острова Кука\",\n            \"titleLatin\": \"Cook Islands\",\n            \"isoNum\": 184\n        },\n        {\n            \"id\": 155,\n            \"title\": \"Острова Теркс и Кайкос\",\n            \"titleLatin\": \"Turks and Caicos Islands\",\n            \"isoNum\": 796\n        },\n        {\n            \"id\": 156,\n            \"title\": \"Пакистан\",\n            \"titleLatin\": \"Pakistan\",\n            \"isoNum\": 586\n        },\n        {\n            \"id\": 157,\n            \"title\": \"Палау\",\n            \"titleLatin\": \"Palau\",\n            \"isoNum\": 585\n        },\n        {\n            \"id\": 158,\n            \"title\": \"Палестинская территория, оккупированная\",\n            \"titleLatin\": \"Palestinian Territory, Occupied\",\n            \"isoNum\": 275\n        },\n        {\n            \"id\": 159,\n            \"title\": \"Панама\",\n            \"titleLatin\": \"Panama\",\n            \"isoNum\": 591\n        },\n        {\n            \"id\": 160,\n            \"title\": \"Папский Престол (Государство — город Ватикан)\",\n            \"titleLatin\": \"Holy See (Vatican City)\",\n            \"isoNum\": 336\n        },\n        {\n            \"id\": 161,\n            \"title\": \"Папуа-Новая Гвинея\",\n            \"titleLatin\": \"Papua New Guinea\",\n            \"isoNum\": 598\n        },\n        {\n            \"id\": 162,\n            \"title\": \"Парагвай\",\n            \"titleLatin\": \"Paraguay\",\n            \"isoNum\": 600\n        },\n        {\n            \"id\": 163,\n            \"title\": \"Перу\",\n            \"titleLatin\": \"Peru\",\n            \"isoNum\": 604\n        },\n        {\n            \"id\": 164,\n            \"title\": \"Питкерн\",\n            \"titleLatin\": \"Pitcairn\",\n            \"isoNum\": 612\n        },\n        {\n            \"id\": 165,\n            \"title\": \"Польша\",\n            \"titleLatin\": \"Poland\",\n            \"isoNum\": 616\n        },\n        {\n            \"id\": 166,\n            \"title\": \"Португалия\",\n            \"titleLatin\": \"Portugal\",\n            \"isoNum\": 620\n        },\n        {\n            \"id\": 167,\n            \"title\": \"Пуэрто-Рико\",\n            \"titleLatin\": \"Puerto Rico\",\n            \"isoNum\": 630\n        },\n        {\n            \"id\": 168,\n            \"title\": \"Республика Македония\",\n            \"titleLatin\": \"Macedonia\",\n            \"isoNum\": 807\n        },\n        {\n            \"id\": 169,\n            \"title\": \"Реюньон\",\n            \"titleLatin\": \"Reunion\",\n            \"isoNum\": 638\n        },\n        {\n            \"id\": 170,\n            \"title\": \"Россия\",\n            \"titleLatin\": \"Russia\",\n            \"isoNum\": 643\n        },\n        {\n            \"id\": 171,\n            \"title\": \"Руанда\",\n            \"titleLatin\": \"Rwanda\",\n            \"isoNum\": 646\n        },\n        {\n            \"id\": 172,\n            \"title\": \"Румыния\",\n            \"titleLatin\": \"Romania\",\n            \"isoNum\": 642\n        },\n        {\n            \"id\": 173,\n            \"title\": \"Самоа\",\n            \"titleLatin\": \"Samoa\",\n            \"isoNum\": 882\n        },\n        {\n            \"id\": 174,\n            \"title\": \"Сан-Марино\",\n            \"titleLatin\": \"San Marino\",\n            \"isoNum\": 674\n        },\n        {\n            \"id\": 175,\n            \"title\": \"Сан-Томе и Принсипи\",\n            \"titleLatin\": \"Sao Tome and Principe\",\n            \"isoNum\": 678\n        },\n        {\n            \"id\": 176,\n            \"title\": \"Саудовская Аравия\",\n            \"titleLatin\": \"Saudi Arabia\",\n            \"isoNum\": 682\n        },\n        {\n            \"id\": 177,\n            \"title\": \"Свазиленд\",\n            \"titleLatin\": \"Swaziland\",\n            \"isoNum\": 748\n        },\n        {\n            \"id\": 178,\n            \"title\": \"Святая Елена\",\n            \"titleLatin\": \"Saint Helena\",\n            \"isoNum\": 654\n        },\n        {\n            \"id\": 179,\n            \"title\": \"Северная Корея\",\n            \"titleLatin\": \"Korea, North\",\n            \"isoNum\": 408\n        },\n        {\n            \"id\": 180,\n            \"title\": \"Северные Марианские острова\",\n            \"titleLatin\": \"Northern Mariana Islands\",\n            \"isoNum\": 580\n        },\n        {\n            \"id\": 181,\n            \"title\": \"Сен-Бартельми\",\n            \"titleLatin\": \"Saint Barthélemy\",\n            \"isoNum\": 652\n        },\n        {\n            \"id\": 182,\n            \"title\": \"Сен-Пьер и Микелон\",\n            \"titleLatin\": \"Saint Pierre and Miquelon\",\n            \"isoNum\": 666\n        },\n        {\n            \"id\": 183,\n            \"title\": \"Сенегал\",\n            \"titleLatin\": \"Senegal\",\n            \"isoNum\": 686\n        },\n        {\n            \"id\": 184,\n            \"title\": \"Сент-Винсент и Гренадины\",\n            \"titleLatin\": \"Saint Vincent and the Grenadines\",\n            \"isoNum\": 670\n        },\n        {\n            \"id\": 185,\n            \"title\": \"Сент-Люсия\",\n            \"titleLatin\": \"Saint Lucia\",\n            \"isoNum\": 662\n        },\n        {\n            \"id\": 186,\n            \"title\": \"Сент-Китс и Невис\",\n            \"titleLatin\": \"Saint Kitts and Nevis\",\n            \"isoNum\": 659\n        },\n        {\n            \"id\": 187,\n            \"title\": \"Сербия\",\n            \"titleLatin\": \"Serbia\",\n            \"isoNum\": 688\n        },\n        {\n            \"id\": 188,\n            \"title\": \"Сейшелы\",\n            \"titleLatin\": \"Seychelles\",\n            \"isoNum\": 690\n        },\n        {\n            \"id\": 189,\n            \"title\": \"Сингапур\",\n            \"titleLatin\": \"Singapore\",\n            \"isoNum\": 702\n        },\n        {\n            \"id\": 190,\n            \"title\": \"Сирийская Арабская Республика\",\n            \"titleLatin\": \"Syria\",\n            \"isoNum\": 760\n        },\n        {\n            \"id\": 191,\n            \"title\": \"Словакия\",\n            \"titleLatin\": \"Slovakia\",\n            \"isoNum\": 703\n        },\n        {\n            \"id\": 192,\n            \"title\": \"Словения\",\n            \"titleLatin\": \"Slovenia\",\n            \"isoNum\": 705\n        },\n        {\n            \"id\": 193,\n            \"title\": \"Великобритания\",\n            \"titleLatin\": \"United Kingdom\",\n            \"isoNum\": 826\n        },\n        {\n            \"id\": 194,\n            \"title\": \"Соединенные Штаты\",\n            \"titleLatin\": \"United States\",\n            \"isoNum\": 840\n        },\n        {\n            \"id\": 195,\n            \"title\": \"Соломоновы острова\",\n            \"titleLatin\": \"Solomon Islands\",\n            \"isoNum\": 90\n        },\n        {\n            \"id\": 196,\n            \"title\": \"Сомали\",\n            \"titleLatin\": \"Somalia\",\n            \"isoNum\": 706\n        },\n        {\n            \"id\": 197,\n            \"title\": \"Судан\",\n            \"titleLatin\": \"Sudan\",\n            \"isoNum\": 736\n        },\n        {\n            \"id\": 198,\n            \"title\": \"Суринам\",\n            \"titleLatin\": \"Suriname\",\n            \"isoNum\": 740\n        },\n        {\n            \"id\": 199,\n            \"title\": \"Сьерра-Леоне\",\n            \"titleLatin\": \"Sierra Leone\",\n            \"isoNum\": 694\n        },\n        {\n            \"id\": 200,\n            \"title\": \"Таджикистан\",\n            \"titleLatin\": \"Tajikistan\",\n            \"isoNum\": 762\n        },\n        {\n            \"id\": 201,\n            \"title\": \"Таиланд\",\n            \"titleLatin\": \"Thailand\",\n            \"isoNum\": 764\n        },\n        {\n            \"id\": 202,\n            \"title\": \"Танзания, Объединенная Республика\",\n            \"titleLatin\": \"Tanzania\",\n            \"isoNum\": 834\n        },\n        {\n            \"id\": 203,\n            \"title\": \"Тайвань (Китай)\",\n            \"titleLatin\": \"Taiwan\",\n            \"isoNum\": 158\n        },\n        {\n            \"id\": 204,\n            \"title\": \"Тимор-Лесте\",\n            \"titleLatin\": \"Timor-Leste\",\n            \"isoNum\": 626\n        },\n        {\n            \"id\": 205,\n            \"title\": \"Того\",\n            \"titleLatin\": \"Togo\",\n            \"isoNum\": 768\n        },\n        {\n            \"id\": 206,\n            \"title\": \"Токелау\",\n            \"titleLatin\": \"Tokelau\",\n            \"isoNum\": 772\n        },\n        {\n            \"id\": 207,\n            \"title\": \"Тонга\",\n            \"titleLatin\": \"Tonga\",\n            \"isoNum\": 776\n        },\n        {\n            \"id\": 208,\n            \"title\": \"Тринидад и Тобаго\",\n            \"titleLatin\": \"Trinidad and Tobago\",\n            \"isoNum\": 780\n        },\n        {\n            \"id\": 209,\n            \"title\": \"Тувалу\",\n            \"titleLatin\": \"Tuvalu\",\n            \"isoNum\": 798\n        },\n        {\n            \"id\": 210,\n            \"title\": \"Тунис\",\n            \"titleLatin\": \"Tunisia\",\n            \"isoNum\": 788\n        },\n        {\n            \"id\": 211,\n            \"title\": \"Туркмения\",\n            \"titleLatin\": \"Turkmenistan\",\n            \"isoNum\": 795\n        },\n        {\n            \"id\": 212,\n            \"title\": \"Турция\",\n            \"titleLatin\": \"Turkey\",\n            \"isoNum\": 792\n        },\n        {\n            \"id\": 213,\n            \"title\": \"Уганда\",\n            \"titleLatin\": \"Uganda\",\n            \"isoNum\": 800\n        },\n        {\n            \"id\": 214,\n            \"title\": \"Узбекистан\",\n            \"titleLatin\": \"Uzbekistan\",\n            \"isoNum\": 860\n        },\n        {\n            \"id\": 215,\n            \"title\": \"Украина\",\n            \"titleLatin\": \"Ukraine\",\n            \"isoNum\": 804\n        },\n        {\n            \"id\": 216,\n            \"title\": \"Уоллис и Футуна\",\n            \"titleLatin\": \"Wallis and Futuna\",\n            \"isoNum\": 876\n        },\n        {\n            \"id\": 217,\n            \"title\": \"Уругвай\",\n            \"titleLatin\": \"Uruguay\",\n            \"isoNum\": 858\n        },\n        {\n            \"id\": 218,\n            \"title\": \"Фарерские острова\",\n            \"titleLatin\": \"Faroe Islands\",\n            \"isoNum\": 234\n        },\n        {\n            \"id\": 219,\n            \"title\": \"Фиджи\",\n            \"titleLatin\": \"Fiji\",\n            \"isoNum\": 242\n        },\n        {\n            \"id\": 220,\n            \"title\": \"Филиппины\",\n            \"titleLatin\": \"Philippines\",\n            \"isoNum\": 608\n        },\n        {\n            \"id\": 221,\n            \"title\": \"Финляндия\",\n            \"titleLatin\": \"Finland\",\n            \"isoNum\": 246\n        },\n        {\n            \"id\": 222,\n            \"title\": \"Фолклендские острова (Мальвинские)\",\n            \"titleLatin\": \"Falkland Islands (Islas Malvinas)\",\n            \"isoNum\": 238\n        },\n        {\n            \"id\": 223,\n            \"title\": \"Франция\",\n            \"titleLatin\": \"France\",\n            \"isoNum\": 250\n        },\n        {\n            \"id\": 224,\n            \"title\": \"Французская Гвиана\",\n            \"titleLatin\": \"French Guiana\",\n            \"isoNum\": 254\n        },\n        {\n            \"id\": 225,\n            \"title\": \"Французская Полинезия\",\n            \"titleLatin\": \"French Polynesia\",\n            \"isoNum\": 258\n        },\n        {\n            \"id\": 226,\n            \"title\": \"Французские Южные территории\",\n            \"titleLatin\": \"French Southern Lands\",\n            \"isoNum\": 260\n        },\n        {\n            \"id\": 227,\n            \"title\": \"Хорватия\",\n            \"titleLatin\": \"Croatia\",\n            \"isoNum\": 191\n        },\n        {\n            \"id\": 228,\n            \"title\": \"Центрально-Африканская Республика\",\n            \"titleLatin\": \"Central African Republic\",\n            \"isoNum\": 140\n        },\n        {\n            \"id\": 229,\n            \"title\": \"Чад\",\n            \"titleLatin\": \"Chad\",\n            \"isoNum\": 148\n        },\n        {\n            \"id\": 230,\n            \"title\": \"Черногория\",\n            \"titleLatin\": \"Montenegro\",\n            \"isoNum\": 499\n        },\n        {\n            \"id\": 231,\n            \"title\": \"Чешская Республика\",\n            \"titleLatin\": \"Czech Republic\",\n            \"isoNum\": 203\n        },\n        {\n            \"id\": 232,\n            \"title\": \"Чили\",\n            \"titleLatin\": \"Chile\",\n            \"isoNum\": 152\n        },\n        {\n            \"id\": 233,\n            \"title\": \"Швейцария\",\n            \"titleLatin\": \"Switzerland\",\n            \"isoNum\": 756\n        },\n        {\n            \"id\": 234,\n            \"title\": \"Швеция\",\n            \"titleLatin\": \"Sweden\",\n            \"isoNum\": 752\n        },\n        {\n            \"id\": 235,\n            \"title\": \"Шпицберген и Ян Майен\",\n            \"titleLatin\": \"Svalbard and Jan Mayen\",\n            \"isoNum\": 744\n        },\n        {\n            \"id\": 236,\n            \"title\": \"Шри-Ланка\",\n            \"titleLatin\": \"Sri Lanka\",\n            \"isoNum\": 144\n        },\n        {\n            \"id\": 237,\n            \"title\": \"Эквадор\",\n            \"titleLatin\": \"Ecuador\",\n            \"isoNum\": 218\n        },\n        {\n            \"id\": 238,\n            \"title\": \"Экваториальная Гвинея\",\n            \"titleLatin\": \"Equatorial Guinea\",\n            \"isoNum\": 226\n        },\n        {\n            \"id\": 239,\n            \"title\": \"Эландские острова\",\n            \"titleLatin\": \"Åland Islands\",\n            \"isoNum\": 248\n        },\n        {\n            \"id\": 240,\n            \"title\": \"Эль-Сальвадор\",\n            \"titleLatin\": \"El Salvador\",\n            \"isoNum\": 222\n        },\n        {\n            \"id\": 241,\n            \"title\": \"Эритрея\",\n            \"titleLatin\": \"Eritrea\",\n            \"isoNum\": 232\n        },\n        {\n            \"id\": 242,\n            \"title\": \"Эстония\",\n            \"titleLatin\": \"Estonia\",\n            \"isoNum\": 233\n        },\n        {\n            \"id\": 243,\n            \"title\": \"Эфиопия\",\n            \"titleLatin\": \"Ethiopia\",\n            \"isoNum\": 231\n        },\n        {\n            \"id\": 244,\n            \"title\": \"Южная Африка\",\n            \"titleLatin\": \"South Africa\",\n            \"isoNum\": 710\n        },\n        {\n            \"id\": 245,\n            \"title\": \"Южная Джорджия и Южные Сандвичевы острова\",\n            \"titleLatin\": \"South Georgia and the South Sandwich Islands\",\n            \"isoNum\": 239\n        },\n        {\n            \"id\": 246,\n            \"title\": \"Южная Корея\",\n            \"titleLatin\": \"Korea, South\",\n            \"isoNum\": 410\n        },\n        {\n            \"id\": 247,\n            \"title\": \"Ямайка\",\n            \"titleLatin\": \"Jamaica\",\n            \"isoNum\": 388\n        },\n        {\n            \"id\": 248,\n            \"title\": \"Япония\",\n            \"titleLatin\": \"Japan\",\n            \"isoNum\": 392\n        },\n        {\n            \"id\": 249,\n            \"title\": \"\",\n            \"titleLatin\": \"Czech Republic\",\n            \"isoNum\": 203\n        },\n        {\n            \"id\": 250,\n            \"title\": \"Україна\",\n            \"titleLatin\": \"Republic of Moldova\",\n            \"isoNum\": 498\n        },\n        {\n            \"id\": 251,\n            \"title\": \"Україна\",\n            \"titleLatin\": \"North Macedonia\",\n            \"isoNum\": 807\n        },\n        {\n            \"id\": 252,\n            \"title\": \"Україна\",\n            \"titleLatin\": \"\",\n            \"isoNum\": 0\n        },\n        {\n            \"id\": 253,\n            \"title\": \"Україна\",\n            \"titleLatin\": \"\",\n            \"isoNum\": 0\n        },\n        {\n            \"id\": 254,\n            \"title\": \"Україна\",\n            \"titleLatin\": \"\",\n            \"isoNum\": 0\n        },\n        {\n            \"id\": 255,\n            \"title\": \"Іспанія\",\n            \"titleLatin\": \"\",\n            \"isoNum\": 0\n        }\n    ]\n}"},{"id":"3f547655-bd80-4d70-96a8-78207de5ba32","name":"Success (byCheckpoint passed)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token\n","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCountry?byCheckpoint=true","host":["{{host}}"],"path":["a","v2","rest","public","getCountry"],"query":[{"key":"byCheckpoint","value":"true","description":"Optional bool. False (default): returns the list of all countries. True: returns the list of countries in which loading/unloading checkpoints of current user company are present"},{"key":"byCompany","value":"{{countriesByCheckpointCompany}}","description":"Optional int. Id of the company that owns the loading/unloading checkpoint . Returns the list of counties in which loading/unloading checkpoints of passed company are present. `byCheckpoint`parameter must be on","disabled":true},{"key":"byTown","value":"{{countriesByCheckpointTown}}","description":"Optional int. Id of the town with loading/unloading checkpoints. Returns the list of countries in which there are loading/unloading checkpoints in the passed town. `byCheckpoint`parameter must be on","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 215,\n            \"title\": \"Украина\",\n            \"titleLatin\": \"Ukraine\",\n            \"isoNum\": 804\n        },\n        {\n            \"id\": 170,\n            \"title\": \"Россия\",\n            \"titleLatin\": \"Russia\",\n            \"isoNum\": 643\n        },\n        {\n            \"id\": 50,\n            \"title\": \"Германия\",\n            \"titleLatin\": \"Germany\",\n            \"isoNum\": 276\n        },\n        {\n            \"id\": 25,\n            \"title\": \"Болгария\",\n            \"titleLatin\": \"Bulgaria\",\n            \"isoNum\": 100\n        },\n        {\n            \"id\": 193,\n            \"title\": \"Великобритания\",\n            \"titleLatin\": \"United Kingdom\",\n            \"isoNum\": 826\n        },\n        {\n            \"id\": 138,\n            \"title\": \"Нидерланды\",\n            \"titleLatin\": \"Netherlands\",\n            \"isoNum\": 528\n        },\n        {\n            \"id\": 127,\n            \"title\": \"Молдова, Республика\",\n            \"titleLatin\": \"Moldova\",\n            \"isoNum\": 498\n        },\n        {\n            \"id\": 4,\n            \"title\": \"Албания\",\n            \"titleLatin\": \"Albania\",\n            \"isoNum\": 8\n        },\n        {\n            \"id\": 2,\n            \"title\": \"Австрия\",\n            \"titleLatin\": \"Austria\",\n            \"isoNum\": 40\n        },\n        {\n            \"id\": 22,\n            \"title\": \"Бельгия\",\n            \"titleLatin\": \"Belgium\",\n            \"isoNum\": 56\n        },\n        {\n            \"id\": 36,\n            \"title\": \"Венгрия\",\n            \"titleLatin\": \"Hungary\",\n            \"isoNum\": 348\n        },\n        {\n            \"id\": 221,\n            \"title\": \"Финляндия\",\n            \"titleLatin\": \"Finland\",\n            \"isoNum\": 246\n        },\n        {\n            \"id\": 76,\n            \"title\": \"Исландия\",\n            \"titleLatin\": \"Iceland\",\n            \"isoNum\": 352\n        },\n        {\n            \"id\": 194,\n            \"title\": \"Соединенные Штаты\",\n            \"titleLatin\": \"United States\",\n            \"isoNum\": 840\n        },\n        {\n            \"id\": 84,\n            \"title\": \"Канада\",\n            \"titleLatin\": \"Canada\",\n            \"isoNum\": 124\n        },\n        {\n            \"id\": 96,\n            \"title\": \"Косово\",\n            \"titleLatin\": \"Kosovo\",\n            \"isoNum\": 688\n        },\n        {\n            \"id\": 223,\n            \"title\": \"Франция\",\n            \"titleLatin\": \"France\",\n            \"isoNum\": 250\n        },\n        {\n            \"id\": 233,\n            \"title\": \"Швейцария\",\n            \"titleLatin\": \"Switzerland\",\n            \"isoNum\": 756\n        },\n        {\n            \"id\": 94,\n            \"title\": \"Конго\",\n            \"titleLatin\": \"Congo, Republic of the\",\n            \"isoNum\": 178\n        },\n        {\n            \"id\": 82,\n            \"title\": \"Камбоджа\",\n            \"titleLatin\": \"Cambodia\",\n            \"isoNum\": 116\n        },\n        {\n            \"id\": 165,\n            \"title\": \"Польша\",\n            \"titleLatin\": \"Poland\",\n            \"isoNum\": 616\n        },\n        {\n            \"id\": 78,\n            \"title\": \"Италия\",\n            \"titleLatin\": \"Italy\",\n            \"isoNum\": 380\n        },\n        {\n            \"id\": 242,\n            \"title\": \"Эстония\",\n            \"titleLatin\": \"Estonia\",\n            \"isoNum\": 233\n        },\n        {\n            \"id\": 81,\n            \"title\": \"Казахстан\",\n            \"titleLatin\": \"Kazakhstan\",\n            \"isoNum\": 398\n        }\n    ]\n}"},{"id":"e431aeb3-9a52-48cf-ba61-62b0f8eefacd","name":"Success (byTown passed)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token\n","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCountry?byCheckpoint=true&byTown={{countriesByCheckpointTown}}","host":["{{host}}"],"path":["a","v2","rest","public","getCountry"],"query":[{"key":"byCheckpoint","value":"true","description":"Optional bool. False (default): returns the list of all countries. True: returns the list of countries in which loading/unloading checkpoints of current user company are present"},{"key":"byCompany","value":"{{countriesByCheckpointCompany}}","description":"Optional int. Id of the company that owns the loading/unloading checkpoint . Returns the list of counties in which loading/unloading checkpoints of passed company are present. `byCheckpoint` parameter must be on","disabled":true},{"key":"byTown","value":"{{countriesByCheckpointTown}}","description":"Optional int. Id of the town with loading/unloading checkpoints. Returns the list of countries in which there are loading/unloading checkpoints in the passed town. `byCheckpoint` parameter must be on"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 215,\n            \"title\": \"Украина\",\n            \"titleLatin\": \"Ukraine\",\n            \"isoNum\": 804\n        },\n        {\n            \"id\": 170,\n            \"title\": \"Россия\",\n            \"titleLatin\": \"Russia\",\n            \"isoNum\": 643\n        },\n        {\n            \"id\": 50,\n            \"title\": \"Германия\",\n            \"titleLatin\": \"Germany\",\n            \"isoNum\": 276\n        },\n        {\n            \"id\": 25,\n            \"title\": \"Болгария\",\n            \"titleLatin\": \"Bulgaria\",\n            \"isoNum\": 100\n        },\n        {\n            \"id\": 193,\n            \"title\": \"Великобритания\",\n            \"titleLatin\": \"United Kingdom\",\n            \"isoNum\": 826\n        },\n        {\n            \"id\": 138,\n            \"title\": \"Нидерланды\",\n            \"titleLatin\": \"Netherlands\",\n            \"isoNum\": 528\n        },\n        {\n            \"id\": 127,\n            \"title\": \"Молдова, Республика\",\n            \"titleLatin\": \"Moldova\",\n            \"isoNum\": 498\n        },\n        {\n            \"id\": 4,\n            \"title\": \"Албания\",\n            \"titleLatin\": \"Albania\",\n            \"isoNum\": 8\n        },\n        {\n            \"id\": 2,\n            \"title\": \"Австрия\",\n            \"titleLatin\": \"Austria\",\n            \"isoNum\": 40\n        },\n        {\n            \"id\": 22,\n            \"title\": \"Бельгия\",\n            \"titleLatin\": \"Belgium\",\n            \"isoNum\": 56\n        },\n        {\n            \"id\": 36,\n            \"title\": \"Венгрия\",\n            \"titleLatin\": \"Hungary\",\n            \"isoNum\": 348\n        },\n        {\n            \"id\": 221,\n            \"title\": \"Финляндия\",\n            \"titleLatin\": \"Finland\",\n            \"isoNum\": 246\n        },\n        {\n            \"id\": 76,\n            \"title\": \"Исландия\",\n            \"titleLatin\": \"Iceland\",\n            \"isoNum\": 352\n        },\n        {\n            \"id\": 194,\n            \"title\": \"Соединенные Штаты\",\n            \"titleLatin\": \"United States\",\n            \"isoNum\": 840\n        },\n        {\n            \"id\": 84,\n            \"title\": \"Канада\",\n            \"titleLatin\": \"Canada\",\n            \"isoNum\": 124\n        },\n        {\n            \"id\": 96,\n            \"title\": \"Косово\",\n            \"titleLatin\": \"Kosovo\",\n            \"isoNum\": 688\n        },\n        {\n            \"id\": 223,\n            \"title\": \"Франция\",\n            \"titleLatin\": \"France\",\n            \"isoNum\": 250\n        },\n        {\n            \"id\": 233,\n            \"title\": \"Швейцария\",\n            \"titleLatin\": \"Switzerland\",\n            \"isoNum\": 756\n        },\n        {\n            \"id\": 94,\n            \"title\": \"Конго\",\n            \"titleLatin\": \"Congo, Republic of the\",\n            \"isoNum\": 178\n        },\n        {\n            \"id\": 82,\n            \"title\": \"Камбоджа\",\n            \"titleLatin\": \"Cambodia\",\n            \"isoNum\": 116\n        },\n        {\n            \"id\": 165,\n            \"title\": \"Польша\",\n            \"titleLatin\": \"Poland\",\n            \"isoNum\": 616\n        },\n        {\n            \"id\": 78,\n            \"title\": \"Италия\",\n            \"titleLatin\": \"Italy\",\n            \"isoNum\": 380\n        },\n        {\n            \"id\": 242,\n            \"title\": \"Эстония\",\n            \"titleLatin\": \"Estonia\",\n            \"isoNum\": 233\n        },\n        {\n            \"id\": 81,\n            \"title\": \"Казахстан\",\n            \"titleLatin\": \"Kazakhstan\",\n            \"isoNum\": 398\n        }\n    ]\n}"},{"id":"0050a789-16b4-45cd-8018-715ea6a7019f","name":"Success (byCompany passed)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token\n","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCountry?byCheckpoint=true&byCompany={{countriesByCheckpointCompany}}","host":["{{host}}"],"path":["a","v2","rest","public","getCountry"],"query":[{"key":"byCheckpoint","value":"true","description":"Optional bool. False (default): returns the list of all countries. True: returns the list of countries in which loading/unloading checkpoints of current user company are present"},{"key":"byCompany","value":"{{countriesByCheckpointCompany}}","description":"Optional int. Id of the company that owns the loading/unloading checkpoint . Returns the list of counties in which loading/unloading checkpoints of passed company are present. `byCheckpoint` parameter must be on"},{"key":"byTown","value":"{{countriesByCheckpointTown}}","description":"Optional int. Id of the town with loading/unloading checkpoints. Returns the list of countries in which there are loading/unloading checkpoints in the passed town. `byCheckpoint` parameter must be on","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 215,\n            \"title\": \"Украина\",\n            \"titleLatin\": \"Ukraine\",\n            \"isoNum\": 804\n        },\n        {\n            \"id\": 170,\n            \"title\": \"Россия\",\n            \"titleLatin\": \"Russia\",\n            \"isoNum\": 643\n        },\n        {\n            \"id\": 50,\n            \"title\": \"Германия\",\n            \"titleLatin\": \"Germany\",\n            \"isoNum\": 276\n        },\n        {\n            \"id\": 25,\n            \"title\": \"Болгария\",\n            \"titleLatin\": \"Bulgaria\",\n            \"isoNum\": 100\n        },\n        {\n            \"id\": 193,\n            \"title\": \"Великобритания\",\n            \"titleLatin\": \"United Kingdom\",\n            \"isoNum\": 826\n        },\n        {\n            \"id\": 138,\n            \"title\": \"Нидерланды\",\n            \"titleLatin\": \"Netherlands\",\n            \"isoNum\": 528\n        },\n        {\n            \"id\": 127,\n            \"title\": \"Молдова, Республика\",\n            \"titleLatin\": \"Moldova\",\n            \"isoNum\": 498\n        },\n        {\n            \"id\": 4,\n            \"title\": \"Албания\",\n            \"titleLatin\": \"Albania\",\n            \"isoNum\": 8\n        },\n        {\n            \"id\": 2,\n            \"title\": \"Австрия\",\n            \"titleLatin\": \"Austria\",\n            \"isoNum\": 40\n        },\n        {\n            \"id\": 22,\n            \"title\": \"Бельгия\",\n            \"titleLatin\": \"Belgium\",\n            \"isoNum\": 56\n        },\n        {\n            \"id\": 36,\n            \"title\": \"Венгрия\",\n            \"titleLatin\": \"Hungary\",\n            \"isoNum\": 348\n        },\n        {\n            \"id\": 221,\n            \"title\": \"Финляндия\",\n            \"titleLatin\": \"Finland\",\n            \"isoNum\": 246\n        },\n        {\n            \"id\": 76,\n            \"title\": \"Исландия\",\n            \"titleLatin\": \"Iceland\",\n            \"isoNum\": 352\n        },\n        {\n            \"id\": 194,\n            \"title\": \"Соединенные Штаты\",\n            \"titleLatin\": \"United States\",\n            \"isoNum\": 840\n        },\n        {\n            \"id\": 84,\n            \"title\": \"Канада\",\n            \"titleLatin\": \"Canada\",\n            \"isoNum\": 124\n        },\n        {\n            \"id\": 96,\n            \"title\": \"Косово\",\n            \"titleLatin\": \"Kosovo\",\n            \"isoNum\": 688\n        },\n        {\n            \"id\": 223,\n            \"title\": \"Франция\",\n            \"titleLatin\": \"France\",\n            \"isoNum\": 250\n        },\n        {\n            \"id\": 233,\n            \"title\": \"Швейцария\",\n            \"titleLatin\": \"Switzerland\",\n            \"isoNum\": 756\n        },\n        {\n            \"id\": 94,\n            \"title\": \"Конго\",\n            \"titleLatin\": \"Congo, Republic of the\",\n            \"isoNum\": 178\n        },\n        {\n            \"id\": 82,\n            \"title\": \"Камбоджа\",\n            \"titleLatin\": \"Cambodia\",\n            \"isoNum\": 116\n        },\n        {\n            \"id\": 165,\n            \"title\": \"Польша\",\n            \"titleLatin\": \"Poland\",\n            \"isoNum\": 616\n        },\n        {\n            \"id\": 78,\n            \"title\": \"Италия\",\n            \"titleLatin\": \"Italy\",\n            \"isoNum\": 380\n        },\n        {\n            \"id\": 242,\n            \"title\": \"Эстония\",\n            \"titleLatin\": \"Estonia\",\n            \"isoNum\": 233\n        },\n        {\n            \"id\": 81,\n            \"title\": \"Казахстан\",\n            \"titleLatin\": \"Kazakhstan\",\n            \"isoNum\": 398\n        }\n    ]\n}"},{"id":"4a73ead1-dd64-4fb5-ba00-c601b49e7b0f","name":"Success with all parameters passed","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token\n","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{host}}/a/v2/rest/public/getCountry?byCheckpoint=true&byCompany={{countriesByCheckpointCompany}}&byTown={{countriesByCheckpointTown}}","host":["{{host}}"],"path":["a","v2","rest","public","getCountry"],"query":[{"key":"byCheckpoint","value":"true","description":"Optional bool. False (default): returns the list of all countries. True: returns the list of countries in which loading/unloading checkpoints of current user company are present"},{"key":"byCompany","value":"{{countriesByCheckpointCompany}}","description":"Optional int. Id of the company that owns the loading/unloading checkpoint . Returns the list of counties in which loading/unloading checkpoints of passed company are present. `byCheckpoint`parameter must be on"},{"key":"byTown","value":"{{countriesByCheckpointTown}}","description":"Optional int. Id of the town with loading/unloading checkpoints. Returns the list of countries in which there are loading/unloading checkpoints in the passed town. `byCheckpoint`parameter must be on"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 215,\n            \"title\": \"Украина\",\n            \"titleLatin\": \"Ukraine\",\n            \"isoNum\": 804\n        },\n        {\n            \"id\": 170,\n            \"title\": \"Россия\",\n            \"titleLatin\": \"Russia\",\n            \"isoNum\": 643\n        },\n        {\n            \"id\": 50,\n            \"title\": \"Германия\",\n            \"titleLatin\": \"Germany\",\n            \"isoNum\": 276\n        },\n        {\n            \"id\": 25,\n            \"title\": \"Болгария\",\n            \"titleLatin\": \"Bulgaria\",\n            \"isoNum\": 100\n        },\n        {\n            \"id\": 193,\n            \"title\": \"Великобритания\",\n            \"titleLatin\": \"United Kingdom\",\n            \"isoNum\": 826\n        },\n        {\n            \"id\": 138,\n            \"title\": \"Нидерланды\",\n            \"titleLatin\": \"Netherlands\",\n            \"isoNum\": 528\n        },\n        {\n            \"id\": 127,\n            \"title\": \"Молдова, Республика\",\n            \"titleLatin\": \"Moldova\",\n            \"isoNum\": 498\n        },\n        {\n            \"id\": 4,\n            \"title\": \"Албания\",\n            \"titleLatin\": \"Albania\",\n            \"isoNum\": 8\n        },\n        {\n            \"id\": 2,\n            \"title\": \"Австрия\",\n            \"titleLatin\": \"Austria\",\n            \"isoNum\": 40\n        },\n        {\n            \"id\": 22,\n            \"title\": \"Бельгия\",\n            \"titleLatin\": \"Belgium\",\n            \"isoNum\": 56\n        },\n        {\n            \"id\": 36,\n            \"title\": \"Венгрия\",\n            \"titleLatin\": \"Hungary\",\n            \"isoNum\": 348\n        },\n        {\n            \"id\": 221,\n            \"title\": \"Финляндия\",\n            \"titleLatin\": \"Finland\",\n            \"isoNum\": 246\n        },\n        {\n            \"id\": 76,\n            \"title\": \"Исландия\",\n            \"titleLatin\": \"Iceland\",\n            \"isoNum\": 352\n        },\n        {\n            \"id\": 194,\n            \"title\": \"Соединенные Штаты\",\n            \"titleLatin\": \"United States\",\n            \"isoNum\": 840\n        },\n        {\n            \"id\": 84,\n            \"title\": \"Канада\",\n            \"titleLatin\": \"Canada\",\n            \"isoNum\": 124\n        },\n        {\n            \"id\": 96,\n            \"title\": \"Косово\",\n            \"titleLatin\": \"Kosovo\",\n            \"isoNum\": 688\n        },\n        {\n            \"id\": 223,\n            \"title\": \"Франция\",\n            \"titleLatin\": \"France\",\n            \"isoNum\": 250\n        },\n        {\n            \"id\": 233,\n            \"title\": \"Швейцария\",\n            \"titleLatin\": \"Switzerland\",\n            \"isoNum\": 756\n        },\n        {\n            \"id\": 94,\n            \"title\": \"Конго\",\n            \"titleLatin\": \"Congo, Republic of the\",\n            \"isoNum\": 178\n        },\n        {\n            \"id\": 82,\n            \"title\": \"Камбоджа\",\n            \"titleLatin\": \"Cambodia\",\n            \"isoNum\": 116\n        },\n        {\n            \"id\": 165,\n            \"title\": \"Польша\",\n            \"titleLatin\": \"Poland\",\n            \"isoNum\": 616\n        },\n        {\n            \"id\": 78,\n            \"title\": \"Италия\",\n            \"titleLatin\": \"Italy\",\n            \"isoNum\": 380\n        },\n        {\n            \"id\": 242,\n            \"title\": \"Эстония\",\n            \"titleLatin\": \"Estonia\",\n            \"isoNum\": 233\n        },\n        {\n            \"id\": 81,\n            \"title\": \"Казахстан\",\n            \"titleLatin\": \"Kazakhstan\",\n            \"isoNum\": 398\n        }\n    ]\n}"},{"id":"e4a03378-2391-4820-98d1-1f31d4fd6441","name":"Invalid token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token\n","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCountry","host":["{{host}}"],"path":["a","v2","rest","public","getCountry"],"query":[{"key":"byCheckpoint","value":"true","description":"Optional bool. False (default): returns the list of all countries. True: returns the list of countries in which loading/unloading checkpoints of current user company are present","disabled":true},{"key":"byCompany","value":"{{countriesByCheckpointCompany}}","description":"Optional int. Id of the company that owns the loading/unloading checkpoint . Returns the list of counties in which loading/unloading checkpoints of passed company are present. `byCheckpoint`parameter must be on","disabled":true},{"key":"byTown","value":"{{countriesByCheckpointTown}}","description":"Optional int. Id of the town with loading/unloading checkpoints. Returns the list of countries in which there are loading/unloading checkpoints in the passed town. `byCheckpoint`parameter must be on","type":"text","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"ca6483b3-f03b-4bb9-9cd4-0ce55d7e3302"},{"name":"Get Companies","event":[{"listen":"test","script":{"id":"0cc1edf5-9623-4c48-9cee-853729452df3","exec":["var response = pm.response.json();","var isContains = pm.response.text();","if (response.status === 200 || response.status === 'success') {","    pm.test(\"data in response matches array\", () => {","        pm.expect(response.data).to.be.an(\"array\");","    });","","   ","","} else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","   ","};",""],"type":"text/javascript"}}],"id":"a1d61357-a6e1-4490-b89e-da9e6479b3da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getCompanies","description":"<p>Returns the list of companies, depending on the passed parameters.</p>\n<ul>\n<li>if successful you will receive list of companies, depending of the passed parameters</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>(!) NOTE: Only for shippers</p>\n","urlObject":{"path":["a","v2","rest","public","getCompanies"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>Required bool. True: Returns the list of companies who own loading/unloading checkpoint in your account. False: not allowed</p>\n","type":"text/plain"},"key":"byCheckpoint","value":"true"},{"disabled":true,"description":{"content":"<p>Optional int. Id of the country. Returns the list of companies with loading/unloading checkpoints in a given country. <code>byCheckpoint</code> parameter must be on</p>\n","type":"text/plain"},"key":"byCountry","value":"{{companiesByCheckpointCountry}}"},{"disabled":true,"description":{"content":"<p>Optional int. Id of the region. Returns the list of companies with loading/unloading checkpoints in a given region. <code>byCheckpoint</code> parameter must be on</p>\n","type":"text/plain"},"key":"byRegion","value":"{{companiesByCheckpointRegion}}"},{"disabled":true,"description":{"content":"<p>Optional int. Id of the town. Returns the list of companies with loading/unloading checkpoints in a given town. <code>byCheckpoint</code> parameter must be on</p>\n","type":"text/plain"},"key":"byTown","value":"{{companiesByCheckpointTown}}"}],"variable":[]}},"response":[{"id":"922ada58-906b-4adc-87df-eabc766814a3","name":"Success (byCheckpoint passed)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCompanies?byCheckpoint=true","host":["{{host}}"],"path":["a","v2","rest","public","getCompanies"],"query":[{"key":"byCheckpoint","value":"true","description":"True: Required bool. Returns the list of companies who own checkpoints in your account. False: error"},{"key":"byCountry","value":"{{companiesByCheckpointCountry}}","description":"Optional ind. Id of the country. Returns the list of companies with loading/unloading checkpoints in a given country","disabled":true},{"key":"byRegion","value":"{{companiesByCheckpointRegion}}","description":"Optional ind. Id of the region. Returns the list of companies with loading/unloading checkpoints in a given region","disabled":true},{"key":"byTown","value":"{{companiesByCheckpointTown}}","description":"Optional ind. Id of the town. Returns the list of companies with loading/unloading checkpoints in a given town","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 60,\n            \"title\": \"Company\",\n            \"titleFull\": \"Company full name\",\n            \"natcomid\": \"360587991\"\n        },\n        {\n            \"id\": 572,\n            \"title\": \"testing, LLC\",\n            \"titleFull\": \"testing, limited liability company\",\n            \"natcomid\": \"1231l2knk 123\"\n        },\n        {\n            \"id\": 781,\n            \"title\": \"SOME\",\n            \"titleFull\": \"SOME full name\",\n            \"natcomid\": \"10029029\"\n        },\n        {\n            \"id\": 3,\n            \"title\": \"Sovtes, LTD\",\n            \"titleFull\": \"Sovtes Limited\",\n            \"natcomid\": \"39028162\"\n        },\n        {\n            \"id\": 828,\n            \"title\": \"Стартап.уа, LTD\",\n            \"titleFull\": \"Стартап.уа, Общество с ограниченной ответственностью\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 839,\n            \"title\": \"LTD Траверсы\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 857,\n            \"title\": \"ДБО, LTD\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"2232323\"\n        },\n        {\n            \"id\": 1815,\n            \"title\": \"Зеланд, ЧП\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"1258756489\"\n        },\n        {\n            \"id\": 1855,\n            \"title\": \"Брендсорс, LTD\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 1857,\n            \"title\": \"Лорейн, ДП\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 1858,\n            \"title\": \"Ремкомплект, LTD\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 1865,\n            \"title\": \"Отправка, LTD\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 1941,\n            \"title\": \"Таможня 1\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 1942,\n            \"title\": \"Floha Logistic\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 1943,\n            \"title\": \"Немецкая таможня\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 1945,\n            \"title\": \"Склад, LTD\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 1946,\n            \"title\": \"Пчелкин, СП\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 2207,\n            \"title\": \"Укринвестрой, ГП\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 2288,\n            \"title\": \"КремСофтСервис\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 2429,\n            \"title\": \"RAILWAY-CARRIAGE REPAIR WORKS-99 S.A.\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 2461,\n            \"title\": \"Свинтус, МЧП\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 2936,\n            \"title\": \"Sherlock Inc\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 2937,\n            \"title\": \"Bureau of Investigation\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 3544,\n            \"title\": \"eary\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"rey\"\n        },\n        {\n            \"id\": 3545,\n            \"title\": \"rstu\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"rstu\"\n        },\n        {\n            \"id\": 4041,\n            \"title\": \"Вентус, LTD\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"245145322\"\n        },\n        {\n            \"id\": 852,\n            \"title\": \"Ужгород Импекс Стар, ЧП\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"12345678\"\n        },\n        {\n            \"id\": 4454,\n            \"title\": \"Рубероид, LTD\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 4455,\n            \"title\": \"Дунай, LTD\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 4458,\n            \"title\": \"Рафинад\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 1944,\n            \"title\": \"Киевская таможня\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5365,\n            \"title\": \"Империал групп Украина, LTD\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"01010110\"\n        },\n        {\n            \"id\": 5372,\n            \"title\": \"Компания some\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"Компания some  ЕГРПОУ\"\n        },\n        {\n            \"id\": 5377,\n            \"title\": \"23323\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"23232\"\n        },\n        {\n            \"id\": 5378,\n            \"title\": \"Совтес, LTD\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"8857678\"\n        },\n        {\n            \"id\": 4469,\n            \"title\": \"Киев\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5379,\n            \"title\": \"лукоц, LTD\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 2688,\n            \"title\": \"Марс, ФОП\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"12\"\n        },\n        {\n            \"id\": 50,\n            \"title\": \"Либра Транс, LTD\",\n            \"titleFull\": \", Общество с ограниченной ответственностью)\",\n            \"natcomid\": \"1\"\n        },\n        {\n            \"id\": 5380,\n            \"title\": \"Лісова пісня, ЧП\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"123456789\"\n        },\n        {\n            \"id\": 5381,\n            \"title\": \"Супермены\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"000000\"\n        },\n        {\n            \"id\": 5382,\n            \"title\": \"Москалики\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"000000\"\n        },\n        {\n            \"id\": 5383,\n            \"title\": \"Кит\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"62896254\"\n        },\n        {\n            \"id\": 5384,\n            \"title\": \"Ресторанчик\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"36372232\"\n        },\n        {\n            \"id\": 5388,\n            \"title\": \"Бэби, ЧАО\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"14708458\"\n        },\n        {\n            \"id\": 5389,\n            \"title\": \"Монстры, Корп\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"00411938\"\n        },\n        {\n            \"id\": 5390,\n            \"title\": \"Главпочтамт\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"38155194\"\n        },\n        {\n            \"id\": 5392,\n            \"title\": \"Таможенка, ЧАО\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"36913534\"\n        },\n        {\n            \"id\": 5423,\n            \"title\": \"Компания без формы\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"02174626\"\n        },\n        {\n            \"id\": 5424,\n            \"title\": \"Зверинец\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5431,\n            \"title\": \"Оболонь, ПАО\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5436,\n            \"title\": \"Rj\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"1234567890\"\n        },\n        {\n            \"id\": 5437,\n            \"title\": \"ьи\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"0369258147\"\n        },\n        {\n            \"id\": 5444,\n            \"title\": \"Днепропетровский таможенный пост, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 3001,\n            \"title\": \"Z.I.des Hauts Sarts\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 3000,\n            \"title\": \"Arcelor Mittal Ringmill Zoning Industriel CMI,\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5453,\n            \"title\": \"Кожушок\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5454,\n            \"title\": \"а\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5366,\n            \"title\": \"Компания\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5455,\n            \"title\": \"Таможенка\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5465,\n            \"title\": \"тат\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"7744556622\"\n        },\n        {\n            \"id\": 5466,\n            \"title\": \"бма\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"9966330022\"\n        },\n        {\n            \"id\": 5467,\n            \"title\": \"Таможня в Маяках\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"0033115588\"\n        },\n        {\n            \"id\": 5468,\n            \"title\": \"Тирас (Маяки, Паланка)\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"9955117700\"\n        },\n        {\n            \"id\": 5469,\n            \"title\": \"Частное лицо, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 17656,\n            \"title\": \"Цирк, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19335,\n            \"title\": \"Company\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"0369852014\"\n        },\n        {\n            \"id\": 19336,\n            \"title\": \"Svb tr\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"3698520147\"\n        },\n        {\n            \"id\": 19339,\n            \"title\": \"Rk\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"0000001123\"\n        },\n        {\n            \"id\": 19340,\n            \"title\": \"Е\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"0011447788\"\n        },\n        {\n            \"id\": 19341,\n            \"title\": \"Компанийка в Одессочке\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"0033669988\"\n        },\n        {\n            \"id\": 19342,\n            \"title\": \"Корпорация, Корп\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19343,\n            \"title\": \"Ка, Корп\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19344,\n            \"title\": \", ДП\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19364,\n            \"title\": \"Жучок, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19381,\n            \"title\": \"Soumen katu, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19382,\n            \"title\": \"Ислашка, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19383,\n            \"title\": \"Мизури!, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19384,\n            \"title\": \"Oesterreich, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19386,\n            \"title\": \"Калгари Тауэр, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5430,\n            \"title\": \"Киев\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"39469994\"\n        },\n        {\n            \"id\": 2452,\n            \"title\": \"1\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"3568803982\"\n        },\n        {\n            \"id\": 19388,\n            \"title\": \"..., ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19389,\n            \"title\": \"Кисса, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19390,\n            \"title\": \"КОшак, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19391,\n            \"title\": \"Жванык, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19392,\n            \"title\": \"Жашка, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19393,\n            \"title\": \"ячвчц у, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19394,\n            \"title\": \"счвв, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19395,\n            \"title\": \"Мняфге, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19396,\n            \"title\": \"Няшка, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19397,\n            \"title\": \"Ketu, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19398,\n            \"title\": \"Домик, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19399,\n            \"title\": \"Зорька, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19376,\n            \"title\": \"Тестик, ЧЛ\",\n            \"titleFull\": \"Тестик, Частное лицо\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19400,\n            \"title\": \"Общажка, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19401,\n            \"title\": \"Котик-бегемотик, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19402,\n            \"title\": \"Бяка, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19373,\n            \"title\": \"согласно заявке\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 571,\n            \"title\": \"тестовая, АО\",\n            \"titleFull\": \"тестовая, Частное акционерное общество\",\n            \"natcomid\": \"899фывоиирфоыв\"\n        },\n        {\n            \"id\": 19403,\n            \"title\": \"Нячго, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19404,\n            \"title\": \"Морько, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19405,\n            \"title\": \"Котик, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"876543215\"\n        },\n        {\n            \"id\": 19406,\n            \"title\": \"авфыа\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19407,\n            \"title\": \"афвы\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19409,\n            \"title\": \"ло\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19410,\n            \"title\": \"Манька, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19411,\n            \"title\": \"Ванька\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19424,\n            \"title\": \"Компашкес, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19425,\n            \"title\": \"Тустаньчик, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19443,\n            \"title\": \"Ремонтик, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19447,\n            \"title\": \"Кошка, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19458,\n            \"title\": \"Котичек, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19459,\n            \"title\": \"Мимими, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19462,\n            \"title\": \"Волынянка, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19463,\n            \"title\": \"Ня, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19464,\n            \"title\": \"Креведго, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19467,\n            \"title\": \"Няняня, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19468,\n            \"title\": \"Саф, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5435,\n            \"title\": \"Парам, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19470,\n            \"title\": \"Изба, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19472,\n            \"title\": \"Офис, ТОВ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19473,\n            \"title\": \"алкомаркет, ТОВ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19486,\n            \"title\": \"Равиолька, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19487,\n            \"title\": \"Кротик, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19489,\n            \"title\": \"Предприятие Кавычка, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19502,\n            \"title\": \"Рассейка, LTD\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19504,\n            \"title\": \"ВВЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19505,\n            \"title\": \"Винницкая птицефабрика\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19506,\n            \"title\": \"МПФРЛЦекспорт\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19507,\n            \"title\": \"PFL\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19575,\n            \"title\": \"Ровно тест\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19591,\n            \"title\": \"Юнит\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19615,\n            \"title\": \"Студия Лебедева\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19616,\n            \"title\": \"тут\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 678720,\n            \"title\": \"Ровноснаб\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 678787,\n            \"title\": \"около, тест\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 2974,\n            \"title\": \"МХП\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 678881,\n            \"title\": \"СОХ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 678884,\n            \"title\": \"Sukano AG\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19587,\n            \"title\": \"ТОВ Надя\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"12345\"\n        },\n        {\n            \"id\": 678958,\n            \"title\": \"123456\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 679136,\n            \"title\": \"Жлоб\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 679137,\n            \"title\": \"Моряк, LTD\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5432,\n            \"title\": \"Совтес\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 679161,\n            \"title\": \"Раб\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 679412,\n            \"title\": \"Кафе\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19449,\n            \"title\": \"Школа\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 679413,\n            \"title\": \"Кавярня\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 679414,\n            \"title\": \"Книгарня\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 679415,\n            \"title\": \"Спа-салон\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 679872,\n            \"title\": \"Моряк\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 679746,\n            \"title\": \"Бугай\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 680697,\n            \"title\": \"Контора, LTD\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"22334455\"\n        },\n        {\n            \"id\": 680698,\n            \"title\": \"Совтек\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 405,\n            \"title\": \"Енотик, ЧЛ\",\n            \"titleFull\": \"Енотичек\",\n            \"natcomid\": \"37534432\"\n        },\n        {\n            \"id\": 402,\n            \"title\": \"ОТО, ПАО\",\n            \"titleFull\": \"ОТО, Публичное акционерное общество\",\n            \"natcomid\": \"3053508595\"\n        },\n        {\n            \"id\": 681410,\n            \"title\": \"Бугай\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"3227002595\"\n        },\n        {\n            \"id\": 681434,\n            \"title\": \"олдіідідід\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"41444125\"\n        },\n        {\n            \"id\": 681433,\n            \"title\": \"татата\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"31826484\"\n        },\n        {\n            \"id\": 682023,\n            \"title\": \"ТОВ РУШ 32007740\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"3294211325\"\n        },\n        {\n            \"id\": 17895,\n            \"title\": \"ТРАНС-АТЛАС\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"36071694\"\n        },\n        {\n            \"id\": 2073,\n            \"title\": \"Транс-Логiстик, ТОВ\",\n            \"titleFull\": \"Транс-Логiстик, Товариство з Обмеженою Відповідальностю\",\n            \"natcomid\": \"35917412\"\n        },\n        {\n            \"id\": 682382,\n            \"title\": \"Моряк\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"397400637\"\n        },\n        {\n            \"id\": 682763,\n            \"title\": \"Моряк\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"434554324\"\n        },\n        {\n            \"id\": 1482,\n            \"title\": \"Агротеп, LTD\",\n            \"titleFull\": \"Агротеп, Общество с ограниченной ответственностью\",\n            \"natcomid\": \"21496904\"\n        },\n        {\n            \"id\": 682782,\n            \"title\": \"Моряк\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"3753443244\"\n        },\n        {\n            \"id\": 682803,\n            \"title\": \"Тестер Кладовщик\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"12345546236\"\n        },\n        {\n            \"id\": 682832,\n            \"title\": \"Моряк\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"45реввпр566уу4\"\n        },\n        {\n            \"id\": 679768,\n            \"title\": \"INSTAL PROJEKT  Gawlowscy, Scierzynscy Spolka Jawna\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 682750,\n            \"title\": \"Агросем\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 682957,\n            \"title\": \"Тест\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"37534432768678\"\n        },\n        {\n            \"id\": 682968,\n            \"title\": \"Моряк\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"5е3е34е634е\"\n        },\n        {\n            \"id\": 682969,\n            \"title\": \"Бугай\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"3591741265564\"\n        },\n        {\n            \"id\": 682970,\n            \"title\": \"Жлоб\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"34н45гц4гн4\"\n        },\n        {\n            \"id\": 682981,\n            \"title\": \"Моряк\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"546789876543\"\n        },\n        {\n            \"id\": 682982,\n            \"title\": \"мотор\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"п7ап47цп73\"\n        },\n        {\n            \"id\": 678728,\n            \"title\": \"Агромат\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 683005,\n            \"title\": \"\\\"Агромат\\\" м. Львів,Дуля І,Покупець,САЛОН АРХІТЕКТУРА БУДІВНИЦТВО ДИЗАЙН ТОВ,Пелешко Л.З. ФОП,Коваль О.,Кончікова Т.М. ФОП\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 683055,\n            \"title\": \"дом Колотушкина\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 683056,\n            \"title\": \"дом культуры\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 683261,\n            \"title\": \"Vinicola CASTELLO DI LOZZOLO dei Fratelli Berteletti s.r.l.\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 683275,\n            \"title\": \"Моряк\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"5щ4групу\"\n        },\n        {\n            \"id\": 829448,\n            \"title\": \"unit mega city \\\"quote\\\"\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"iuygbno987tgnko9876tg\"\n        },\n        {\n            \"id\": 829450,\n            \"title\": \"Бадрак\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"1234567890йцукен\"\n        },\n        {\n            \"id\": 829451,\n            \"title\": \"Одна и та же\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"3g753g44j32\"\n        },\n        {\n            \"id\": 829452,\n            \"title\": \"Одна и та же\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"36071694ат\"\n        },\n        {\n            \"id\": 829453,\n            \"title\": \"Моряк\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"36474рукр\"\n        },\n        {\n            \"id\": 829454,\n            \"title\": \"Моряк\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"34е3п3\"\n        },\n        {\n            \"id\": 19461,\n            \"title\": \"Мняг!, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 1299,\n            \"title\": \"АТБ-Маркет, ТОВ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"30487219\"\n        },\n        {\n            \"id\": 834776,\n            \"title\": \"Noyon Uul Erdene” LLC\",\n            \"titleFull\": \"\",\n            \"natcomid\": null\n        },\n        {\n            \"id\": 834777,\n            \"title\": \"ТОВАРИСТВО З ОБМЕЖЕНОЮ ВІДПОВІДАЛЬНІСТЮ ЄВРО-АЗІАТСЬКА ЛОГІСТИЧНА КОМПАНІЯ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"39195657\"\n        },\n        {\n            \"id\": 834787,\n            \"title\": \"Noyon Uul Erdene LLC\",\n            \"titleFull\": \"\",\n            \"natcomid\": null\n        },\n        {\n            \"id\": 835254,\n            \"title\": \"INSTAL PROJEKT Gawlowscy, Scierzynscy Spolka Jawna\",\n            \"titleFull\": \"\",\n            \"natcomid\": null\n        },\n        {\n            \"id\": 679004,\n            \"title\": \"МонтажЛифтТекстильЛизинг, LTD\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"81926763\"\n        },\n        {\n            \"id\": 679002,\n            \"title\": \"МеталРос, LTD\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"24026833\"\n        },\n        {\n            \"id\": 679005,\n            \"title\": \"Восток, Корп\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"70121803\"\n        },\n        {\n            \"id\": 679003,\n            \"title\": \"Мотор, ПАО\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"25272710\"\n        },\n        {\n            \"id\": 679006,\n            \"title\": \"ОблПив, ТОВ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"80759553\"\n        }\n    ]\n}"},{"id":"bdeb9247-c734-409c-8a3f-9b6e09a30a58","name":"Success (byCountry passed)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCompanies?byCheckpoint=true&byCountry={{companiesByCheckpointCountry}}","host":["{{host}}"],"path":["a","v2","rest","public","getCompanies"],"query":[{"key":"byCheckpoint","value":"true","description":"True: Required bool. Returns the list of companies who own checkpoints in your account. False: error"},{"key":"byCountry","value":"{{companiesByCheckpointCountry}}","description":"Optional ind. Id of the country. Returns the list of companies with loading/unloading checkpoints in a given country"},{"key":"byRegion","value":"{{companiesByCheckpointRegion}}","description":"Optional ind. Id of the region. Returns the list of companies with loading/unloading checkpoints in a given region","disabled":true},{"key":"byTown","value":"{{companiesByCheckpointTown}}","description":"Optional ind. Id of the town. Returns the list of companies with loading/unloading checkpoints in a given town","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1855,\n            \"title\": \"Брендсорс, LTD\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 1857,\n            \"title\": \"Лорейн, ДП\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 1858,\n            \"title\": \"Ремкомплект, LTD\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 1865,\n            \"title\": \"Отправка, LTD\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5382,\n            \"title\": \"Москалики\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"000000\"\n        },\n        {\n            \"id\": 5383,\n            \"title\": \"Кит\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"62896254\"\n        },\n        {\n            \"id\": 5388,\n            \"title\": \"Бэби, ЧАО\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"14708458\"\n        },\n        {\n            \"id\": 19615,\n            \"title\": \"Slava Ukraini\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19616,\n            \"title\": \"тут\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 679746,\n            \"title\": \"Бугай\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 682957,\n            \"title\": \"Тест\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"37534432768678\"\n        },\n        {\n            \"id\": 679004,\n            \"title\": \"МонтажЛифтТекстильЛизинг, LTD\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"81926763\"\n        },\n        {\n            \"id\": 679002,\n            \"title\": \"МеталРос, LTD\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"24026833\"\n        },\n        {\n            \"id\": 679005,\n            \"title\": \"Восток, Корп\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"70121803\"\n        },\n        {\n            \"id\": 679003,\n            \"title\": \"Мотор, ПАО\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"25272710\"\n        },\n        {\n            \"id\": 679006,\n            \"title\": \"ОблПив, ТОВ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"80759553\"\n        }\n    ]\n}"},{"id":"f954bd6a-0782-4dd7-9a9f-221b12c24f6f","name":"Success (byRegion passed)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCompanies?byCheckpoint=true&byRegion={{companiesByCheckpointRegion}}","host":["{{host}}"],"path":["a","v2","rest","public","getCompanies"],"query":[{"key":"byCheckpoint","value":"true","description":"True: Required bool. Returns the list of companies who own checkpoints in your account. False: error"},{"key":"byCountry","value":"{{companiesByCheckpointCountry}}","description":"Optional ind. Id of the country. Returns the list of companies with loading/unloading checkpoints in a given country","disabled":true},{"key":"byRegion","value":"{{companiesByCheckpointRegion}}","description":"Optional ind. Id of the region. Returns the list of companies with loading/unloading checkpoints in a given region"},{"key":"byTown","value":"{{companiesByCheckpointTown}}","description":"Optional ind. Id of the town. Returns the list of companies with loading/unloading checkpoints in a given town","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 572,\n            \"title\": \"testing, АО\",\n            \"titleFull\": \"testing, Частное акционерное общество\",\n            \"natcomid\": \"1231l2knk 123\"\n        },\n        {\n            \"id\": 2207,\n            \"title\": \"Укринвестрой, ГП\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 2461,\n            \"title\": \"Свинтус, МЧП\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 3,\n            \"title\": \"ТОВ СОВТЕС\",\n            \"titleFull\": \"ТОВАРИСТВО З ОБМЕЖЕНОЮ ВІДПОВІДАЛЬНІСТЮ СОВТЕС\",\n            \"natcomid\": \"39028162\"\n        },\n        {\n            \"id\": 50,\n            \"title\": \"Либра Транс, ТОВ\",\n            \"titleFull\": \"Либра Транс, ТОВАРИСТВО З ОБМЕЖЕНОЮ ВІДПОВІДАЛЬНІСТЮ\",\n            \"natcomid\": \"1\"\n        },\n        {\n            \"id\": 852,\n            \"title\": \"Ужгород Импекс Стар, ЧП\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"12345678\"\n        },\n        {\n            \"id\": 5389,\n            \"title\": \"Монстры, Корп\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"00411938\"\n        },\n        {\n            \"id\": 5423,\n            \"title\": \"Компания без формы\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"02174626\"\n        },\n        {\n            \"id\": 5453,\n            \"title\": \"Кожушок\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5366,\n            \"title\": \"Компания\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5466,\n            \"title\": \"бма\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"9966330022\"\n        },\n        {\n            \"id\": 19340,\n            \"title\": \"Е\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"0011447788\"\n        },\n        {\n            \"id\": 19463,\n            \"title\": \"Ня, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19505,\n            \"title\": \"Винницкая птицефабрика\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 405,\n            \"title\": \"Енотик, ЧЛ\",\n            \"titleFull\": \"Енотичек\",\n            \"natcomid\": \"37534432\"\n        }\n    ]\n}"},{"id":"7f1a14bc-b13f-41c5-92f6-33f24c721ae8","name":"Success (byTown passed)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCompanies?byCheckpoint=true&byTown={{companiesByCheckpointTown}}","host":["{{host}}"],"path":["a","v2","rest","public","getCompanies"],"query":[{"key":"byCheckpoint","value":"true","description":"True: Required bool. Returns the list of companies who own checkpoints in your account. False: error"},{"key":"byCountry","value":"{{companiesByCheckpointCountry}}","description":"Optional ind. Id of the country. Returns the list of companies with loading/unloading checkpoints in a given country","disabled":true},{"key":"byRegion","value":"{{companiesByCheckpointRegion}}","description":"Optional ind. Id of the region. Returns the list of companies with loading/unloading checkpoints in a given region","disabled":true},{"key":"byTown","value":"{{companiesByCheckpointTown}}","description":"Optional ind. Id of the town. Returns the list of companies with loading/unloading checkpoints in a given town"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 60,\n            \"title\": \"Киевский РФ, ПП\",\n            \"titleFull\": \"Киевский РФ, ПП\",\n            \"natcomid\": \"36058799\"\n        },\n        {\n            \"id\": 781,\n            \"title\": \"Берг, LTD\",\n            \"titleFull\": \"Берг, limited\",\n            \"natcomid\": \"10029029\"\n        },\n        {\n            \"id\": 3,\n            \"title\": \"ТОВ СОВТЕС\",\n            \"titleFull\": \"ТОВАРИСТВО З ОБМЕЖЕНОЮ ВІДПОВІДАЛЬНІСТЮ СОВТЕС\",\n            \"natcomid\": \"39028162\"\n        },\n        {\n            \"id\": 828,\n            \"title\": \"Стартап.уа, ТОВ\",\n            \"titleFull\": \"Стартап.уа, ТОВАРИСТВО З ОБМЕЖЕНОЮ ВІДПОВІДАЛЬНІСТЮ\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 857,\n            \"title\": \"ДБО, LTD\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"2232323\"\n        },\n        {\n            \"id\": 4454,\n            \"title\": \"Рубероид, LTD\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 1944,\n            \"title\": \"Киевская таможня\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5365,\n            \"title\": \"Империал групп Украина, LTD\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"01010110\"\n        },\n        {\n            \"id\": 5372,\n            \"title\": \"Компания Правды\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"Компания Правды  ЕГРПОУ\"\n        },\n        {\n            \"id\": 5377,\n            \"title\": \"23323\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"23232\"\n        },\n        {\n            \"id\": 5378,\n            \"title\": \"Совтес, LTD\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"8857678\"\n        },\n        {\n            \"id\": 4469,\n            \"title\": \"Киев\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5379,\n            \"title\": \"лукоц, LTD\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5431,\n            \"title\": \"Оболонь, ПАО\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5437,\n            \"title\": \"ьи\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"0369258147\"\n        },\n        {\n            \"id\": 5469,\n            \"title\": \"Частное лицо, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 17656,\n            \"title\": \"Цирк, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19342,\n            \"title\": \"Корпорация, Корп\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19343,\n            \"title\": \"Ка, Корп\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19344,\n            \"title\": \", ДП\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        }\n    ]\n}"},{"id":"29d8683d-92b8-40db-9f4d-b5cdf9c02e09","name":"Success with all parameters","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCompanies?byCheckpoint=true&byCountry={{companiesByCheckpointCountry}}&byRegion={{companiesByCheckpointRegion}}&byTown={{companiesByCheckpointTown}}","host":["{{host}}"],"path":["a","v2","rest","public","getCompanies"],"query":[{"key":"byCheckpoint","value":"true","description":"Required bool. True: Returns the list of companies who own loading/unloading checkpoint in your account. False: not allowed"},{"key":"byCountry","value":"{{companiesByCheckpointCountry}}","description":"Optional int. Id of the country. Returns the list of companies with loading/unloading checkpoints in a given country. `byCheckpoint` parameter must be on"},{"key":"byRegion","value":"{{companiesByCheckpointRegion}}","description":"Optional int. Id of the region. Returns the list of companies with loading/unloading checkpoints in a given region. `byCheckpoint` parameter must be on"},{"key":"byTown","value":"{{companiesByCheckpointTown}}","description":"Optional int. Id of the town. Returns the list of companies with loading/unloading checkpoints in a given town. `byCheckpoint` parameter must be on"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 60,\n            \"title\": \"УГМК Киевский РФ, АО\",\n            \"titleFull\": \"УГМК Киевский РФ, limitd\",\n            \"natcomid\": \"36058799\"\n        },\n        {\n            \"id\": 572,\n            \"title\": \"testing, АО\",\n            \"titleFull\": \"testing, limitd\",\n            \"natcomid\": \"1231l2knk 123\"\n        },\n        {\n            \"id\": 781,\n            \"title\": \"Берг, ПАО\",\n            \"titleFull\": \"Берг, limited\",\n            \"natcomid\": \"10029029\"\n        },\n        {\n            \"id\": 3,\n            \"title\": \"ТОВ СОВТЕС\",\n            \"titleFull\": \"ТОВАРИСТВО З ОБМЕЖЕНОЮ ВІДПОВІДАЛЬНІСТЮ СОВТЕС\",\n            \"natcomid\": \"39028162\"\n        },\n        {\n            \"id\": 828,\n            \"title\": \"Стартап.уа, ltd\",\n            \"titleFull\": \"Стартап.уа, limited\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 839,\n            \"title\": \"ООО Траверсы\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 857,\n            \"title\": \"ДБО, ООО\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"2232323\"\n        },\n        {\n            \"id\": 1815,\n            \"title\": \"Зеланд, ЧП\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"1258756489\"\n        },\n        {\n            \"id\": 1855,\n            \"title\": \"Брендсорс, ООО\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 1857,\n            \"title\": \"Лорейн, ДП\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 1858,\n            \"title\": \"Ремкомплект, ЗАО\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 1865,\n            \"title\": \"Отправка, ООО\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 1941,\n            \"title\": \"Таможня 1\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 1942,\n            \"title\": \"Floha Logistic\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 1943,\n            \"title\": \"Немецкая таможня\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 1945,\n            \"title\": \"Склад, ООО\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 1946,\n            \"title\": \"Пчелкин, СП\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 2207,\n            \"title\": \"Укринвестрой, ГП\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 2288,\n            \"title\": \"КремСофтСервис\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 2429,\n            \"title\": \"RAILWAY-CARRIAGE REPAIR WORKS-99 S.A.\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 2461,\n            \"title\": \"Свинтус, МЧП\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 2936,\n            \"title\": \"Sherlock Inc\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 2937,\n            \"title\": \"Bureau of Investigation\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 3544,\n            \"title\": \"eary\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"rey\"\n        },\n        {\n            \"id\": 3545,\n            \"title\": \"rstu\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"rstu\"\n        },\n        {\n            \"id\": 4041,\n            \"title\": \"Вентус, ЗАО\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"245145322\"\n        },\n        {\n            \"id\": 852,\n            \"title\": \"Ужгород Импекс Стар, ЧП\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"12345678\"\n        },\n        {\n            \"id\": 4454,\n            \"title\": \"Рубероид, ООО\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 4455,\n            \"title\": \"Дунай, ООО\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 4458,\n            \"title\": \"Рафинад\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 1944,\n            \"title\": \"Киевская таможня\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5365,\n            \"title\": \"Империал групп Украина, ООО\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"01010110\"\n        },\n        {\n            \"id\": 5372,\n            \"title\": \"Компания Правды\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"Компания Правды  ЕГРПОУ\"\n        },\n        {\n            \"id\": 5377,\n            \"title\": \"23323\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"23232\"\n        },\n        {\n            \"id\": 5378,\n            \"title\": \"Совтес, ООО\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"8857678\"\n        },\n        {\n            \"id\": 4469,\n            \"title\": \"Киев\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5379,\n            \"title\": \"лукоц, ООО\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 2688,\n            \"title\": \"Марс, ФОП\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"12\"\n        },\n        {\n            \"id\": 50,\n            \"title\": \"Либра Транс, ООО\",\n            \"titleFull\": \", Общество с ограниченной ответственностью)\",\n            \"natcomid\": \"1\"\n        },\n        {\n            \"id\": 5380,\n            \"title\": \"Лісова пісня, ЧП\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"123456789\"\n        },\n        {\n            \"id\": 5381,\n            \"title\": \"Супермены\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"000000\"\n        },\n        {\n            \"id\": 5382,\n            \"title\": \"Москалики\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"000000\"\n        },\n        {\n            \"id\": 5383,\n            \"title\": \"Кит\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"62896254\"\n        },\n        {\n            \"id\": 5384,\n            \"title\": \"Ресторанчик\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"36372232\"\n        },\n        {\n            \"id\": 5388,\n            \"title\": \"Бэби, ЧАО\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"14708458\"\n        },\n        {\n            \"id\": 5389,\n            \"title\": \"Монстры, Корп\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"00411938\"\n        },\n        {\n            \"id\": 5390,\n            \"title\": \"Главпочтамт\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"38155194\"\n        },\n        {\n            \"id\": 5392,\n            \"title\": \"Таможенка, ЧАО\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"36913534\"\n        },\n        {\n            \"id\": 5423,\n            \"title\": \"Компания без формы\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"02174626\"\n        },\n        {\n            \"id\": 5424,\n            \"title\": \"Зверинец\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5431,\n            \"title\": \"Оболонь, ПАО\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5436,\n            \"title\": \"Rj\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"1234567890\"\n        },\n        {\n            \"id\": 5437,\n            \"title\": \"ьи\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"0369258147\"\n        },\n        {\n            \"id\": 5444,\n            \"title\": \"Днепропетровский таможенный пост, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 3001,\n            \"title\": \"Z.I.des Hauts Sarts\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 3000,\n            \"title\": \"Arcelor Mittal Ringmill Zoning Industriel CMI,\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5453,\n            \"title\": \"Кожушок\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5454,\n            \"title\": \"а\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5366,\n            \"title\": \"Компания\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5455,\n            \"title\": \"Таможенка\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5465,\n            \"title\": \"тат\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"7744556622\"\n        },\n        {\n            \"id\": 5466,\n            \"title\": \"бма\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"9966330022\"\n        },\n        {\n            \"id\": 5467,\n            \"title\": \"Таможня в Маяках\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"0033115588\"\n        },\n        {\n            \"id\": 5468,\n            \"title\": \"Тирас (Маяки, Паланка)\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"9955117700\"\n        },\n        {\n            \"id\": 5469,\n            \"title\": \"Частное лицо, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 17656,\n            \"title\": \"Цирк, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19335,\n            \"title\": \"Company\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"0369852014\"\n        },\n        {\n            \"id\": 19336,\n            \"title\": \"Svb tr\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"3698520147\"\n        },\n        {\n            \"id\": 19339,\n            \"title\": \"Rk\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"0000001123\"\n        },\n        {\n            \"id\": 19340,\n            \"title\": \"Е\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"0011447788\"\n        },\n        {\n            \"id\": 19341,\n            \"title\": \"Компанийка в Одессочке\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"0033669988\"\n        },\n        {\n            \"id\": 19342,\n            \"title\": \"Корпорация, Корп\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19343,\n            \"title\": \"Ка, Корп\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19344,\n            \"title\": \", ДП\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19364,\n            \"title\": \"Жучок, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19381,\n            \"title\": \"Soumen katu, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19382,\n            \"title\": \"Ислашка, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19383,\n            \"title\": \"Мизури!, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19384,\n            \"title\": \"Oesterreich, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19386,\n            \"title\": \"Калгари Тауэр, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5430,\n            \"title\": \"Киев\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"39469994\"\n        },\n        {\n            \"id\": 2452,\n            \"title\": \"1\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"3568803982\"\n        },\n        {\n            \"id\": 19388,\n            \"title\": \"..., ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19389,\n            \"title\": \"Кисса, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19390,\n            \"title\": \"КОшак, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19391,\n            \"title\": \"Жванык, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19392,\n            \"title\": \"Жашка, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19393,\n            \"title\": \"ячвчц у, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19394,\n            \"title\": \"счвв, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19395,\n            \"title\": \"Мняфге, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19396,\n            \"title\": \"Няшка, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19397,\n            \"title\": \"Ketu, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19398,\n            \"title\": \"Домик, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19399,\n            \"title\": \"Зорька, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19376,\n            \"title\": \"Тестик, ЧЛ\",\n            \"titleFull\": \"Тестик, Частное лицо\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19400,\n            \"title\": \"Общажка, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19401,\n            \"title\": \"Котик-бегемотик, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19402,\n            \"title\": \"Бяка, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19373,\n            \"title\": \"согласно заявке\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 571,\n            \"title\": \"тестовая, АО\",\n            \"titleFull\": \"тестовая, limitd\",\n            \"natcomid\": \"899фывоиирфоыв\"\n        },\n        {\n            \"id\": 19403,\n            \"title\": \"Нячго, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19404,\n            \"title\": \"Морько, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19405,\n            \"title\": \"Котик, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"876543215\"\n        },\n        {\n            \"id\": 19406,\n            \"title\": \"авфыа\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19407,\n            \"title\": \"афвы\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19409,\n            \"title\": \"ло\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19410,\n            \"title\": \"Манька, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19411,\n            \"title\": \"Ванька\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19424,\n            \"title\": \"Компашкес, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19425,\n            \"title\": \"Тустаньчик, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19443,\n            \"title\": \"Ремонтик, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19447,\n            \"title\": \"Кошка, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19458,\n            \"title\": \"Котичек, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19459,\n            \"title\": \"Мимими, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19462,\n            \"title\": \"Волынянка, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19463,\n            \"title\": \"Ня, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19464,\n            \"title\": \"Креведго, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19467,\n            \"title\": \"Няняня, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19468,\n            \"title\": \"Саф, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5435,\n            \"title\": \"Парам, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19470,\n            \"title\": \"Изба, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19472,\n            \"title\": \"Офис, ТОВ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19473,\n            \"title\": \"алкомаркет, ТОВ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19486,\n            \"title\": \"Равиолька, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19487,\n            \"title\": \"Кротик, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19489,\n            \"title\": \"Предприятие Кавычка, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19502,\n            \"title\": \"Рассейка, ЗАО\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19504,\n            \"title\": \"ВВЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19505,\n            \"title\": \"Винницкая птицефабрика\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19506,\n            \"title\": \"МПФРЛЦекспорт\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19507,\n            \"title\": \"PFL\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19575,\n            \"title\": \"Ровно тест\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19591,\n            \"title\": \"Юнит\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19615,\n            \"title\": \"Студия Лебедева\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19616,\n            \"title\": \"тут\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 678720,\n            \"title\": \"Ровноснаб\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 678787,\n            \"title\": \"около, тест\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 2974,\n            \"title\": \"МХП\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 678881,\n            \"title\": \"СОХ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 678884,\n            \"title\": \"Sukano AG\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19587,\n            \"title\": \"ТОВ Надя\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"12345\"\n        },\n        {\n            \"id\": 678958,\n            \"title\": \"123456\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 679136,\n            \"title\": \"Жлоб\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 679137,\n            \"title\": \"Моряк, ЗАО\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 5432,\n            \"title\": \"Совтес\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 679161,\n            \"title\": \"Раб\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 679412,\n            \"title\": \"Кафе\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 19449,\n            \"title\": \"Школа\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 679413,\n            \"title\": \"Кавярня\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 679414,\n            \"title\": \"Книгарня\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 679415,\n            \"title\": \"Спа-салон\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 679872,\n            \"title\": \"Моряк\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 679746,\n            \"title\": \"Бугай\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 680697,\n            \"title\": \"Контора, ЗАО\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"22334455\"\n        },\n        {\n            \"id\": 680698,\n            \"title\": \"Совтек\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 405,\n            \"title\": \"Енотик, ЧЛ\",\n            \"titleFull\": \"Енотичек\",\n            \"natcomid\": \"37534432\"\n        },\n        {\n            \"id\": 402,\n            \"title\": \"ОТО, ПАО\",\n            \"titleFull\": \"ОТО, limited\",\n            \"natcomid\": \"3053508595\"\n        },\n        {\n            \"id\": 681410,\n            \"title\": \"Бугай\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"3227002595\"\n        },\n        {\n            \"id\": 681434,\n            \"title\": \"олдіідідід\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"41444125\"\n        },\n        {\n            \"id\": 681433,\n            \"title\": \"татата\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"31826484\"\n        },\n        {\n            \"id\": 682023,\n            \"title\": \"ТОВ РУШ 32007740\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"3294211325\"\n        },\n        {\n            \"id\": 17895,\n            \"title\": \"ТРАНС-АТЛАС\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"36071694\"\n        },\n        {\n            \"id\": 2073,\n            \"title\": \"Транс-Логiстик, ТОВ\",\n            \"titleFull\": \"Транс-Логiстик, Товариство з Обмеженою Відповідальностю\",\n            \"natcomid\": \"35917412\"\n        },\n        {\n            \"id\": 682382,\n            \"title\": \"Моряк\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"397400637\"\n        },\n        {\n            \"id\": 682763,\n            \"title\": \"Моряк\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"434554324\"\n        },\n        {\n            \"id\": 1482,\n            \"title\": \"Агротеп, ООО\",\n            \"titleFull\": \"Агротеп, Общество с ограниченной ответственностью\",\n            \"natcomid\": \"21496904\"\n        },\n        {\n            \"id\": 682782,\n            \"title\": \"Моряк\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"3753443244\"\n        },\n        {\n            \"id\": 682803,\n            \"title\": \"Тестер Кладовщик\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"12345546236\"\n        },\n        {\n            \"id\": 682832,\n            \"title\": \"Моряк\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"45реввпр566уу4\"\n        },\n        {\n            \"id\": 679768,\n            \"title\": \"INSTAL PROJEKT  Gawlowscy, Scierzynscy Spolka Jawna\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 682750,\n            \"title\": \"Агросем\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 682957,\n            \"title\": \"Тест\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"37534432768678\"\n        },\n        {\n            \"id\": 682968,\n            \"title\": \"Моряк\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"5е3е34е634е\"\n        },\n        {\n            \"id\": 682969,\n            \"title\": \"Бугай\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"3591741265564\"\n        },\n        {\n            \"id\": 682970,\n            \"title\": \"Жлоб\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"34н45гц4гн4\"\n        },\n        {\n            \"id\": 682981,\n            \"title\": \"Моряк\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"546789876543\"\n        },\n        {\n            \"id\": 682982,\n            \"title\": \"мотор\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"п7ап47цп73\"\n        },\n        {\n            \"id\": 678728,\n            \"title\": \"Агромат\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 683005,\n            \"title\": \"\\\"Агромат\\\" м. Львів,Дуля І,Покупець,САЛОН АРХІТЕКТУРА БУДІВНИЦТВО ДИЗАЙН ТОВ,Пелешко Л.З. ФОП,Коваль О.,Кончікова Т.М. ФОП\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 683055,\n            \"title\": \"дом Колотушкина\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 683056,\n            \"title\": \"дом культуры\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 683261,\n            \"title\": \"Vinicola CASTELLO DI LOZZOLO dei Fratelli Berteletti s.r.l.\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 683275,\n            \"title\": \"Моряк\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"5щ4групу\"\n        },\n        {\n            \"id\": 829448,\n            \"title\": \"unit mega city \\\"quote\\\"\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"iuygbno987tgnko9876tg\"\n        },\n        {\n            \"id\": 829450,\n            \"title\": \"Бадрак\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"1234567890йцукен\"\n        },\n        {\n            \"id\": 829451,\n            \"title\": \"Одна и та же\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"3g753g44j32\"\n        },\n        {\n            \"id\": 829452,\n            \"title\": \"Одна и та же\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"36071694ат\"\n        },\n        {\n            \"id\": 829453,\n            \"title\": \"Моряк\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"36474рукр\"\n        },\n        {\n            \"id\": 829454,\n            \"title\": \"Моряк\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"34е3п3\"\n        },\n        {\n            \"id\": 19461,\n            \"title\": \"Мняг!, ЧЛ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"\"\n        },\n        {\n            \"id\": 1299,\n            \"title\": \"АТБ-Маркет, ТОВ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"30487219\"\n        },\n        {\n            \"id\": 834776,\n            \"title\": \"Noyon Uul Erdene” LLC\",\n            \"titleFull\": \"\",\n            \"natcomid\": null\n        },\n        {\n            \"id\": 834777,\n            \"title\": \"ТОВАРИСТВО З ОБМЕЖЕНОЮ ВІДПОВІДАЛЬНІСТЮ ЄВРО-АЗІАТСЬКА ЛОГІСТИЧНА КОМПАНІЯ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"39195657\"\n        },\n        {\n            \"id\": 834787,\n            \"title\": \"Noyon Uul Erdene LLC\",\n            \"titleFull\": \"\",\n            \"natcomid\": null\n        },\n        {\n            \"id\": 835254,\n            \"title\": \"INSTAL PROJEKT Gawlowscy, Scierzynscy Spolka Jawna\",\n            \"titleFull\": \"\",\n            \"natcomid\": null\n        },\n        {\n            \"id\": 679004,\n            \"title\": \"МонтажЛифтТекстильЛизинг, ООО\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"81926763\"\n        },\n        {\n            \"id\": 679002,\n            \"title\": \"МеталРос, ООО\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"24026833\"\n        },\n        {\n            \"id\": 679005,\n            \"title\": \"Восток, Корп\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"70121803\"\n        },\n        {\n            \"id\": 679003,\n            \"title\": \"Мотор, ПАО\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"25272710\"\n        },\n        {\n            \"id\": 679006,\n            \"title\": \"ОблПив, ТОВ\",\n            \"titleFull\": \"\",\n            \"natcomid\": \"80759553\"\n        }\n    ]\n}"},{"id":"d6581e86-36a2-4d6e-b6ba-96ef5b31d947","name":"No parameters passed","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCompanies","host":["{{host}}"],"path":["a","v2","rest","public","getCompanies"],"query":[{"key":"byCheckpoint","value":"true","description":"True: Required bool. Returns the list of companies who own checkpoints in your account. False: error","disabled":true},{"key":"byCountry","value":"{{companiesByCheckpointCountry}}","description":"Optional ind. Id of the country. Returns the list of companies with loading/unloading checkpoints in a given country","disabled":true},{"key":"byRegion","value":"{{companiesByCheckpointRegion}}","description":"Optional ind. Id of the region. Returns the list of companies with loading/unloading checkpoints in a given region","disabled":true},{"key":"byTown","value":"{{companiesByCheckpointTown}}","description":"Optional ind. Id of the town. Returns the list of companies with loading/unloading checkpoints in a given town","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Parameters missing\",\n    \"relogin\": false\n}"},{"id":"dcf83826-8b04-4b78-9908-e57cd211f4f6","name":"Invalid token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCompanies","host":["{{host}}"],"path":["a","v2","rest","public","getCompanies"],"query":[{"key":"byCheckpoint","value":"{{companiesByCheckpoint}}","description":"True: Required bool. Returns the list of companies who own checkpoints in your account. False: error","disabled":true},{"key":"byCountry","value":"{{companiesByCheckpointCountry}}","description":"Optional ind. Id of the country. Returns the list of companies with loading/unloading checkpoints in a given country","disabled":true},{"key":"byRegion","value":"{{companiesByCheckpointRegion}}","description":"Optional ind. Id of the region. Returns the list of companies with loading/unloading checkpoints in a given region","disabled":true},{"key":"byTown","value":"{{companiesByCheckpointTown}}","description":"Optional ind. Id of the town. Returns the list of companies with loading/unloading checkpoints in a given town","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"a1d61357-a6e1-4490-b89e-da9e6479b3da"},{"name":"Get Town","event":[{"listen":"test","script":{"id":"b40518a0-5dac-4ba8-bb04-0e4b3b2e96d5","exec":["var response = pm.response.json();","var isContains = pm.response.text();","if (response.status === 200 || response.status === 'success') {","    pm.test(\"data in response matches array\", () => {","        pm.expect(response.data).to.be.an(\"array\");","    });","","   ","","} else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","   ","};",""],"type":"text/javascript","packages":{}}}],"id":"bac268a7-b7ca-4e42-9bab-3ef3e161d33f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getTown?byCheckpoint={{townsByCheckpoint}}&byCompany={{townsByCheckpointCompany}}&byCountry={{townsByCheckpointCountry}}&byRegion={{townsByCheckpointRegion}}&byCustoms={{customsFlag}}&byBorder={{townsByCheckpointBorder}}&bordersWith={{borderCountryId}}","description":"<p>Returns the list of towns, depending on the list of parameters. The method is complex, allows not only to get a list of cities, but also to get cities in which points with complex filtering are present for example: get the list of cities with checkpoints in a specific country or get cities with border checkpoints.</p>\n<ul>\n<li>if successful you will receive list of towns, depending of the list parameters</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getTown"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Optional int. True: Returns the list of cities in which checkpoints/warehouses of current user company are present. False: ignores the parameter</p>\n","type":"text/plain"},"key":"byCheckpoint","value":"{{townsByCheckpoint}}"},{"description":{"content":"<p>Optional int. Filter. Id of the company. Narrows the list of cities to cities in which checkpoints/warehouses of given company are present, works only if <code>byCheckpoint</code> parameter is passed.</p>\n","type":"text/plain"},"key":"byCompany","value":"{{townsByCheckpointCompany}}"},{"description":{"content":"<p>Optional Int. Filter. Id of the country. Narrows the list of cities by checkpoints in a given country, works only if <code>byCheckpoint</code> parameter is passed.</p>\n","type":"text/plain"},"key":"byCountry","value":"{{townsByCheckpointCountry}}"},{"description":{"content":"<p>Optional Int. Filter. Id of the region. Narrows the list of cities by checkpoints in a given region, works only if <code>byCheckpoint</code> parameter is passed.</p>\n","type":"text/plain"},"key":"byRegion","value":"{{townsByCheckpointRegion}}"},{"description":{"content":"<p>Optional int. Narrows the list given with <code>byCheckpoint</code> parameter to cities with customs checkpoints. Works only if <code>byCheckpoint</code> parameter is passed.</p>\n","type":"text/plain"},"key":"byCustoms","value":"{{customsFlag}}"},{"description":{"content":"<p>Optional int. Returns the list of cities with border checkpoints</p>\n","type":"text/plain"},"key":"byBorder","value":"{{townsByCheckpointBorder}}"},{"description":{"content":"<p>Optional int. Filter. Narrows the list given by <code>byBorder</code> parameter to cities with border checkpoints of Ukraine and another country, id of which is passed. <code>byBorder</code> parameter must be passed.</p>\n","type":"text/plain"},"key":"bordersWith","value":"{{borderCountryId}}"}],"variable":[]}},"response":[{"id":"25f152b9-d087-4dbd-844c-f1cb5ee6d206","name":"Success (Towns with checkpoints of given company in a given region are returned)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getTown?byCheckpoint={{townsByCheckpoint}}&byCompany={{townsByCheckpointCompany}}&byRegion={{townsByCheckpointRegion}}","host":["{{host}}"],"path":["a","v2","rest","public","getTown"],"query":[{"key":"byCheckpoint","value":"{{townsByCheckpoint}}","description":"Optional bool. True: Returns the list of cities in which checkpoints/warehouses of current user company are present. False: ignores the parameter"},{"key":"byCompany","value":"{{townsByCheckpointCompany}}","description":"Optional int. Filter. Id of the company. Narrows the list of cities to cities in which checkpoints/warehouses of given company are present, works only if `byCheckpoint` parameter is passed."},{"key":"byCountry","value":"{{townsByCheckpointCountry}}","description":"Optional Int. Filter. Id of the country. Narrows the list of cities by checkpoints in a given country, works only if `byCheckpoint` parameter is passed.","disabled":true},{"key":"byRegion","value":"{{townsByCheckpointRegion}}","description":"Optional Int. Filter. Id of the region. Narrows the list of cities by checkpoints in a given region, works only if `byCheckpoint` parameter is passed."},{"key":"byCustoms","value":"{{customsFlag}}","description":"Optional int. Narrows the list given with `byCheckpoint` parameter to cities with customs checkpoints. Works only if `byCheckpoint` parameter is passed.","disabled":true},{"key":"byBorder","value":"{{townsByCheckpointBorder}}","description":"Optional bool. Returns the list of cities with border checkpoints","disabled":true},{"key":"bordersWith","value":"{{borderCountryId}}","description":"Optional int. Filter. Narrows the list given by `byBorder` parameter to cities with border checkpoints of Ukraine and another country, id of which is passed. `byBorder` parameter must be passed.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"success\",\n  \"data\": [\n    {\n      \"id\": 9657,\n      \"title\": \"Kyiv\",\n      \"region\": {\n        \"id\": 9,\n        \"title\": \"Kyiv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"3200000000\",\n      \"latit\": 50.44028,\n      \"longit\": 30.55944\n    },\n    {\n      \"id\": 1447,\n      \"title\": \"Yurkovtsy\",\n      \"region\": {\n        \"id\": 1,\n        \"title\": \"Vinnytsia oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Nemyrivskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"0500000000\",\n      \"latit\": 48.95694,\n      \"longit\": 29.21972\n    },\n    {\n      \"id\": 16944,\n      \"title\": \"Odesa\",\n      \"region\": {\n        \"id\": 15,\n        \"title\": \"Odesa oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5110100000\",\n      \"latit\": 46.46889,\n      \"longit\": 30.73056\n    },\n    {\n      \"id\": 9421,\n      \"title\": \"Vyshhorod\",\n      \"region\": {\n        \"id\": 9,\n        \"title\": \"Kyiv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Vyshhorodskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"3221810100\",\n      \"latit\": 50.5875,\n      \"longit\": 30.49472\n    },\n    {\n      \"id\": 4474,\n      \"title\": \"Kramatorsk\",\n      \"region\": {\n        \"id\": 4,\n        \"title\": \"Donetsk oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"1412900000\",\n      \"latit\": 48.72806,\n      \"longit\": 37.56583\n    },\n    {\n      \"id\": 14380,\n      \"title\": \"Lviv\",\n      \"region\": {\n        \"id\": 13,\n        \"title\": \"Lviv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"4610100000\",\n      \"latit\": 49.84306,\n      \"longit\": 24.01778\n    },\n    {\n      \"id\": 149,\n      \"title\": \"Velyka Mochulka\",\n      \"region\": {\n        \"id\": 1,\n        \"title\": \"Vinnytsia oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Teplitskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"0500000000\",\n      \"latit\": 48.63278,\n      \"longit\": 29.58694\n    },\n    {\n      \"id\": 327,\n      \"title\": \"Demydovka\",\n      \"region\": {\n        \"id\": 1,\n        \"title\": \"Vinnytsia oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Trostianetskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"0524181701\",\n      \"latit\": 48.45583,\n      \"longit\": 29.34\n    },\n    {\n      \"id\": 15783,\n      \"title\": \"Mykolaiv\",\n      \"region\": {\n        \"id\": 14,\n        \"title\": \"Mykolaiv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"4810100000\",\n      \"latit\": 46.95861,\n      \"longit\": 32.04556\n    },\n    {\n      \"id\": 5245,\n      \"title\": \"Yasna Polyana\",\n      \"region\": {\n        \"id\": 4,\n        \"title\": \"Donetsk oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Velykonovoselkivskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"1421286403\",\n      \"latit\": 47.88222,\n      \"longit\": 37.03306\n    },\n    {\n      \"id\": 21517,\n      \"title\": \"Sumy\",\n      \"region\": {\n        \"id\": 18,\n        \"title\": \"Sumy oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5900000000\",\n      \"latit\": 50.9075,\n      \"longit\": 34.79833\n    },\n    {\n      \"id\": 1218,\n      \"title\": \"Stepanky\",\n      \"region\": {\n        \"id\": 1,\n        \"title\": \"Vinnytsia oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Murovanokurylovetskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"0523487805\",\n      \"latit\": 48.77361,\n      \"longit\": 27.85667\n    },\n    {\n      \"id\": 16577,\n      \"title\": \"Izmail\",\n      \"region\": {\n        \"id\": 15,\n        \"title\": \"Odesa oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5110600000\",\n      \"latit\": 45.34694,\n      \"longit\": 28.83528\n    },\n    {\n      \"id\": 14463,\n      \"title\": \"Myhove\",\n      \"region\": {\n        \"id\": 13,\n        \"title\": \"Lviv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Starosambirskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"4625182904\",\n      \"latit\": 49.55083,\n      \"longit\": 22.72472\n    },\n    {\n      \"id\": 19507,\n      \"title\": \"Dubno\",\n      \"region\": {\n        \"id\": 17,\n        \"title\": \"Rivne oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5625082602\",\n      \"latit\": 50.40722,\n      \"longit\": 25.76194\n    },\n    {\n      \"id\": 948,\n      \"title\": \"Pervomaiske\",\n      \"region\": {\n        \"id\": 1,\n        \"title\": \"Vinnytsia oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Kalynivskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"0521682409\",\n      \"latit\": 49.57694,\n      \"longit\": 28.70306\n    },\n    {\n      \"id\": 4446,\n      \"title\": \"Kolodiazi\",\n      \"region\": {\n        \"id\": 4,\n        \"title\": \"Donetsk oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Krasnolymanskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"1400000000\",\n      \"latit\": 49.08667,\n      \"longit\": 37.88667\n    },\n    {\n      \"id\": 399,\n      \"title\": \"Zhmerynka\",\n      \"region\": {\n        \"id\": 1,\n        \"title\": \"Vinnytsia oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"0510300000\",\n      \"latit\": 49.03222,\n      \"longit\": 28.11639\n    },\n    {\n      \"id\": 1222,\n      \"title\": \"Stepashky\",\n      \"region\": {\n        \"id\": 1,\n        \"title\": \"Vinnytsia oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Haisynskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"0520885603\",\n      \"latit\": 48.73278,\n      \"longit\": 29.13639\n    },\n    {\n      \"id\": 617,\n      \"title\": \"Krychanovka\",\n      \"region\": {\n        \"id\": 1,\n        \"title\": \"Vinnytsia oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Mohyliv-Podilskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"0522683701\",\n      \"latit\": 48.595,\n      \"longit\": 27.85389\n    },\n    {\n      \"id\": 16306,\n      \"title\": \"Bohate\",\n      \"region\": {\n        \"id\": 15,\n        \"title\": \"Odesa oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Izmailskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5122080401\",\n      \"latit\": 45.4075,\n      \"longit\": 28.93694\n    },\n    {\n      \"id\": 544,\n      \"title\": \"Kovalivka\",\n      \"region\": {\n        \"id\": 1,\n        \"title\": \"Vinnytsia oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Nemyrivskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"0500000000\",\n      \"latit\": 49.02528,\n      \"longit\": 28.88889\n    },\n    {\n      \"id\": 2323,\n      \"title\": \"Svydnyky\",\n      \"region\": {\n        \"id\": 2,\n        \"title\": \"Volyn oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Kovel raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"0722188006\",\n      \"latit\": 51.04361,\n      \"longit\": 25.09833\n    },\n    {\n      \"id\": 875,\n      \"title\": \"Novonikolsk\",\n      \"region\": {\n        \"id\": 1,\n        \"title\": \"Vinnytsia oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Mohyliv-Podilskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"0522684503\",\n      \"latit\": 48.41083,\n      \"longit\": 28.07833\n    },\n    {\n      \"id\": 4374,\n      \"title\": \"Izmailovka\",\n      \"region\": {\n        \"id\": 4,\n        \"title\": \"Donetsk oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Marinskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"1423385404\",\n      \"latit\": 48.05722,\n      \"longit\": 37.34639\n    },\n    {\n      \"id\": 535,\n      \"title\": \"Kyianivka\",\n      \"region\": {\n        \"id\": 1,\n        \"title\": \"Vinnytsia oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Bar raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"0520283606\",\n      \"latit\": 48.9875,\n      \"longit\": 27.71417\n    },\n    {\n      \"id\": 2401854,\n      \"title\": \"Nyashkohrad\",\n      \"region\": {\n        \"id\": 15,\n        \"title\": \"Odesa oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 172,\n      \"nationalId\": \"5100000000\",\n      \"latit\": 0,\n      \"longit\": 0\n    },\n    {\n      \"id\": 2401925,\n      \"title\": \"Ovidiopol\",\n      \"region\": {\n        \"id\": 15,\n        \"title\": \"Odesa oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Ovidiopolskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5123755100\",\n      \"latit\": 46.2433958,\n      \"longit\": 30.4406292\n    },\n    {\n      \"id\": 2401924,\n      \"title\": \"Kyiv\",\n      \"region\": {\n        \"id\": 3370,\n        \"title\": \"Kyiv city\"\n      },\n      \"country\": 215,\n      \"district\": \"Kyiv city\",\n      \"borderswith\": 0,\n      \"nationalId\": \"3200000000\",\n      \"latit\": 50.4781687,\n      \"longit\": 30.4926825\n    },\n    {\n      \"id\": 2401943,\n      \"title\": \"Izmail\",\n      \"region\": {\n        \"id\": 15,\n        \"title\": \"Odesa oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Izmailskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5110600000\",\n      \"latit\": 45.3375111,\n      \"longit\": 28.8342837\n    },\n    {\n      \"id\": 2401882,\n      \"title\": \"Odesa\",\n      \"region\": {\n        \"id\": 15,\n        \"title\": \"Odesa oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5110100000\",\n      \"latit\": 46.482526,\n      \"longit\": 30.7233095\n    },\n    {\n      \"id\": 2401929,\n      \"title\": \"Khorly\",\n      \"region\": {\n        \"id\": 21,\n        \"title\": \"Kherson oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Kalanchakskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"6523286601\",\n      \"latit\": 46.0781094,\n      \"longit\": 33.2938802\n    },\n    {\n      \"id\": 2401960,\n      \"title\": \"Zaria\",\n      \"region\": {\n        \"id\": 15,\n        \"title\": \"Odesa oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Saratskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5100000000\",\n      \"latit\": 45.956169,\n      \"longit\": 29.6956249\n    },\n    {\n      \"id\": 2401961,\n      \"title\": \"Loshchynivka\",\n      \"region\": {\n        \"id\": 15,\n        \"title\": \"Odesa oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Izmailskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5122083401\",\n      \"latit\": 41.7228102,\n      \"longit\": -97.6765157\n    },\n    {\n      \"id\": 2401962,\n      \"title\": \"Melekyne\",\n      \"region\": {\n        \"id\": 4,\n        \"title\": \"Donetsk oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Pershotravnevyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"1423984401\",\n      \"latit\": 46.9573015,\n      \"longit\": 37.3940991\n    },\n    {\n      \"id\": 2401963,\n      \"title\": \"Larzhanka\",\n      \"region\": {\n        \"id\": 15,\n        \"title\": \"Odesa oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Izmailskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5122083201\",\n      \"latit\": 41.1825545,\n      \"longit\": -97.4165053\n    },\n    {\n      \"id\": 2401964,\n      \"title\": \"Stara Nekrasovka\",\n      \"region\": {\n        \"id\": 15,\n        \"title\": \"Odesa oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Izmailskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5122086301\",\n      \"latit\": 45.3349816,\n      \"longit\": 28.8513317\n    },\n    {\n      \"id\": 2401965,\n      \"title\": \"Krekhaiv\",\n      \"region\": {\n        \"id\": 24,\n        \"title\": \"Chernihiv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Kozelets raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"7422084501\",\n      \"latit\": 40.2875007,\n      \"longit\": -76.2594981\n    },\n    {\n      \"id\": 17179,\n      \"title\": \"Stara Nekrasovka\",\n      \"region\": {\n        \"id\": 15,\n        \"title\": \"Odesa oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Izmailskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5122086301\",\n      \"latit\": 45.34056,\n      \"longit\": 28.92417\n    },\n    {\n      \"id\": 1494,\n      \"title\": \"Beheta\",\n      \"region\": {\n        \"id\": 2,\n        \"title\": \"Volyn oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Volodymyr-Volynskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"0720580803\",\n      \"latit\": 50.81639,\n      \"longit\": 24.52306\n    },\n    {\n      \"id\": 2401980,\n      \"title\": \"Bolhrad\",\n      \"region\": {\n        \"id\": 15,\n        \"title\": \"Odesa oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Bolhradskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5121410100\",\n      \"latit\": 45.6838431,\n      \"longit\": 28.6143107\n    },\n    {\n      \"id\": 2401982,\n      \"title\": \"Zaria\",\n      \"region\": {\n        \"id\": 3,\n        \"title\": \"Dnipropetrovsk oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Kryvyi Rih raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"1200000000\",\n      \"latit\": 48.1549436,\n      \"longit\": 33.4573917\n    },\n    {\n      \"id\": 2401985,\n      \"title\": \"Radomyshl\",\n      \"region\": {\n        \"id\": 5,\n        \"title\": \"Zhytomyr oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Radomyshl raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"1825010100\",\n      \"latit\": 50.4965282,\n      \"longit\": 29.2337369\n    },\n    {\n      \"id\": 2401987,\n      \"title\": \"Borodianka\",\n      \"region\": {\n        \"id\": 9,\n        \"title\": \"Kyiv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Borodianka raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"3221055100\",\n      \"latit\": 50.6445031,\n      \"longit\": 29.9146299\n    },\n    {\n      \"id\": 2401996,\n      \"title\": \"19725 Podolske\",\n      \"region\": {\n        \"id\": 23,\n        \"title\": \"Cherkasy oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Zolotonosha raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"7100000000\",\n      \"latit\": 49.756486,\n      \"longit\": 31.9965\n    },\n    {\n      \"id\": 2401999,\n      \"title\": \"Zatoka\",\n      \"region\": {\n        \"id\": 15,\n        \"title\": \"Odesa oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5100000000\",\n      \"latit\": 46.0691944,\n      \"longit\": 30.4609372\n    },\n    {\n      \"id\": 16556,\n      \"title\": \"Zatoka\",\n      \"region\": {\n        \"id\": 15,\n        \"title\": \"Odesa oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Bilhorod-Dnistrovskyi (city)\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5100000000\",\n      \"latit\": 46.06694,\n      \"longit\": 30.4575\n    },\n    {\n      \"id\": 2402000,\n      \"title\": \"Bashtanovka\",\n      \"region\": {\n        \"id\": 15,\n        \"title\": \"Odesa oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Tatarbunary raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5125080501\",\n      \"latit\": 45.7639111,\n      \"longit\": 29.4776453\n    },\n    {\n      \"id\": 16275,\n      \"title\": \"Bashtanovka\",\n      \"region\": {\n        \"id\": 15,\n        \"title\": \"Odesa oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Tatarbunary raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5125080501\",\n      \"latit\": 45.76361,\n      \"longit\": 29.47861\n    },\n    {\n      \"id\": 2402002,\n      \"title\": \"Zhytomyr\",\n      \"region\": {\n        \"id\": 5,\n        \"title\": \"Zhytomyr oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"1810100000\",\n      \"latit\": 50.2686005,\n      \"longit\": 28.6387354\n    },\n    {\n      \"id\": 2402010,\n      \"title\": \"Sumy\",\n      \"region\": {\n        \"id\": 18,\n        \"title\": \"Sumy oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5900000000\",\n      \"latit\": 50.9082465,\n      \"longit\": 34.7678886\n    },\n    {\n      \"id\": 2402022,\n      \"title\": \"Kherson\",\n      \"region\": {\n        \"id\": 21,\n        \"title\": \"Kherson oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"6510100000\",\n      \"latit\": 46.6671575,\n      \"longit\": 32.6022276\n    },\n    {\n      \"id\": 2402023,\n      \"title\": \"Makariv\",\n      \"region\": {\n        \"id\": 9,\n        \"title\": \"Kyiv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Makariv raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"3222755100\",\n      \"latit\": 50.4573262,\n      \"longit\": 29.8126552\n    },\n    {\n      \"id\": 2402033,\n      \"title\": \"Tustan\",\n      \"region\": {\n        \"id\": 8,\n        \"title\": \"Ivano-Frankivsk oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Halych raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"2621287301\",\n      \"latit\": 49.1344024,\n      \"longit\": 24.7423857\n    },\n    {\n      \"id\": 2402040,\n      \"title\": \"Reni\",\n      \"region\": {\n        \"id\": 15,\n        \"title\": \"Odesa oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Reni raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5124110100\",\n      \"latit\": 45.455341,\n      \"longit\": 28.2959842\n    },\n    {\n      \"id\": 2402043,\n      \"title\": \"Yasna Polyana\",\n      \"region\": {\n        \"id\": 4,\n        \"title\": \"Donetsk oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Velykonovoselkivskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"1421286403\",\n      \"latit\": 47.8817212,\n      \"longit\": 37.031651\n    },\n    {\n      \"id\": 2402044,\n      \"title\": \"Krasylivka\",\n      \"region\": {\n        \"id\": 9,\n        \"title\": \"Kyiv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Brovary raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"3224283601\",\n      \"latit\": 50.5214937,\n      \"longit\": 30.9066286\n    },\n    {\n      \"id\": 2402051,\n      \"title\": \"Chernihiv\",\n      \"region\": {\n        \"id\": 24,\n        \"title\": \"Chernihiv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"7410100000\",\n      \"latit\": 51.498832,\n      \"longit\": 31.281942\n    },\n    {\n      \"id\": 2402052,\n      \"title\": \"Ternopil\",\n      \"region\": {\n        \"id\": 19,\n        \"title\": \"Ternopil oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"6110100000\",\n      \"latit\": 49.554838,\n      \"longit\": 25.605172\n    },\n    {\n      \"id\": 2402055,\n      \"title\": \"Lutsk\",\n      \"region\": {\n        \"id\": 2,\n        \"title\": \"Volyn oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"0710100000\",\n      \"latit\": 50.7487015,\n      \"longit\": 25.3275473\n    },\n    {\n      \"id\": 2402056,\n      \"title\": \"Vinnytsia\",\n      \"region\": {\n        \"id\": 1,\n        \"title\": \"Vinnytsia oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"0510100000\",\n      \"latit\": 49.232516,\n      \"longit\": 28.447504\n    },\n    {\n      \"id\": 2402057,\n      \"title\": \"Zaporizhzhia\",\n      \"region\": {\n        \"id\": 7,\n        \"title\": \"Zaporizhzhia oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"2325282803\",\n      \"latit\": 47.8403776,\n      \"longit\": 35.1269615\n    },\n    {\n      \"id\": 2402058,\n      \"title\": \"Stryi\",\n      \"region\": {\n        \"id\": 13,\n        \"title\": \"Lviv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"4611200000\",\n      \"latit\": 49.2687951,\n      \"longit\": 23.8178279\n    },\n    {\n      \"id\": 2401901,\n      \"title\": \"Safiiany\",\n      \"region\": {\n        \"id\": 15,\n        \"title\": \"Odesa oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Izmailskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5122085901\",\n      \"latit\": 45.4072076,\n      \"longit\": 28.8752088\n    },\n    {\n      \"id\": 2402059,\n      \"title\": \"Rodatychi\",\n      \"region\": {\n        \"id\": 13,\n        \"title\": \"Lviv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Horodok raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"4600000000\",\n      \"latit\": 49.799354,\n      \"longit\": 23.518328\n    },\n    {\n      \"id\": 2402062,\n      \"title\": \"Kirovohrad\",\n      \"region\": {\n        \"id\": 10,\n        \"title\": \"Kirovohrad oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"3500000000\",\n      \"latit\": 48.522386,\n      \"longit\": 32.2581692\n    },\n    {\n      \"id\": 2402063,\n      \"title\": \"Kremenchuk\",\n      \"region\": {\n        \"id\": 16,\n        \"title\": \"Poltava oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5310400000\",\n      \"latit\": 49.0672277,\n      \"longit\": 33.398153\n    },\n    {\n      \"id\": 2402067,\n      \"title\": \"Prymorske\",\n      \"region\": {\n        \"id\": 15,\n        \"title\": \"Odesa oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Kiliia raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5125083901\",\n      \"latit\": 45.5251012,\n      \"longit\": 29.6035438\n    },\n    {\n      \"id\": 2402070,\n      \"title\": \"Volodymyr-Volynskyi\",\n      \"region\": {\n        \"id\": 2,\n        \"title\": \"Volyn oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"0710200000\",\n      \"latit\": 50.8525631,\n      \"longit\": 24.3265661\n    },\n    {\n      \"id\": 2402071,\n      \"title\": \"Ladyzhyn\",\n      \"region\": {\n        \"id\": 1,\n        \"title\": \"Vinnytsia oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"0510600000\",\n      \"latit\": 48.6725271799,\n      \"longit\": 29.1980173621\n    },\n    {\n      \"id\": 2402072,\n      \"title\": \"Nerubaiske\",\n      \"region\": {\n        \"id\": 15,\n        \"title\": \"Odesa oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Biliaivka raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5121084201\",\n      \"latit\": 46.5445659402,\n      \"longit\": 30.6291412349\n    },\n    {\n      \"id\": 2402074,\n      \"title\": \"Rivne\",\n      \"region\": {\n        \"id\": 17,\n        \"title\": \"Rivne oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5610100000\",\n      \"latit\": 50.6199,\n      \"longit\": 26.251617\n    },\n    {\n      \"id\": 2402207,\n      \"title\": \"Stepantsi\",\n      \"region\": {\n        \"id\": 23,\n        \"title\": \"Cherkasy oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Kaniv raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"7100000000\",\n      \"latit\": 49.7068645256,\n      \"longit\": 31.3015742863\n    },\n    {\n      \"id\": 2402047,\n      \"title\": \"Velyka Dymerka\",\n      \"region\": {\n        \"id\": 9,\n        \"title\": \"Kyiv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Brovary raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"3200000000\",\n      \"latit\": 50.6107749164,\n      \"longit\": 30.8724550823\n    },\n    {\n      \"id\": 2402226,\n      \"title\": \"Bobrynets\",\n      \"region\": {\n        \"id\": 10,\n        \"title\": \"Kirovohrad oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Bobrynets raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"3520810100\",\n      \"latit\": 48.0581761,\n      \"longit\": 32.1610803\n    },\n    {\n      \"id\": 2402246,\n      \"title\": \"Myronivka\",\n      \"region\": {\n        \"id\": 9,\n        \"title\": \"Kyiv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Myronivka raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"3222910100\",\n      \"latit\": 49.6607558,\n      \"longit\": 30.9855787\n    },\n    {\n      \"id\": 2402247,\n      \"title\": \"Cherkasy\",\n      \"region\": {\n        \"id\": 23,\n        \"title\": \"Cherkasy oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"7110100000\",\n      \"latit\": 49.4593213,\n      \"longit\": 32.0496696\n    },\n    {\n      \"id\": 2402252,\n      \"title\": \"Mykolaiv\",\n      \"region\": {\n        \"id\": 14,\n        \"title\": \"Mykolaiv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Zhovtnevyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"4810100000\",\n      \"latit\": 46.9487574,\n      \"longit\": 32.0027311\n    },\n    {\n      \"id\": 2402263,\n      \"title\": \"Artsyz\",\n      \"region\": {\n        \"id\": 15,\n        \"title\": \"Odesa oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Artsyz raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5120410100\",\n      \"latit\": 45.982089,\n      \"longit\": 29.438574\n    },\n    {\n      \"id\": 2402204,\n      \"title\": \"Hlevakha\",\n      \"region\": {\n        \"id\": 9,\n        \"title\": \"Kyiv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Vasylkiv raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"3221455300\",\n      \"latit\": 50.259078,\n      \"longit\": 30.2723627\n    },\n    {\n      \"id\": 2402053,\n      \"title\": \"Dnipropetrovsk\",\n      \"region\": {\n        \"id\": 3,\n        \"title\": \"Dnipropetrovsk oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"1200000000\",\n      \"latit\": 48.44407,\n      \"longit\": 35.050085\n    },\n    {\n      \"id\": 2402268,\n      \"title\": \"Lebedyn\",\n      \"region\": {\n        \"id\": 18,\n        \"title\": \"Sumy oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"\",\n      \"latit\": 50.5837638,\n      \"longit\": 34.4904643\n    },\n    {\n      \"id\": 2402250,\n      \"title\": \"Kryvyi Rih\",\n      \"region\": {\n        \"id\": 3,\n        \"title\": \"Dnipropetrovsk oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"1211000000\",\n      \"latit\": 47.8895879,\n      \"longit\": 33.3700087\n    },\n    {\n      \"id\": 2402270,\n      \"title\": \"Dolynska\",\n      \"region\": {\n        \"id\": 10,\n        \"title\": \"Kirovohrad oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Dolynska raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"\",\n      \"latit\": 48.1132559,\n      \"longit\": 32.7658685\n    },\n    {\n      \"id\": 2402271,\n      \"title\": \"Khmelnytskyi\",\n      \"region\": {\n        \"id\": 22,\n        \"title\": \"Khmelnytskyi oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"\",\n      \"latit\": 49.424354,\n      \"longit\": 26.9920121\n    },\n    {\n      \"id\": 2402272,\n      \"title\": \"Donetsk\",\n      \"region\": {\n        \"id\": 4,\n        \"title\": \"Donetsk oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"\",\n      \"latit\": 48.0087083,\n      \"longit\": 37.8069273\n    },\n    {\n      \"id\": 2402276,\n      \"title\": \"Uzhhorod\",\n      \"region\": {\n        \"id\": 6,\n        \"title\": \"Zakarpattia oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"\",\n      \"latit\": 48.626319,\n      \"longit\": 22.284627\n    },\n    {\n      \"id\": 2402218,\n      \"title\": \"Kyiv\",\n      \"region\": {\n        \"id\": 3462,\n        \"title\": \"Kyiv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"\",\n      \"latit\": 0,\n      \"longit\": 0\n    },\n    {\n      \"id\": 2402305,\n      \"title\": \"Berdiansk\",\n      \"region\": {\n        \"id\": 7,\n        \"title\": \"Zaporizhzhia oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"\",\n      \"latit\": 46.7820091,\n      \"longit\": 36.7638474\n    },\n    {\n      \"id\": 2402307,\n      \"title\": \"Pohreby\",\n      \"region\": {\n        \"id\": 9,\n        \"title\": \"Kyiv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Brovary raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"\",\n      \"latit\": 50.5394949,\n      \"longit\": 30.6518034\n    },\n    {\n      \"id\": 2402309,\n      \"title\": \"Lviv\",\n      \"region\": {\n        \"id\": 3493,\n        \"title\": \"Lviv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"\",\n      \"latit\": 0,\n      \"longit\": 0\n    },\n    {\n      \"id\": 2402275,\n      \"title\": \"Borova\",\n      \"region\": {\n        \"id\": 9,\n        \"title\": \"Kyiv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Fastiv raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"\",\n      \"latit\": 50.1758214,\n      \"longit\": 30.1017634\n    },\n    {\n      \"id\": 2402050,\n      \"title\": \"Fastiv\",\n      \"region\": {\n        \"id\": 9,\n        \"title\": \"Kyiv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"3211200000\",\n      \"latit\": 50.0648104,\n      \"longit\": 29.8959608\n    },\n    {\n      \"id\": 2407364,\n      \"title\": \"Luhansk\",\n      \"region\": {\n        \"id\": 12,\n        \"title\": \"Luhansk oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"\",\n      \"latit\": 48.5778039,\n      \"longit\": 39.3055643\n    },\n    {\n      \"id\": 2402054,\n      \"title\": \"Ivano-Frankivsk\",\n      \"region\": {\n        \"id\": 8,\n        \"title\": \"Ivano-Frankivsk oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"2610100000\",\n      \"latit\": 48.930697,\n      \"longit\": 24.733548\n    },\n    {\n      \"id\": 2407509,\n      \"title\": \"123\",\n      \"region\": {\n        \"id\": 3456,\n        \"title\": \"\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"\",\n      \"latit\": 0,\n      \"longit\": 0\n    },\n    {\n      \"id\": 2407523,\n      \"title\": \"Velykodolynske\",\n      \"region\": {\n        \"id\": 3474,\n        \"title\": \"Odesa oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Ovidiopolskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"\",\n      \"latit\": 0,\n      \"longit\": 0\n    },\n    {\n      \"id\": 2407535,\n      \"title\": \"Kyiv (city)\",\n      \"region\": {\n        \"id\": 3456,\n        \"title\": \"\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"\",\n      \"latit\": 0,\n      \"longit\": 0\n    },\n    {\n      \"id\": 2407538,\n      \"title\": \"Kyiv\",\n      \"region\": {\n        \"id\": 3539,\n        \"title\": \"Pechersk district\"\n      },\n      \"country\": 215,\n      \"district\": \"Kyiv city\",\n      \"borderswith\": 0,\n      \"nationalId\": \"\",\n      \"latit\": 0,\n      \"longit\": 0\n    },\n    {\n      \"id\": 2402212,\n      \"title\": \"Kyiv\",\n      \"region\": {\n        \"id\": 3462,\n        \"title\": \"Kyiv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"\",\n      \"latit\": 0,\n      \"longit\": 0\n    },\n    {\n      \"id\": 2407606,\n      \"title\": \"Kyiv (city)\",\n      \"region\": {\n        \"id\": 3456,\n        \"title\": \"\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"\",\n      \"latit\": 0,\n      \"longit\": 0\n    }\n  ]\n}"},{"id":"90c4d063-a83a-45ca-8907-5b976ecae867","name":"Success (Towns with checkpoints in Ukraine are returned)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getTown?byCheckpoint={{townsByCheckpoint}}&byCountry={{townsByCheckpointCountry}}","host":["{{host}}"],"path":["a","v2","rest","public","getTown"],"query":[{"key":"byCheckpoint","value":"{{townsByCheckpoint}}","description":"Optional bool. True: Returns the list of cities in which checkpoints/warehouses of current user company are present. False: ignores the parameter"},{"key":"byCompany","value":"{{townsByCheckpointCompany}}","description":"Optional int. Filter. Id of the company. Narrows the list of cities to cities in which checkpoints/warehouses of given company are present, works only if `byCheckpoint` parameter is passed.","disabled":true},{"key":"byCountry","value":"{{townsByCheckpointCountry}}","description":"Optional Int. Filter. Id of the country. Narrows the list of cities by checkpoints in a given country, works only if `byCheckpoint` parameter is passed."},{"key":"byRegion","value":"{{townsByCheckpointRegion}}","description":"Optional Int. Filter. Id of the region. Narrows the list of cities by checkpoints in a given region, works only if `byCheckpoint` parameter is passed.","disabled":true},{"key":"byCustoms","value":"{{customsFlag}}","description":"Optional int. Narrows the list given with `byCheckpoint` parameter to cities with customs checkpoints. Works only if `byCheckpoint` parameter is passed.","disabled":true},{"key":"byBorder","value":"{{townsByCheckpointBorder}}","description":"Optional bool. Returns the list of cities with border checkpoints","disabled":true},{"key":"bordersWith","value":"{{borderCountryId}}","description":"Optional int. Filter. Narrows the list given by `byBorder` parameter to cities with border checkpoints of Ukraine and another country, id of which is passed. `byBorder` parameter must be passed.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"success\",\n  \"data\": [\n    {\n      \"id\": 9657,\n      \"title\": \"Kyiv\",\n      \"region\": {\n        \"id\": 9,\n        \"title\": \"Kyiv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"3200000000\",\n      \"latit\": 50.44028,\n      \"longit\": 30.55944\n    },\n    {\n      \"id\": 1447,\n      \"title\": \"Yurkovtsy\",\n      \"region\": {\n        \"id\": 1,\n        \"title\": \"Vinnytsia oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Nemyrivskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"0500000000\",\n      \"latit\": 48.95694,\n      \"longit\": 29.21972\n    },\n    {\n      \"id\": 16944,\n      \"title\": \"Odesa\",\n      \"region\": {\n        \"id\": 15,\n        \"title\": \"Odesa oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5110100000\",\n      \"latit\": 46.46889,\n      \"longit\": 30.73056\n    },\n    {\n      \"id\": 9421,\n      \"title\": \"Vyshhorod\",\n      \"region\": {\n        \"id\": 9,\n        \"title\": \"Kyiv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Vyshhorodskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"3221810100\",\n      \"latit\": 50.5875,\n      \"longit\": 30.49472\n    },\n    {\n      \"id\": 4474,\n      \"title\": \"Kramatorsk\",\n      \"region\": {\n        \"id\": 4,\n        \"title\": \"Donetsk oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"1412900000\",\n      \"latit\": 48.72806,\n      \"longit\": 37.56583\n    },\n    {\n      \"id\": 14380,\n      \"title\": \"Lviv\",\n      \"region\": {\n        \"id\": 13,\n        \"title\": \"Lviv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"4610100000\",\n      \"latit\": 49.84306,\n      \"longit\": 24.01778\n    },\n    {\n      \"id\": 149,\n      \"title\": \"Velyka Mochulka\",\n      \"region\": {\n        \"id\": 1,\n        \"title\": \"Vinnytsia oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Teplytskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"0500000000\",\n      \"latit\": 48.63278,\n      \"longit\": 29.58694\n    },\n    {\n      \"id\": 327,\n      \"title\": \"Demydovka\",\n      \"region\": {\n        \"id\": 1,\n        \"title\": \"Vinnytsia oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Trostianetskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"0524181701\",\n      \"latit\": 48.45583,\n      \"longit\": 29.34\n    },\n    {\n      \"id\": 15783,\n      \"title\": \"Mykolaiv\",\n      \"region\": {\n        \"id\": 14,\n        \"title\": \"Mykolaiv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"4810100000\",\n      \"latit\": 46.95861,\n      \"longit\": 32.04556\n    },\n    {\n      \"id\": 5245,\n      \"title\": \"Yasna Polyana\",\n      \"region\": {\n        \"id\": 4,\n        \"title\": \"Donetsk oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Velykonovoselkivskyi raion\",\n      \"borderswith\": 0,\n      \"nationalId\": \"1421286403\",\n      \"latit\": 47.88222,\n      \"longit\": 37.03306\n    },\n    {\n      \"id\": 21517,\n      \"title\": \"Sumy\",\n      \"region\": {\n        \"id\": 18,\n        \"title\": \"Sumy oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 0,\n      \"nationalId\": \"5900000000\",\n      \"latit\": 50.9075,\n      \"longit\": 34.79833\n    }\n  ]\n}"},{"id":"c4d14089-4b56-4716-a0c5-c90513f6017a","name":"Success (Towns with border checkpoints of Ukraine and Poland)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getTown?byBorder={{townsByCheckpointBorder}}&bordersWith={{borderCountryId}}","host":["{{host}}"],"path":["a","v2","rest","public","getTown"],"query":[{"key":"byCheckpoint","value":"{{townsByCheckpoint}}","description":"Optional bool. True: Returns the list of cities in which checkpoints/warehouses of current user company are present. False: ignores the parameter","disabled":true},{"key":"byCompany","value":"{{townsByCheckpointCompany}}","description":"Optional int. Filter. Id of the company. Narrows the list of cities to cities in which checkpoints/warehouses of given company are present, works only if `byCheckpoint` parameter is passed.","disabled":true},{"key":"byCountry","value":"{{townsByCheckpointCountry}}","description":"Optional Int. Filter. Id of the country. Narrows the list of cities by checkpoints in a given country, works only if `byCheckpoint` parameter is passed.","disabled":true},{"key":"byRegion","value":"{{townsByCheckpointRegion}}","description":"Optional Int. Filter. Id of the region. Narrows the list of cities by checkpoints in a given region, works only if `byCheckpoint` parameter is passed.","disabled":true},{"key":"byCustoms","value":"{{customsFlag}}","description":"Optional int. Narrows the list given with `byCheckpoint` parameter to cities with customs checkpoints. Works only if `byCheckpoint` parameter is passed.","disabled":true},{"key":"byBorder","value":"{{townsByCheckpointBorder}}","description":"Optional bool. Returns the list of cities with border checkpoints"},{"key":"bordersWith","value":"{{borderCountryId}}","description":"Optional int. Filter. Narrows the list given by `byBorder` parameter to cities with border checkpoints of Ukraine and another country, id of which is passed. `byBorder` parameter must be passed."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"success\",\n  \"data\": [\n    {\n      \"id\": 1707,\n      \"title\": \"Huta\",\n      \"region\": {\n        \"id\": 2,\n        \"title\": \"Volyn oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Ratne raion\",\n      \"borderswith\": 20,\n      \"nationalId\": \"0724282201\",\n      \"latit\": 51.62556,\n      \"longit\": 24.12639\n    },\n    {\n      \"id\": 1735,\n      \"title\": \"Dolsk\",\n      \"region\": {\n        \"id\": 2,\n        \"title\": \"Volyn oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Liubeshiv raion\",\n      \"borderswith\": 20,\n      \"nationalId\": \"0725580901\",\n      \"latit\": 51.89306,\n      \"longit\": 25.51722\n    },\n    {\n      \"id\": 1737,\n      \"title\": \"Domanove\",\n      \"region\": {\n        \"id\": 2,\n        \"title\": \"Volyn oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Ratne raion\",\n      \"borderswith\": 20,\n      \"nationalId\": \"0724285504\",\n      \"latit\": 51.82361,\n      \"longit\": 24.34139\n    },\n    {\n      \"id\": 2207,\n      \"title\": \"Pishcha\",\n      \"region\": {\n        \"id\": 2,\n        \"title\": \"Volyn oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Shatsk raion\",\n      \"borderswith\": 20,\n      \"nationalId\": \"0725783901\",\n      \"latit\": 51.605,\n      \"longit\": 23.81\n    },\n    {\n      \"id\": 2257,\n      \"title\": \"Pulemets\",\n      \"region\": {\n        \"id\": 2,\n        \"title\": \"Volyn oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Shatsk raion\",\n      \"borderswith\": 20,\n      \"nationalId\": \"0725784501\",\n      \"latit\": 51.54194,\n      \"longit\": 23.71056\n    },\n    {\n      \"id\": 2314,\n      \"title\": \"Samary\",\n      \"region\": {\n        \"id\": 2,\n        \"title\": \"Volyn oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Ratne raion\",\n      \"borderswith\": 20,\n      \"nationalId\": \"0724286901\",\n      \"latit\": 51.865,\n      \"longit\": 24.61694\n    },\n    {\n      \"id\": 2446,\n      \"title\": \"Tur\",\n      \"region\": {\n        \"id\": 2,\n        \"title\": \"Volyn oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Ratne raion\",\n      \"borderswith\": 20,\n      \"nationalId\": \"0724287601\",\n      \"latit\": 51.675,\n      \"longit\": 24.27833\n    },\n    {\n      \"id\": 2487,\n      \"title\": \"Khrypsk\",\n      \"region\": {\n        \"id\": 2,\n        \"title\": \"Volyn oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Shatsk raion\",\n      \"borderswith\": 20,\n      \"nationalId\": \"0725785005\",\n      \"latit\": 51.63833,\n      \"longit\": 23.72722\n    },\n    {\n      \"id\": 5526,\n      \"title\": \"Vystupovychi\",\n      \"region\": {\n        \"id\": 5,\n        \"title\": \"Zhytomyr oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Ovruch raion\",\n      \"borderswith\": 20,\n      \"nationalId\": \"1824286709\",\n      \"latit\": 51.56361,\n      \"longit\": 29.07806\n    },\n    {\n      \"id\": 9374,\n      \"title\": \"Vilcha\",\n      \"region\": {\n        \"id\": 9,\n        \"title\": \"Kyiv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Poliske raion\",\n      \"borderswith\": 20,\n      \"nationalId\": \"3200000000\",\n      \"latit\": 51.36,\n      \"longit\": 29.43111\n    },\n    {\n      \"id\": 19439,\n      \"title\": \"Horodyshche\",\n      \"region\": {\n        \"id\": 17,\n        \"title\": \"Rivne oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Dubrovytsia raion\",\n      \"borderswith\": 20,\n      \"nationalId\": \"5624683001\",\n      \"latit\": 51.80361,\n      \"longit\": 26.69889\n    },\n    {\n      \"id\": 19939,\n      \"title\": \"Perebrody\",\n      \"region\": {\n        \"id\": 17,\n        \"title\": \"Rivne oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Dubrovytsia raion\",\n      \"borderswith\": 20,\n      \"nationalId\": \"5600000000\",\n      \"latit\": 51.72444,\n      \"longit\": 26.9775\n    },\n    {\n      \"id\": 2138332,\n      \"title\": \"Slavutych\",\n      \"region\": {\n        \"id\": 24,\n        \"title\": \"Chernihiv oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Chernihiv raion\",\n      \"borderswith\": 20,\n      \"nationalId\": \"7400000000\",\n      \"latit\": 51.53162,\n      \"longit\": 30.7735551\n    },\n    {\n      \"id\": 6992,\n      \"title\": \"Vylok\",\n      \"region\": {\n        \"id\": 6,\n        \"title\": \"Zakarpattia oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Vynohradiv raion\",\n      \"borderswith\": 36,\n      \"nationalId\": \"2121255300\",\n      \"latit\": 48.11028,\n      \"longit\": 22.83833\n    },\n    {\n      \"id\": 7488,\n      \"title\": \"Chop\",\n      \"region\": {\n        \"id\": 6,\n        \"title\": \"Zakarpattia oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Uzhhorod raion\",\n      \"borderswith\": 36,\n      \"nationalId\": \"2111000000\",\n      \"latit\": 48.42972,\n      \"longit\": 22.2175\n    },\n    {\n      \"id\": 824,\n      \"title\": \"Mohyliv-Podilskyi\",\n      \"region\": {\n        \"id\": 1,\n        \"title\": \"Vinnytsia oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 127,\n      \"nationalId\": \"0510400000\",\n      \"latit\": 48.44917,\n      \"longit\": 27.80306\n    },\n    {\n      \"id\": 17084,\n      \"title\": \"Reni\",\n      \"region\": {\n        \"id\": 15,\n        \"title\": \"Odesa oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Reni raion\",\n      \"borderswith\": 127,\n      \"nationalId\": \"5124110100\",\n      \"latit\": 45.46056,\n      \"longit\": 28.28611\n    },\n    {\n      \"id\": 29111,\n      \"title\": \"Kelmentsi\",\n      \"region\": {\n        \"id\": 25,\n        \"title\": \"Chernivtsi oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"Kelmentsi raion\",\n      \"borderswith\": 127,\n      \"nationalId\": \"7322055100\",\n      \"latit\": 48.46861,\n      \"longit\": 26.82333\n    },\n    {\n      \"id\": 7448,\n      \"title\": \"Uzhhorod\",\n      \"region\": {\n        \"id\": 6,\n        \"title\": \"Zakarpattia oblast\"\n      },\n      \"country\": 215,\n      \"district\": \"\",\n      \"borderswith\": 191,\n      \"nationalId\": \"2110100000\",\n      \"latit\": 48.62111,\n      \"longit\": 22.29694\n    }\n  ]\n}"},{"id":"99f117f1-41c2-4a65-b739-ef40763a7c7e","name":"Invalid token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getTown","host":["{{host}}"],"path":["a","v2","rest","public","getTown"],"query":[{"key":"byCheckpoint","value":"{{townsByCheckpoint}}","description":"Optional bool. True: Returns the list of cities in which checkpoints/warehouses of current user company are present. False: ignores the parameter","disabled":true},{"key":"byCompany","value":"{{townsByCheckpointCompany}}","description":"Optional int. Filter. Id of the company. Narrows the list of cities to cities in which checkpoints/warehouses of given company are present, works only if `byCheckpoint` parameter is passed.","disabled":true},{"key":"byCountry","value":"{{townsByCheckpointCountry}}","description":"Optional Int. Filter. Id of the country. Narrows the list of cities by checkpoints in a given country, works only if `byCheckpoint` parameter is passed.","disabled":true},{"key":"byRegion","value":"{{townsByCheckpointRegion}}","description":"Optional Int. Filter. Id of the region. Narrows the list of cities by checkpoints in a given region, works only if `byCheckpoint` parameter is passed.","disabled":true},{"key":"byCustoms","value":"{{customsFlag}}","description":"Optional int. Narrows the list given with `byCheckpoint` parameter to cities with customs checkpoints. Works only if `byCheckpoint` parameter is passed.","disabled":true},{"key":"byBorder","value":"{{townsByCheckpointBorder}}","description":"Optional bool. Returns the list of cities with border checkpoints","disabled":true},{"key":"bordersWith","value":"{{borderCountryId}}","description":"Optional int. Filter. Narrows the list given by `byBorder` parameter to cities with border checkpoints of Ukraine and another country, id of which is passed. `byBorder` parameter must be passed.","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token is required\",\n    \"relogin\": true\n}"}],"_postman_id":"bac268a7-b7ca-4e42-9bab-3ef3e161d33f"},{"name":"Get Checkpoint","event":[{"listen":"test","script":{"id":"6c8c8522-671f-4841-9e40-8b14731ba514","exec":["var response = pm.response.json();","var isContains = pm.response.text();","if (response.status === 200 || response.status === 'success') {","    pm.test(\"data in response matches array\", () => {","        pm.expect(response.data).to.be.an(\"array\");","    });","","   ","","} else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","   ","};",""],"type":"text/javascript"}}],"id":"9d1db77a-79e6-40f2-83e1-cdffcb48b9dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getCheckpoint","description":"<p>Returns the list of loading, unloading or customs checkpoints of the current company, depending on the passed parameters.</p>\n<ul>\n<li><p>if successful you will receive list of loading, unloading or customs checkpoints, depending on the passed parameters</p>\n</li>\n<li><p>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</p>\n</li>\n</ul>\n<p>(!) NOTE: Only for shippers. At least 1 parameter must be passed.</p>\n","urlObject":{"path":["a","v2","rest","public","getCheckpoint"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional int. Id of the company that owns the loading, unloading or customs checkpoints. Returns the list of checkpoints of passed company.</p>\n","type":"text/plain"},"key":"byCompany","value":"{{checkpointsByCheckpointCompany}}"},{"disabled":true,"description":{"content":"<p>Optional int. Id of the town with loading, unloading or customs checkpoints. Returns the list of checkpoints in the passed town. </p>\n","type":"text/plain"},"key":"byTown","value":"{{checkpointsByCheckpointTown}}"},{"disabled":true,"description":{"content":"<p>Optional bool. True: Returns the list of customs checkpoints. False (default): ignores the parameter, returns loading and unloading checkpoints.</p>\n","type":"text/plain"},"key":"customs","value":"{{checkpointsCustomsFlag}}"}],"variable":[]}},"response":[{"id":"92179d62-9441-4ce1-8ba8-de70387c2257","name":"Success (byCompany parameter passed)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCheckpoint?byCompany={{checkpointsByCheckpointCompany}}","host":["{{host}}"],"path":["a","v2","rest","public","getCheckpoint"],"query":[{"key":"byCompany","value":"{{checkpointsByCheckpointCompany}}","description":"Optional int. Id of the company that owns the loading/unloading checkpoint . Returns the list of checkpoints of passed company. At least 1 paremeter must be passed. Bycompany+byTown and customs+byTown can be passed together, if you combine the parameters otherwise you will not get the result."},{"key":"byTown","value":"9657","description":"Optional int. Id of the town with loading/unloading checkpoints. Returns the list of countries in which there are loading/unloading checkpoints in the passed town. At least 1 paremeter must be passed. Bycompany+byTown and customs+byTown can be passed together, if you combine the parameters otherwise you will not get the result.","disabled":true},{"key":"customs","value":"true","description":"Optional bool. True: Returns the list of custom checkpoints, false: error. At least 1 paremeter must be passed. Bycompany+byTown and customs+byTown can be passed together, if you combine the parameters otherwise you will not get the result.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 44,\n            \"address\": \"1 High Street\",\n            \"town\": 9657,\n            \"zip\": null,\n            \"latit\": \"50.412020000000000\",\n            \"longit\": \"30.572705000000000\"\n        }\n    ]\n}"},{"id":"4c556b30-9cb9-43d0-b6f1-0b73a672bae4","name":"Success (byTown parameter passed)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCheckpoint?byTown={{checkpointsByCheckpointTown}}","host":["{{host}}"],"path":["a","v2","rest","public","getCheckpoint"],"query":[{"key":"byCompany","value":"60","description":"Optional int. Id of the company that owns the loading/unloading checkpoint . Returns the list of checkpoints of passed company. At least 1 paremeter must be passed. Bycompany+byTown and customs+byTown can be passed together, if you combine the parameters otherwise you will not get the result.","disabled":true},{"key":"byTown","value":"{{checkpointsByCheckpointTown}}","description":"Optional int. Id of the town with loading/unloading checkpoints. Returns the list of countries in which there are loading/unloading checkpoints in the passed town. At least 1 paremeter must be passed. Bycompany+byTown and customs+byTown can be passed together, if you combine the parameters otherwise you will not get the result."},{"key":"customs","value":"true","description":"Optional bool. True: Returns the list of custom checkpoints, false: error. At least 1 paremeter must be passed. Bycompany+byTown and customs+byTown can be passed together, if you combine the parameters otherwise you will not get the result.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"success\",\n  \"data\": [\n    {\n      \"id\": 44,\n      \"address\": \"1 Example Street\",\n      \"town\": 9657,\n      \"zip\": null,\n      \"latit\": \"50.412020000000000\",\n      \"longit\": \"30.572705000000000\"\n    },\n    {\n      \"id\": 792,\n      \"address\": \"1B Sample Avenue\",\n      \"town\": 9657,\n      \"zip\": null,\n      \"latit\": \"50.417186000000000\",\n      \"longit\": \"30.636010000000000\"\n    },\n    {\n      \"id\": 823,\n      \"address\": \"3 Demo Road\",\n      \"town\": 9657,\n      \"zip\": null,\n      \"latit\": \"50.441728000000000\",\n      \"longit\": \"30.520585000000000\"\n    },\n    {\n      \"id\": 824,\n      \"address\": \"5 Placeholder Lane\",\n      \"town\": 9657,\n      \"zip\": null,\n      \"latit\": \"50.435394000000000\",\n      \"longit\": \"30.301297000000000\"\n    },\n    {\n      \"id\": 835,\n      \"address\": \"51 Test Street\",\n      \"town\": 9657,\n      \"zip\": null,\n      \"latit\": \"50.448669000000000\",\n      \"longit\": \"30.493555000000000\"\n    },\n    {\n      \"id\": 863,\n      \"address\": \"5 Mock Street\",\n      \"town\": 9657,\n      \"zip\": null,\n      \"latit\": \"50.435394000000000\",\n      \"longit\": \"30.301297000000000\"\n    },\n    {\n      \"id\": 5219,\n      \"address\": \"15 Example Boulevard\",\n      \"town\": 9657,\n      \"zip\": null,\n      \"latit\": \"50.418356700000000\",\n      \"longit\": \"30.407155100000000\"\n    },\n    {\n      \"id\": 6260,\n      \"address\": \"62 Sample Prospect\",\n      \"town\": 9657,\n      \"zip\": null,\n      \"latit\": \"50.504741000000000\",\n      \"longit\": \"30.435863800000000\"\n    },\n    {\n      \"id\": 6365,\n      \"address\": \"154A Demo Street\",\n      \"town\": 9657,\n      \"zip\": null,\n      \"latit\": \"50.447056100000000\",\n      \"longit\": \"30.444482100000000\"\n    },\n    {\n      \"id\": 6366,\n      \"address\": \"53 Placeholder Street\",\n      \"town\": 9657,\n      \"zip\": null,\n      \"latit\": \"50.420434000000000\",\n      \"longit\": \"30.444538000000000\"\n    },\n    {\n      \"id\": 6374,\n      \"address\": \"78 Sample Prospect\",\n      \"town\": 9657,\n      \"zip\": null,\n      \"latit\": \"50.506856900000000\",\n      \"longit\": \"30.424080000000000\"\n    },\n    {\n      \"id\": 6380,\n      \"address\": \"323 Test Road\",\n      \"town\": 9657,\n      \"zip\": null,\n      \"latit\": \"0.000000000000000\",\n      \"longit\": \"0.000000000000000\"\n    },\n    {\n      \"id\": 6382,\n      \"address\": \"154A Demo Street\",\n      \"town\": 9657,\n      \"zip\": null,\n      \"latit\": \"50.445036942455836\",\n      \"longit\": \"30.443912592065430\"\n    },\n    {\n      \"id\": 6385,\n      \"address\": \"Sechenova Street (no house number)\",\n      \"town\": 9657,\n      \"zip\": null,\n      \"latit\": \"50.391261729917495\",\n      \"longit\": \"30.491989052392570\"\n    },\n    {\n      \"id\": 6387,\n      \"address\": \"15 Example Way\",\n      \"town\": 9657,\n      \"zip\": null,\n      \"latit\": \"50.459357318950445\",\n      \"longit\": \"30.491656041139210\"\n    },\n    {\n      \"id\": 6427,\n      \"address\": \"1 Sample Drive\",\n      \"town\": 9657,\n      \"zip\": null,\n      \"latit\": \"50.510001499999990\",\n      \"longit\": \"30.482296899999938\"\n    },\n    {\n      \"id\": 6458,\n      \"address\": \"96 Demo Avenue, Apt 32\",\n      \"town\": 9657,\n      \"zip\": null,\n      \"latit\": \"0.000000000000000\",\n      \"longit\": \"0.000000000000000\"\n    },\n    {\n      \"id\": 6547,\n      \"address\": \"5 Placeholder Street\",\n      \"town\": 9657,\n      \"zip\": null,\n      \"latit\": \"50.392027500000000\",\n      \"longit\": \"30.474394100000040\"\n    },\n    {\n      \"id\": 6569,\n      \"address\": \"56 Test Avenue\",\n      \"town\": 9657,\n      \"zip\": null,\n      \"latit\": \"50.446604400000000\",\n      \"longit\": \"30.496839200000068\"\n    },\n    {\n      \"id\": 6595,\n      \"address\": \"13 Sample Street\",\n      \"town\": 9657,\n      \"zip\": null,\n      \"latit\": \"50.401897299999990\",\n      \"longit\": \"30.377944299999967\"\n    },\n    {\n      \"id\": 6596,\n      \"address\": \"22 Mock Lane\",\n      \"town\": 9657,\n      \"zip\": null,\n      \"latit\": \"50.450100000000000\",\n      \"longit\": \"30.523400000000038\"\n    },\n    {\n      \"id\": 6597,\n      \"address\": \"Unnamed Alley (no number)\",\n      \"town\": 9657,\n      \"zip\": null,\n      \"latit\": \"50.524092200000000\",\n      \"longit\": \"30.242687199999978\"\n    }\n  ]\n}"},{"id":"00ea2569-8fda-4692-9f6f-c9c8057c9e13","name":"Success (customs parameter passed)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCheckpoint?customs={{checkpointsCustomsFlag}}","host":["{{host}}"],"path":["a","v2","rest","public","getCheckpoint"],"query":[{"key":"byCompany","value":"60","description":"Optional int. Id of the company that owns the loading/unloading checkpoint . Returns the list of checkpoints of passed company. At least 1 paremeter must be passed. Bycompany+byTown and customs+byTown can be passed together, if you combine the parameters otherwise you will not get the result.","disabled":true},{"key":"byTown","value":"9657","description":"Optional int. Id of the town with loading/unloading checkpoints. Returns the list of countries in which there are loading/unloading checkpoints in the passed town. At least 1 paremeter must be passed. Bycompany+byTown and customs+byTown can be passed together, if you combine the parameters otherwise you will not get the result.","disabled":true},{"key":"customs","value":"{{checkpointsCustomsFlag}}","description":"Optional bool. True: Returns the list of custom checkpoints, false: error. At least 1 paremeter must be passed. Bycompany+byTown and customs+byTown can be passed together, if you combine the parameters otherwise you will not get the result."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"success\",\n  \"data\": [\n    {\n      \"id\": 2188,\n      \"address\": \"15 Example Customs Street\",\n      \"town\": 5712,\n      \"zip\": null,\n      \"latit\": \"50.254680000000000\",\n      \"longit\": \"28.658755000000000\"\n    },\n    {\n      \"id\": 2190,\n      \"address\": \"45 Sample Industrial Road\",\n      \"town\": 224189,\n      \"zip\": 2421,\n      \"latit\": \"50.835077000000000\",\n      \"longit\": \"12.914818000000000\"\n    },\n    {\n      \"id\": 2628,\n      \"address\": \"2 Demo Street\",\n      \"town\": 1929,\n      \"zip\": null,\n      \"latit\": \"50.928870900000010\",\n      \"longit\": \"25.246889000000000\"\n    },\n    {\n      \"id\": 6260,\n      \"address\": \"62 Sample Avenue\",\n      \"town\": 9657,\n      \"zip\": null,\n      \"latit\": \"50.504741000000000\",\n      \"longit\": \"30.435863800000000\"\n    },\n    {\n      \"id\": 6405,\n      \"address\": \"10 Placeholder Boulevard\",\n      \"town\": 16577,\n      \"zip\": null,\n      \"latit\": \"45.337569700000000\",\n      \"longit\": \"28.834245800000000\"\n    },\n    {\n      \"id\": 6473,\n      \"address\": \"5 Test Landing Street\",\n      \"town\": 2874,\n      \"zip\": null,\n      \"latit\": \"45.025077100000000\",\n      \"longit\": \"35.386058000000000\"\n    },\n    {\n      \"id\": 6474,\n      \"address\": \"3 Example Avenue\",\n      \"town\": 297289,\n      \"zip\": null,\n      \"latit\": \"50.699461900000000\",\n      \"longit\": \"5.616116899999952\"\n    },\n    {\n      \"id\": 6496,\n      \"address\": \"15 Mock Street\",\n      \"town\": 5243,\n      \"zip\": null,\n      \"latit\": \"48.125244000000000\",\n      \"longit\": \"37.853301999999985\"\n    },\n    {\n      \"id\": 6542,\n      \"address\": \"5 Sample Central Street\",\n      \"town\": 2138335,\n      \"zip\": null,\n      \"latit\": \"0.000000000000000\",\n      \"longit\": \"0.000000000000000\"\n    },\n    {\n      \"id\": 6543,\n      \"address\": \"5 Demo Road\",\n      \"town\": 2225782,\n      \"zip\": null,\n      \"latit\": \"47.843611000000000\",\n      \"longit\": \"28.405277999999953\"\n    },\n    {\n      \"id\": 16177,\n      \"address\": \"1 Example Harbor Street\",\n      \"town\": 2402040,\n      \"zip\": 123602,\n      \"latit\": \"46.436114957539720\",\n      \"longit\": \"30.710214387499980\"\n    },\n    {\n      \"id\": 16178,\n      \"address\": \"1 Example Harbor Street\",\n      \"town\": 2402040,\n      \"zip\": 123602,\n      \"latit\": \"45.458357700000000\",\n      \"longit\": \"28.293222200000000\"\n    },\n    {\n      \"id\": 16501,\n      \"address\": \"63 Unity Street\",\n      \"town\": 2402054,\n      \"zip\": null,\n      \"latit\": \"48.930697000000000\",\n      \"longit\": \"24.733548000000000\"\n    },\n    {\n      \"id\": 16502,\n      \"address\": \"63 Unity Street\",\n      \"town\": 2402054,\n      \"zip\": null,\n      \"latit\": \"48.930697000000000\",\n      \"longit\": \"24.733548000000000\"\n    },\n    {\n      \"id\": 16504,\n      \"address\": \"63 Unity Street\",\n      \"town\": 2402054,\n      \"zip\": null,\n      \"latit\": \"48.930697000000000\",\n      \"longit\": \"24.733548000000000\"\n    },\n    {\n      \"id\": 16505,\n      \"address\": \"63 Unity Street\",\n      \"town\": 2402054,\n      \"zip\": null,\n      \"latit\": \"48.930697000000000\",\n      \"longit\": \"24.733548000000000\"\n    },\n    {\n      \"id\": 16506,\n      \"address\": \"63 Unity Street\",\n      \"town\": 2402054,\n      \"zip\": null,\n      \"latit\": \"48.930697000000000\",\n      \"longit\": \"24.733548000000000\"\n    },\n    {\n      \"id\": 16507,\n      \"address\": \"63 Unity Street\",\n      \"town\": 2402054,\n      \"zip\": null,\n      \"latit\": \"48.930697000000000\",\n      \"longit\": \"24.733548000000000\"\n    },\n    {\n      \"id\": 16509,\n      \"address\": \"63 Unity Street\",\n      \"town\": 2402054,\n      \"zip\": null,\n      \"latit\": \"48.930697000000000\",\n      \"longit\": \"24.733548000000000\"\n    }\n  ]\n}"},{"id":"acd6e34d-1d3d-4e88-a258-5280dc8d323b","name":"No parameters passed","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCheckpoint","host":["{{host}}"],"path":["a","v2","rest","public","getCheckpoint"],"query":[{"key":"byCompany","value":"60","description":"Optional int. Id of the company that owns the loading/unloading checkpoint . Returns the list of checkpoints of passed company. At least 1 paremeter must be passed. Bycompany+byTown and customs+byTown can be passed together, if you combine the parameters otherwise you will not get the result.","disabled":true},{"key":"byTown","value":"9657","description":"Optional int. Id of the town with loading/unloading checkpoints. Returns the list of countries in which there are loading/unloading checkpoints in the passed town. At least 1 paremeter must be passed. Bycompany+byTown and customs+byTown can be passed together, if you combine the parameters otherwise you will not get the result.","disabled":true},{"key":"customs","value":"true","description":"Optional bool. True: Returns the list of custom checkpoints, false: error. At least 1 paremeter must be passed. Bycompany+byTown and customs+byTown can be passed together, if you combine the parameters otherwise you will not get the result.","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Missing parameters\",\n    \"relogin\": false\n}"},{"id":"d6a3ef48-a02f-404d-8d93-1dd5eae22966","name":"Invalid token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCheckpoint","host":["{{host}}"],"path":["a","v2","rest","public","getCheckpoint"],"query":[{"key":"byCompany","value":"60","description":"Optional int. Id of the company that owns the loading/unloading checkpoint . Returns the list of checkpoints of passed company. At least 1 paremeter must be passed. Bycompany+byTown and customs+byTown can be passed together, if you combine the parameters otherwise you will not get the result.","disabled":true},{"key":"byTown","value":"9657","description":"Optional int. Id of the town with loading/unloading checkpoints. Returns the list of countries in which there are loading/unloading checkpoints in the passed town. At least 1 paremeter must be passed. Bycompany+byTown and customs+byTown can be passed together, if you combine the parameters otherwise you will not get the result.","disabled":true},{"key":"customs","value":"true","description":"Optional bool. True: Returns the list of custom checkpoints, false: error. At least 1 paremeter must be passed. Bycompany+byTown and customs+byTown can be passed together, if you combine the parameters otherwise you will not get the result.","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"9d1db77a-79e6-40f2-83e1-cdffcb48b9dd"},{"name":"Get Checkpoint Contacts","event":[{"listen":"test","script":{"id":"d086d138-cb59-4aca-b38b-5ff9fca9a8c8","exec":["var response = pm.response.json();","var isContains = pm.response.text();","if (response.status === 200 || response.status === 'success') {","    pm.test(\"data in response matches array\", () => {","        pm.expect(response.data).to.be.an(\"array\");","    });","","   ","","} else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","   ","};",""],"type":"text/javascript"}}],"id":"d8d1d3d4-1095-45dc-b25e-fef925f16876","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getCheckpointContactData?checkpoint={{checkpoint}}","description":"<p>Returns the contact data of the single loading, unloading or customs checkpoint.</p>\n<ul>\n<li>if successful you will receive contact data of the single loading, unloading or customs checkpoint</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>(!) NOTE: Only for Shippers</p>\n","urlObject":{"path":["a","v2","rest","public","getCheckpointContactData"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Required int. id of the loading, unloading or customs checkpoint</p>\n","type":"text/plain"},"key":"checkpoint","value":"{{checkpoint}}"}],"variable":[]}},"response":[{"id":"fb51e674-dc68-40db-b42d-81946c929aea","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCheckpointContactData?checkpoint={{checkpoint}}","host":["{{host}}"],"path":["a","v2","rest","public","getCheckpointContactData"],"query":[{"key":"checkpoint","value":"{{checkpoint}}","description":"Required int. id of the checkpoint"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"success\",\n  \"data\": [\n    {\n      \"id\": 44,\n      \"checkpoint\": 44,\n      \"contactperson\": \"John Smith\",\n      \"cellnum\": \"\",\n      \"telnum\": \"02070000001\",\n      \"faxnum\": \"02070000002\",\n      \"email\": \"john.smith@example.com\",\n      \"remark\": \"\"\n    },\n    {\n      \"id\": 641,\n      \"checkpoint\": 44,\n      \"contactperson\": \"Alice Johnson\",\n      \"cellnum\": \"447700000000\",\n      \"telnum\": \"447700000001\",\n      \"faxnum\": \"447700000002\",\n      \"email\": \"alice.johnson@example.com\",\n      \"remark\": \"\"\n    }\n  ]\n}"},{"id":"2cba3fa1-9ee8-4a9b-9f72-0056379451e9","name":"Request by carrier","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCheckpointContactData?checkpoint={{checkpoint}}","host":["{{host}}"],"path":["a","v2","rest","public","getCheckpointContactData"],"query":[{"key":"checkpoint","value":"{{checkpoint}}"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Action not available\",\n    \"relogin\": false\n}"}],"_postman_id":"d8d1d3d4-1095-45dc-b25e-fef925f16876"},{"name":"Get Freight Descriptions","event":[{"listen":"test","script":{"id":"3aee7948-d436-4351-9e9c-6eab92ed87f0","exec":["var response = pm.response.json();","var isContains = pm.response.text();","if (response.status === 200 || response.status === 'success') {","    pm.test(\"data in response matches array\", () => {","        pm.expect(response.data).to.be.an(\"array\");","    });","","   ","","} else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","   ","};",""],"type":"text/javascript"}}],"id":"20a5b81d-c9ea-4375-a1c0-3cdca131fab2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getCargo?q={{cargoQuery}}","description":"<p>Returns the list of freight descriptions available in the app, specified by the <code>q</code> search query. The list starts from freight descriptions that your company has used.</p>\n<ul>\n<li>if successful you will receive a list of freight descriptions </li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>(!) NOTE: Returns no more than 50 entries. Can be used only by shipper</p>\n","urlObject":{"path":["a","v2","rest","public","getCargo"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Required. Freight description search string</p>\n","type":"text/plain"},"key":"q","value":"{{cargoQuery}}"}],"variable":[]}},"response":[{"id":"55d99e95-b7d3-487b-971e-2c70b2a2af19","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"},{"key":"Extend","value":"dictionary","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getCargo?q=agg","host":["{{host}}"],"path":["a","v2","rest","public","getCargo"],"query":[{"key":"q","value":"agg","description":"Required. Freight description search string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        \"Aggregates\",\n        \"Aggregated materials\"\n    ]\n}"},{"id":"d0eb3b4a-7148-448a-84dc-57ef5b018129","name":"No Query Parameter","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/a/v2/rest/public/getCargo"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Search query not passed\",\n    \"relogin\": false\n}"}],"_postman_id":"20a5b81d-c9ea-4375-a1c0-3cdca131fab2"},{"name":"Get Measure Units","event":[{"listen":"test","script":{"id":"157b3714-880a-436d-8d2f-8866dd5ffc8b","exec":["var response = pm.response.json();","var isContains = pm.response.text();","if (response.status === 200 || response.status === 'success') {","    pm.test(\"data in response matches array\", () => {","        pm.expect(response.data).to.be.an(\"array\");","    });","","   ","","} else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","   ","};",""],"type":"text/javascript"}}],"id":"38f227b8-73f0-4e4b-99f9-e4bcf3a17903","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>The language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getMeasureUnit","description":"<p>Returns the list of your company's unique measure units specified in the settings in the user interface. These measure units can be used to indicate the cargo quantity during the creation of route/tender.</p>\n<ul>\n<li>if successful you will receive your company's unique measure units</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n<p>(!) NOTE: Can be used only by shipper.</p>\n","urlObject":{"path":["a","v2","rest","public","getMeasureUnit"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"f2c9ec78-cd7c-4895-a4e4-7d8e17fc2138","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/a/v2/rest/public/getMeasureUnit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 7,\n            \"title\": \"box\"\n        },\n        {\n            \"id\": 9,\n            \"title\": \"pallet\"\n        },\n        {\n            \"id\": 773,\n            \"title\": \"GFKKTNF\"\n        },\n        {\n            \"id\": 774,\n            \"title\": \"12345/.,l\"\n        },\n        {\n            \"id\": 775,\n            \"title\": \"box plastic\"\n        },\n        {\n            \"id\": 776,\n            \"title\": \"metal GPS box\"\n        },\n        {\n            \"id\": 779,\n            \"title\": \"custom unit\"\n        },\n        {\n            \"id\": 780,\n            \"title\": \"custom unit\"\n        },\n        {\n            \"id\": 781,\n            \"title\": \"custom unit\"\n        },\n        {\n            \"id\": 782,\n            \"title\": \"case\"\n        },\n        {\n            \"id\": 783,\n            \"title\": \"custom unit\"\n        },\n        {\n            \"id\": 784,\n            \"title\": \"unit\"\n        }\n    ]\n}"},{"id":"74a5db5e-47c4-4245-be37-551353e71674","name":"Invalid token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"The language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/a/v2/rest/public/getMeasureUnit"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"38f227b8-73f0-4e4b-99f9-e4bcf3a17903"},{"name":"Get Loading Types","event":[{"listen":"test","script":{"id":"3d53c129-0128-4d90-8a7f-89fad901fe54","exec":["var response = pm.response.json();","var isContains = pm.response.text();","if (response.status === 200 || response.status === 'success') {","    pm.test(\"data in response matches array\", () => {","        pm.expect(response.data).to.be.an(\"array\");","    });","","   ","","} else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","   ","};",""],"type":"text/javascript"}}],"id":"8d9e0b60-3279-4ed2-9ec5-04215bbfe1d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getChargetype","description":"<p>Returns the available loading types.</p>\n<p>This is the list that contains available options that can be requested by the shipper when ordering a delivery, or can be listed as truck properties by the carrier.</p>\n<p>This list is useful in addition with <code>createRoute</code>/<code>createTender</code> endpoints for shipper, or <code>addVehicle</code> endpoint for carriers.</p>\n<ul>\n<li>If successful, you will receive the list of loading types</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getChargetype"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"9da076cc-5eda-44bc-811e-040b2c2be6f0","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getChargetype"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"success\",\n  \"data\": [\n    {\n      \"id\": 7,\n      \"title\": \"without rear doors\"\n    },\n    {\n      \"id\": 2,\n      \"title\": \"side loading\"\n    },\n    {\n      \"id\": 1,\n      \"title\": \"top loading\"\n    },\n    {\n      \"id\": 3,\n      \"title\": \"rear loading\"\n    },\n    {\n      \"id\": 4,\n      \"title\": \"full curtain opening\"\n    },\n    {\n      \"id\": 5,\n      \"title\": \"with crossbars removed\"\n    },\n    {\n      \"id\": 6,\n      \"title\": \"with side posts removed\"\n    }\n  ]\n}"},{"id":"8ae659ca-32fb-4285-84ce-455b0fa547f2","name":"Invalid token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getChargetype"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"8d9e0b60-3279-4ed2-9ec5-04215bbfe1d0"},{"name":"Get Truck Properties","event":[{"listen":"test","script":{"id":"8e9d4f5c-e07e-4f83-8739-a5ea3869037f","exec":["var response = pm.response.json();","var isContains = pm.response.text();","if (response.status === 200 || response.status === 'success') {","    pm.test(\"data in response matches array\", () => {","        pm.expect(response.data).to.be.an(\"array\");","    });","","   ","","} else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","   ","};",""],"type":"text/javascript"}}],"id":"00b3b447-2eb6-4aa8-8e57-b4f03ebf2d4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getFerryproperty","description":"<p>Returns the available properties of the vehicle.</p>\n<p>This is the list that contains available options that can be requested by the shipper when ordering a delivery, or can be listed as truck properties by the carrier.</p>\n<p>This list is useful in addition with <code>createRoute</code>/<code>createTender</code> endpoints for shipper, or <code>addVehicle</code> endpoint for carriers.</p>\n<ul>\n<li>If successful, you will receive the list of truck properties</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getFerryproperty"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"72cd2a8f-f4ae-44bd-99dc-052a297ea7df","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getFerryproperty"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"success\",\n  \"data\": [\n    {\n      \"id\": \"5\",\n      \"title\": \"load supports (stakes)\",\n      \"quantifiable\": \"\"\n    },\n    {\n      \"id\": \"6\",\n      \"title\": \"removable side posts\",\n      \"quantifiable\": \"\"\n    },\n    {\n      \"id\": \"7\",\n      \"title\": \"rigid side walls\",\n      \"quantifiable\": \"\"\n    },\n    {\n      \"id\": \"8\",\n      \"title\": \"wooden floor\",\n      \"quantifiable\": \"\"\n    },\n    {\n      \"id\": \"9\",\n      \"title\": \"clean vehicle\",\n      \"quantifiable\": \"\"\n    },\n    {\n      \"id\": \"10\",\n      \"title\": \"pallets\",\n      \"quantifiable\": \"pcs\"\n    },\n    {\n      \"id\": \"11\",\n      \"title\": \"temperature\",\n      \"quantifiable\": \"°C\"\n    },\n    {\n      \"id\": \"12\",\n      \"title\": \"straps\",\n      \"quantifiable\": \"pcs\"\n    },\n    {\n      \"id\": \"13\",\n      \"title\": \"ADR\",\n      \"quantifiable\": \"class\"\n    },\n    {\n      \"id\": \"14\",\n      \"title\": \"TIR\",\n      \"quantifiable\": \"\"\n    },\n    {\n      \"id\": \"18\",\n      \"title\": \"max length\",\n      \"quantifiable\": \"\"\n    },\n    {\n      \"id\": \"19\",\n      \"title\": \"max width\",\n      \"quantifiable\": \"\"\n    },\n    {\n      \"id\": \"20\",\n      \"title\": \"max height\",\n      \"quantifiable\": \"\"\n    }\n  ]\n}"},{"id":"a9edb453-e4e9-472c-b83d-c01dea569eea","name":"Invalid token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getFerryproperty"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"00b3b447-2eb6-4aa8-8e57-b4f03ebf2d4a"},{"name":"Get Pricing Modes","event":[{"listen":"test","script":{"id":"aa7f14e5-7b8f-4466-92a3-a018cb948146","exec":["var response = pm.response.json();","var isContains = pm.response.text();","if (response.status === 200 || response.status === 'success') {","    pm.test(\"data in response matches array\", () => {","        pm.expect(response.data).to.be.an(\"array\");","    });","","   ","","} else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","   ","};",""],"type":"text/javascript"}}],"id":"86c27193-dd35-48f9-b8ac-559cc2b11161","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getPricefor","description":"<p>Get the options, for which the price for route or tender can be set. Default is for <code>ride</code> (id: 3). </p>\n<p>This endpoint is useful in addition with the <code>createRoute</code>/<code>createTender</code> endpoints, because you can supply the price for kilometers, cubic meters, tons or rides. </p>\n<p>This endpoint returns the list of valid options for those pricing modes.</p>\n<ul>\n<li>If successful, you will receive the list of pricing modes</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getPricefor"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"e231c9d9-0bcd-4b36-9c68-eefe07e06922","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/a/v2/rest/public/getPricefor"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"success\",\n  \"data\": [\n    {\n      \"id\": 1,\n      \"title\": \"per tonne\",\n      \"code\": \"tonn\"\n    },\n    {\n      \"id\": 2,\n      \"title\": \"per cubic meter\",\n      \"code\": \"mcube\"\n    },\n    {\n      \"id\": 3,\n      \"title\": \"per trip\",\n      \"code\": \"ride\"\n    },\n    {\n      \"id\": 4,\n      \"title\": \"per km\",\n      \"code\": \"km\"\n    }\n  ]\n}"},{"id":"1f06db99-cf9a-47cb-8179-f5e4dfba32a6","name":"Invalid token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getPricefor"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"86c27193-dd35-48f9-b8ac-559cc2b11161"},{"name":"Get Currency","event":[{"listen":"test","script":{"id":"14a681ee-6f12-4740-b671-c388b7b36d7e","exec":["var response = pm.response.json();","var isContains = pm.response.text();","if (response.status === 200 || response.status === 'success') {","    pm.test(\"data in response matches array\", () => {","        pm.expect(response.data).to.be.an(\"array\");","    });","","   ","","} else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","   ","};",""],"type":"text/javascript"}}],"id":"21fe7df8-1f83-434c-8166-109ffef72d30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getCurrency","description":"<p>The method shows the currencies available to the current user.</p>\n<p>The contents differ depending on the country of the user.</p>\n<ul>\n<li>If successful, you will receive the list of currencies</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getCurrency"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"90873596-5fd4-40cf-bdcc-9984b379d6d3","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"},{"key":"Extend","value":"dictionary","type":"text","disabled":true}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/a/v2/rest/public/getCurrency"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"key\": \"uah\",\n            \"title\": \"грн\",\n            \"currencycode\": \"uah\",\n            \"symbol\": \"₴\"\n        },\n        {\n            \"key\": \"eur\",\n            \"title\": \"eur\",\n            \"currencycode\": \"eur\",\n            \"symbol\": \"€\"\n        },\n        {\n            \"key\": \"usd\",\n            \"title\": \"usd\",\n            \"currencycode\": \"usd\",\n            \"symbol\": \"$\"\n        }\n    ]\n}"},{"id":"777d1d19-2529-4f5a-b72c-2d740a638890","name":"Invalid token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"},{"key":"Extend","value":"dictionary","type":"text","disabled":true}],"url":"{{host}}/a/v2/rest/public/getCurrency"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"21fe7df8-1f83-434c-8166-109ffef72d30"},{"name":"Get Payment Types","event":[{"listen":"test","script":{"id":"0227de60-4d22-41c3-964b-ec501b3a9f55","exec":["var response = pm.response.json();","var isContains = pm.response.text();","if (response.status === 200 || response.status === 'success') {","    pm.test(\"data in response matches array\", () => {","        pm.expect(response.data).to.be.an(\"array\");","    });","","   ","","} else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","   ","};",""],"type":"text/javascript"}}],"id":"089b0295-f4a0-4151-97c9-6697412262aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getPaymenttype","description":"<p>The method shows available payment types.</p>\n<ul>\n<li>If successful, you will receive the list of payment types</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getPaymenttype"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"8d676063-ed2c-4f04-bdc4-1ce3d63f99d3","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/a/v2/rest/public/getPaymenttype"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"success\",\n  \"data\": [\n    {\n      \"id\": 2,\n      \"title\": \"Bank transfer\"\n    },\n    {\n      \"id\": 3,\n      \"title\": \"Cash\"\n    },\n    {\n      \"id\": 6,\n      \"title\": \"Simplified tax scheme\"\n    }\n  ]\n}"},{"id":"dc581621-51c4-4009-add1-819fcaab2600","name":"Invalid token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}1","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/a/v2/rest/public/getPaymenttype"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token is invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"089b0295-f4a0-4151-97c9-6697412262aa"},{"name":"Get Payor Legal Entities","event":[{"listen":"test","script":{"id":"1f513db0-2a78-419d-8572-e3c482bc26df","exec":["var response = pm.response.json();","var isContains = pm.response.text();","if (response.status === 200 || response.status === 'success') {","    pm.test(\"data in response matches array\", () => {","        pm.expect(response.data).to.be.an(\"array\");","    });","","   ","","} else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","   ","};",""],"type":"text/javascript"}}],"id":"1723185b-2654-435d-9311-ca530a877511","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getPayor","description":"<p>The method shows available payor legal entities. Available only to shipper user type (usertype 1). </p>\n<p>Every shipper has an opportunity to add additional payor legal entities in settings section in Sovtes webapp. Thus, the response may differ from user to user, because the content of the response shows the very payor legal entities for that particular user's company.</p>\n<ul>\n<li>If successful, you will receive the list payor legal entities</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getPayor"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"d7fda049-32f0-499b-917b-a211586e3a98","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/a/v2/rest/public/getPayor"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"success\",\n  \"data\": [\n    {\n      \"title\": \"Northwind Logistics Ltd\",\n      \"natcomid\": \"54839217\"\n    },\n    {\n      \"title\": \"BlueRiver Transport\",\n      \"natcomid\": \"11223344\"\n    },\n    {\n      \"title\": \"Atlas Freight Solutions\",\n      \"natcomid\": \"9988776655\"\n    },\n    {\n      \"title\": \"GreenLine Haulage\",\n      \"natcomid\": \"\"\n    },\n    {\n      \"title\": \"Redwood Supply Chain\",\n      \"natcomid\": \"6739201458\"\n    }\n  ]\n}"},{"id":"8f85cb1d-fcb6-4ca1-80ec-2eadfe44ae3e","name":"Carrier request error","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/a/v2/rest/public/getPayor"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Mon, 23 Aug 2021 22:06:57 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, User-Agent, Accept-Encoding, Authorization, Language, Extend, Content-Type"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Action not allowed\",\n    \"relogin\": false\n}"}],"_postman_id":"1723185b-2654-435d-9311-ca530a877511"},{"name":"Get File Upload Requirements","event":[{"listen":"test","script":{"id":"a658c138-768f-4cda-8e3a-2a72da774ccd","exec":["var response = pm.response.json();","var isContains = pm.response.text();","if (response.status === 200 || response.status === 'success') {","    pm.test(\"data in response matches array\", () => {","        pm.expect(response.data).to.be.an(\"array\");","    });","","   ","","} else {","    pm.test(\"Response have relogin an Boolean\", () => {","        pm.expect(response.relogin).to.be.an('boolean');","    });","   ","};",""],"type":"text/javascript"}}],"id":"ba0449cd-dc99-49a7-b981-50107492d520","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/a/v2/rest/public/getFileUploadRequirements","description":"<p>The method shows the requirements for file upload. Note the <code>maxSize</code> and <code>types</code> parameters.</p>\n<ul>\n<li>If successful, you will receive the requirements list </li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header or the language set in the app</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getFileUploadRequirements"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"93cc60e3-0560-4a9a-96c0-270e506ede81","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"},{"key":"Extend","value":"dictionary","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/a/v2/rest/public/getFileUploadRequirements"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"maxSize\": 8388608,\n        \"types\": [\n            \"jpg\",\n            \"jpeg\",\n            \"png\",\n            \"bmp\",\n            \"gif\",\n            \"tif\",\n            \"pdf\",\n            \"doc\",\n            \"docx\",\n            \"xls\",\n            \"xlsx\"\n        ]\n    }\n}"},{"id":"6b965f9f-f048-4ba5-b017-1f9f91c63383","name":"Invalid token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text"},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/a/v2/rest/public/getFileUploadRequirements"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token is invalid\",\n    \"relogin\": true\n}"}],"_postman_id":"ba0449cd-dc99-49a7-b981-50107492d520"},{"name":"Get Payment Requests (old)","id":"3fa0e373-6806-4847-8075-0114af5c2bb3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback, if the authentication attempts are unsuccessful</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getPaymentRequests","description":"<p>This endpoint retrieves a list of payment requests along with their details. Clients must provide an authorization token and a language header to access this endpoint. The response includes the status of the request and an array of payment request objects with detailed routing information.</p>\n<p><strong>Field Descriptions:</strong></p>\n<ul>\n<li><strong>status</strong>: Indicates the success of the API call.</li>\n<li><strong>data</strong>: An array of payment request objects.<ul>\n<li><strong>number</strong>: Unique identifier of the payment request.</li>\n<li><strong>state</strong>: Current state of the payment request (e.g., new, paid, declined, ratified).</li>\n<li><strong>moment</strong>: Timestamp of the payment request.</li>\n<li><strong>uuid</strong>: Unique identifier for the request.</li>\n<li><strong>sum</strong>: Total amount requested.</li>\n<li><strong>issuer</strong>: Entity issuing the payment request.</li>\n<li><strong>routes</strong>: Array of route objects associated with the payment request.<ul>\n<li><strong>apicode</strong>: Code associated with the API.</li>\n<li><strong>budget</strong>: Budget allocated for the route.</li>\n<li><strong>hash</strong>: Hash value for the route.</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getPaymentRequests"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"ead25b9a-34f6-4cff-a7db-8644167eb6bd","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":"{{host}}/a/v2/rest/public/getPaymentRequests"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"number\": \"asodmasdasd\",\n            \"state\": \"new\",\n            \"moment\": \"2023-11-17 18:40:52\",\n            \"uuid\": \"302ebf7c-8568-11ee-ab72-1eee848349a0\",\n            \"sum\": \"413743.00\",\n            \"issuer\": \"provider\",\n            \"routes\": [\n                {\n                    \"apicode\": \"test-api\",\n                    \"budget\": 2650,\n                    \"hash\": \"00e22611bcaf7f64d97a75aa8d074f99\"\n                },\n                {\n                    \"apicode\": \"0.9670328488266401\",\n                    \"budget\": 6000,\n                    \"hash\": \"350689b31d5f009b3ba341945cb12d81\"\n                },\n                {\n                    \"apicode\": \"0.6557187891152862\",\n                    \"budget\": 5000,\n                    \"hash\": \"b3671908c16817aee16697e5049c89f1\"\n                },\n                {\n                    \"apicode\": \"0.001982429066656557\",\n                    \"budget\": 5000,\n                    \"hash\": \"8392c5d2d73ca8e66e11e6d20bf5ac3b\"\n                },\n                {\n                    \"apicode\": \"0.947122911873388\",\n                    \"budget\": 5000,\n                    \"hash\": \"d193a5ec8e8d27023e3c95f695c5373f\"\n                },\n                {\n                    \"apicode\": \"0.7163089632208542\",\n                    \"budget\": 5000,\n                    \"hash\": \"35c643e29439c52502bf41e08d0b9efa\"\n                },\n                {\n                    \"apicode\": \"0.23221729996820661\",\n                    \"budget\": 5000,\n                    \"hash\": \"4a1db079f0e123bfa3f86822e6d149de\"\n                },\n                {\n                    \"apicode\": \"\",\n                    \"budget\": 0,\n                    \"hash\": \"83aad578d4e5a8294ef6a32d84ae46ba\"\n                },\n                {\n                    \"apicode\": \"0.17621022479255705\",\n                    \"budget\": 5000,\n                    \"hash\": \"af54562917dc5d00bf6ad1fd38e96f15\"\n                },\n                {\n                    \"apicode\": \"0.8608113144159423\",\n                    \"budget\": 13454,\n                    \"hash\": \"486ab2ad90f2632de1372ccd6c8fa628\"\n                },\n                {\n                    \"apicode\": \"0.10723068202587839\",\n                    \"budget\": 7548,\n                    \"hash\": \"e06d41cdd713c62ee3b6cb2dbd5742a2\"\n                },\n                {\n                    \"apicode\": \"\",\n                    \"budget\": 7841,\n                    \"hash\": \"c5eccbf76ae05674a4b673f35050621d\"\n                },\n                {\n                    \"apicode\": \"123\",\n                    \"budget\": 5000,\n                    \"hash\": \"87f583c8dcc6952d09523e94c8f10f77\"\n                },\n                {\n                    \"apicode\": \"0.08158724948911672\",\n                    \"budget\": 5000,\n                    \"hash\": \"d3b7854c2948696b34b71c4aa32b12da\"\n                },\n                {\n                    \"apicode\": \"0.01728116256862987\",\n                    \"budget\": 5000,\n                    \"hash\": \"c7dd120ba457b7455df640826e5464fa\"\n                },\n                {\n                    \"apicode\": \"asdasda\",\n                    \"budget\": 2650,\n                    \"hash\": \"7f133b2a86715674a6455989d2e5058f\"\n                },\n                {\n                    \"apicode\": \"1a12f2209281e1c\",\n                    \"budget\": 25000,\n                    \"hash\": \"389efc1d5aa91fe6c955c5a0f1de5927\"\n                },\n                {\n                    \"apicode\": \"ол\",\n                    \"budget\": 297000,\n                    \"hash\": \"c0ece27c0b0e995058f9252f201b2b7a\"\n                },\n                {\n                    \"apicode\": \"фи\",\n                    \"budget\": 600,\n                    \"hash\": \"577db620755b70be0f088e510846ba15\"\n                },\n                {\n                    \"apicode\": \"unique-external-id-11212\",\n                    \"budget\": 0,\n                    \"hash\": \"191e84a2c4555141928da10a0bb015fd\"\n                },\n                {\n                    \"apicode\": \"фивфив\",\n                    \"budget\": 5000,\n                    \"hash\": \"2a667ad3e1cabf5c99ab8b29f58ad5d8\"\n                },\n                {\n                    \"apicode\": \"asd\",\n                    \"budget\": 1000,\n                    \"hash\": \"d0d3df54657663b6683ea0cf8cc84cd1\"\n                }\n            ]\n        },\n        {\n            \"number\": \"11kjhgasad4553\",\n            \"state\": \"paid\",\n            \"moment\": \"2023-11-20 18:03:16\",\n            \"uuid\": \"fe64b5e3-1fd9-476f-936a-1e47f98694c6\",\n            \"sum\": \"132995.33\",\n            \"issuer\": \"provider\",\n            \"routes\": [\n                {\n                    \"apicode\": \"456372\",\n                    \"budget\": 2650,\n                    \"hash\": \"087b904e9577eb643fa41b92cd287494\"\n                },\n                {\n                    \"apicode\": \"\",\n                    \"budget\": 3666,\n                    \"hash\": \"0d6be3b2a42c4ffa3b5dbd91ef7cb1f2\"\n                },\n                {\n                    \"apicode\": \"123\",\n                    \"budget\": 0,\n                    \"hash\": \"58e7aa4ae4b14f936c8d3c1ff4c448f0\"\n                },\n                {\n                    \"apicode\": \"0.03256814464234574\",\n                    \"budget\": 5000,\n                    \"hash\": \"ef39b5a90e5611474eafb4448244a6ce\"\n                },\n                {\n                    \"apicode\": \"0.041961475314536575\",\n                    \"budget\": 5000,\n                    \"hash\": \"5645eabd53f29db62b3f6b46b0a4ee9a\"\n                },\n                {\n                    \"apicode\": \"0.3684386716861638\",\n                    \"budget\": 5000,\n                    \"hash\": \"b653ef7b944b6ff8bc6ec1b819c6fb81\"\n                },\n                {\n                    \"apicode\": \"current1\",\n                    \"budget\": 5000,\n                    \"hash\": \"9c7a4379b985bf3634a5ad139367f2f2\"\n                },\n                {\n                    \"apicode\": \"0.4784866063655229\",\n                    \"budget\": 10,\n                    \"hash\": \"0edcca852b3e0de26dff7a10813ce2c5\"\n                },\n                {\n                    \"apicode\": \"8441356513\",\n                    \"budget\": 1000,\n                    \"hash\": \"5a21f0c91de0f8fbd40113920300accc\"\n                },\n                {\n                    \"apicode\": \"0.6827000097210519\",\n                    \"budget\": 5000,\n                    \"hash\": \"be71efd31cb899aa56ddf56b0e37db72\"\n                },\n                {\n                    \"apicode\": \"0.0035039428654163544\",\n                    \"budget\": 14121,\n                    \"hash\": \"f2c1f78ba69ccff34f71a8767b8840b1\"\n                },\n                {\n                    \"apicode\": \"876\",\n                    \"budget\": 5000,\n                    \"hash\": \"bc41f091ef5a25dd6d9438bbb1e0141c\"\n                },\n                {\n                    \"apicode\": \"0.7642754658723953\",\n                    \"budget\": 5000,\n                    \"hash\": \"9b3f80d8d665ae7b173783e9c3739f69\"\n                },\n                {\n                    \"apicode\": \"7829934231\",\n                    \"budget\": 17575,\n                    \"hash\": \"e55861eb4be354aae3fbe83ee20c0dfa\"\n                },\n                {\n                    \"apicode\": \"46e19ffc-6f6d-443b-bcb2-c9d530410a70\",\n                    \"budget\": 25000,\n                    \"hash\": \"37253dab0574eea7030b3b795343a701\"\n                },\n                {\n                    \"apicode\": \"114\",\n                    \"budget\": 20000,\n                    \"hash\": \"eba9b5a18ae64bfbd260fad858104f7f\"\n                },\n                {\n                    \"apicode\": \"фив\",\n                    \"budget\": 12000,\n                    \"hash\": \"f0f5fbbcf9ec1cf91d15893237d6a67c\"\n                },\n                {\n                    \"apicode\": \"asd\",\n                    \"budget\": 833.33,\n                    \"hash\": \"b26a7ff43a4bba713ee8fba040832051\"\n                },\n                {\n                    \"apicode\": \"asd\",\n                    \"budget\": 960,\n                    \"hash\": \"ff69467de7b7adee36c9f974ad8c8e6a\"\n                },\n                {\n                    \"apicode\": \"asd\",\n                    \"budget\": 180,\n                    \"hash\": \"8e4764d672dbc3faf1db53cb3f54fb6a\"\n                }\n            ]\n        },\n        {\n            \"number\": \"11kjhgasad5239\",\n            \"state\": \"declined\",\n            \"moment\": \"2023-11-20 18:03:49\",\n            \"uuid\": \"5025145e-ed1f-47aa-a6dd-1dac5cbc9b91\",\n            \"sum\": \"155280.66\",\n            \"issuer\": \"provider2\",\n            \"routes\": [\n                {\n                    \"apicode\": \"123213421343123443213\",\n                    \"budget\": 5000,\n                    \"hash\": \"0e9c48a40a6d183e81575211287297c9\"\n                },\n                {\n                    \"apicode\": \"123\",\n                    \"budget\": 0,\n                    \"hash\": \"78149e53be95ca6e535193b389c9867a\"\n                },\n                {\n                    \"apicode\": \"0.18076632561233483\",\n                    \"budget\": 5000,\n                    \"hash\": \"206c906176b19163cc029d5f541277ab\"\n                },\n                {\n                    \"apicode\": \"\",\n                    \"budget\": 100,\n                    \"hash\": \"a66ec3335bd24509d0274a3fbc40fbda\"\n                },\n                {\n                    \"apicode\": \"0.35819345466624336\",\n                    \"budget\": 5000,\n                    \"hash\": \"d55fa808a91c6218a7dd5228597f1b5d\"\n                },\n                {\n                    \"apicode\": \"\",\n                    \"budget\": 5000,\n                    \"hash\": \"8abb2f0d91a7d3f07d9279979d1a07b2\"\n                },\n                {\n                    \"apicode\": \"0.8310661360910778\",\n                    \"budget\": 5000,\n                    \"hash\": \"a469769adb3779f9822e34d83424fd4a\"\n                },\n                {\n                    \"apicode\": \"0.04295503258980348\",\n                    \"budget\": 14125,\n                    \"hash\": \"3dd722c23ecad004a78a5da3815109d7\"\n                },\n                {\n                    \"apicode\": \"0.3365506709893706\",\n                    \"budget\": 7544,\n                    \"hash\": \"b917ccb2a8137b2981d878251ab5e8b1\"\n                },\n                {\n                    \"apicode\": \"\",\n                    \"budget\": 7845,\n                    \"hash\": \"3bec55eae27babb1d8fa9e89479336fd\"\n                },\n                {\n                    \"apicode\": \"66\",\n                    \"budget\": 5000,\n                    \"hash\": \"d7028b6e881c432a4a33354120b9b363\"\n                },\n                {\n                    \"apicode\": \"0.33630321764974225\",\n                    \"budget\": 5000,\n                    \"hash\": \"b39f9f90e2ce24fb73be250bfa0a178e\"\n                },\n                {\n                    \"apicode\": \"7\",\n                    \"budget\": 5000,\n                    \"hash\": \"d1a1dd211c80133fa981128488338625\"\n                },\n                {\n                    \"apicode\": \"932352532523-gdfgfgf-4343-5353\",\n                    \"budget\": 25000,\n                    \"hash\": \"8fae6e6688cfc3c6cb44625a705ab097\"\n                },\n                {\n                    \"apicode\": \"6ca132f6-0904-4f48-9e29-2b9174541c4c\",\n                    \"budget\": 25000,\n                    \"hash\": \"5efeadf58926c4016cbfa84fef8aeeae\"\n                },\n                {\n                    \"apicode\": \"фив\",\n                    \"budget\": 12000,\n                    \"hash\": \"60e8be3580609f91986939f85a567574\"\n                },\n                {\n                    \"apicode\": \"asd\",\n                    \"budget\": 12000,\n                    \"hash\": \"dac27ada7ffc0e9cc4576d48c7205b72\"\n                },\n                {\n                    \"apicode\": \"asda\",\n                    \"budget\": 10000,\n                    \"hash\": \"baad44ba3e64695782395a90a197a473\"\n                },\n                {\n                    \"apicode\": \"asd\",\n                    \"budget\": 833.33,\n                    \"hash\": \"b3df4cdffa14e604bf9e1a6e9f754c46\"\n                },\n                {\n                    \"apicode\": \"asd\",\n                    \"budget\": 833.33,\n                    \"hash\": \"ba58532fe8f53fded9003d9c7037caea\"\n                }\n            ]\n        },\n        {\n            \"number\": \"11kjhgasad1826\",\n            \"state\": \"new\",\n            \"moment\": \"2023-11-20 18:03:57\",\n            \"uuid\": \"80c7822b-a347-4a90-98d2-b6b0b05e73aa\",\n            \"sum\": \"83072.00\",\n            \"issuer\": \"Seifert Polska Sp.Z.o.p\",\n            \"routes\": [\n                {\n                    \"apicode\": \"0.8047545541122132\",\n                    \"budget\": 5000,\n                    \"hash\": \"27f1d7942632d86869896e84942f025d\"\n                },\n                {\n                    \"apicode\": \"0.1133978684557582\",\n                    \"budget\": 5000,\n                    \"hash\": \"5a9daf1a032c4cb8d068c391298874ac\"\n                },\n                {\n                    \"apicode\": \"0.5106133879261217\",\n                    \"budget\": 5000,\n                    \"hash\": \"f7404b05aa7b09616181d92e1560a015\"\n                },\n                {\n                    \"apicode\": \"\",\n                    \"budget\": 14517,\n                    \"hash\": \"361635f7d97576ac7b14ecd9f4b6446b\"\n                },\n                {\n                    \"apicode\": \"0.028826862600470765\",\n                    \"budget\": 21000,\n                    \"hash\": \"d0c9a279f95fe2fb6f2157da46339a55\"\n                },\n                {\n                    \"apicode\": \"0.22141165213790875\",\n                    \"budget\": 5000,\n                    \"hash\": \"f2e0ec3c7f42022a14dad81378f18242\"\n                },\n                {\n                    \"apicode\": \"213у\",\n                    \"budget\": 2800,\n                    \"hash\": \"406d6fad4c26161c770b0e587e9123b5\"\n                },\n                {\n                    \"apicode\": \"4373479240\",\n                    \"budget\": 23755,\n                    \"hash\": \"a686653f683620217423b0cdd08de499\"\n                },\n                {\n                    \"apicode\": \"unique-external-id-11212\",\n                    \"budget\": 0,\n                    \"hash\": \"83292a2ac21c4fe3759208d21520df07\"\n                },\n                {\n                    \"apicode\": \"asd\",\n                    \"budget\": 1000,\n                    \"hash\": \"c197d4f99c439f0ae669d1d0e9533517\"\n                }\n            ]\n        },\n        {\n            \"number\": \"11kjhgasad3741\",\n            \"state\": \"ratified\",\n            \"moment\": \"2023-11-20 18:06:29\",\n            \"uuid\": \"738b625f-99c9-4a48-abd7-b6554ced405d\",\n            \"sum\": \"15789.00\",\n            \"issuer\": \"Seifert Polska Sp.Z.o.p\",\n            \"routes\": [\n                {\n                    \"apicode\": \"0.3625902266824527\",\n                    \"budget\": 5000,\n                    \"hash\": \"b2400c08318741f252afc3c47a5a8d11\"\n                },\n                {\n                    \"apicode\": \"0.4762288317794249\",\n                    \"budget\": 5000,\n                    \"hash\": \"c00e0ab13cf29ef43bbdad0220255f33\"\n                },\n                {\n                    \"apicode\": \"0.8930831476050272\",\n                    \"budget\": 5789,\n                    \"hash\": \"5f2339fd3fd66e8b6237bd0634c745ee\"\n                }\n            ]\n        },\n        {\n            \"number\": \"1112312313833\",\n            \"state\": \"new\",\n            \"moment\": \"2023-11-20 18:07:33\",\n            \"uuid\": \"f606852c-9597-4282-bbdd-4e4c186492e9\",\n            \"sum\": \"59361.37\",\n            \"issuer\": \"Seifert Polska Sp.Z.o.p\",\n            \"routes\": [\n                {\n                    \"apicode\": \"1878106341\",\n                    \"budget\": 34361.37,\n                    \"hash\": \"c3a48e5ab83cf25e84ae34148816302a\"\n                },\n                {\n                    \"apicode\": \"status5route\",\n                    \"budget\": 14000,\n                    \"hash\": \"f05b06a60817c9d4951212a89778ef18\"\n                },\n                {\n                    \"apicode\": \"asda\",\n                    \"budget\": 10000,\n                    \"hash\": \"5e4fc189e7722906028323b33f7b3ca9\"\n                },\n                {\n                    \"apicode\": \"asd\",\n                    \"budget\": 1000,\n                    \"hash\": \"fa7fb75a84bfb1bb49597cafda0a7114\"\n                }\n            ]\n        },\n        {\n            \"number\": \"9988895079\",\n            \"state\": \"paid\",\n            \"moment\": \"2023-11-22 17:48:41\",\n            \"uuid\": \"121766cf-3118-4d27-b08e-acbf950ed40e\",\n            \"sum\": \"45000.00\",\n            \"issuer\": \"Агротеп, ООО\",\n            \"routes\": [\n                {\n                    \"apicode\": \"0.07540218166578765\",\n                    \"budget\": 5000,\n                    \"hash\": \"9057e606af4ed0bb775e1206bec1022f\"\n                },\n                {\n                    \"apicode\": \"0.5668147444415975\",\n                    \"budget\": 5000,\n                    \"hash\": \"51f0b0458d87c9ef8c103b7fde061014\"\n                },\n                {\n                    \"apicode\": \"0.3388918371302\",\n                    \"budget\": 5000,\n                    \"hash\": \"7c0dd3fba6d384e7f3c157b795167abb\"\n                },\n                {\n                    \"apicode\": \"0.07548966358927048\",\n                    \"budget\": 5000,\n                    \"hash\": \"ab4c17577f301db3a49d8107293d3953\"\n                },\n                {\n                    \"apicode\": \"0.8890950827757782\",\n                    \"budget\": 5000,\n                    \"hash\": \"005d6ffc9d32c9236face835d7a2f422\"\n                },\n                {\n                    \"apicode\": \"0.8226471485780991\",\n                    \"budget\": 5000,\n                    \"hash\": \"ebee917dfcc13a35ca7aa3a903e869e9\"\n                },\n                {\n                    \"apicode\": \"0.8978843715953495\",\n                    \"budget\": 5000,\n                    \"hash\": \"510f42035c9aed2ee85675467150b0e9\"\n                },\n                {\n                    \"apicode\": \"0.09345130537958006\",\n                    \"budget\": 5000,\n                    \"hash\": \"1bf416f127ac104f61bcdea39d88baaf\"\n                },\n                {\n                    \"apicode\": \"0.8675047055515505\",\n                    \"budget\": 5000,\n                    \"hash\": \"5f35f4c62837cbb9557a98053b7a7ddd\"\n                }\n            ]\n        },\n        {\n            \"number\": \"kljhvg\",\n            \"state\": \"new\",\n            \"moment\": \"2023-11-23 15:11:16\",\n            \"uuid\": \"b4625416-3abf-4c5a-b789-998bb7e0cbd2\",\n            \"sum\": \"10000.00\",\n            \"issuer\": \"Агротеп, ООО\",\n            \"routes\": [\n                {\n                    \"apicode\": \"123\",\n                    \"budget\": 0,\n                    \"hash\": \"35b62927a596bc654c68e020af92b048\"\n                },\n                {\n                    \"apicode\": \"0.3646109023733166\",\n                    \"budget\": 5000,\n                    \"hash\": \"532c3d7623bbd7c37d0f6d70a3d65fd7\"\n                },\n                {\n                    \"apicode\": \"0.7557448621427126\",\n                    \"budget\": 5000,\n                    \"hash\": \"e45644c2c1e1f49a915773aacb3e91f3\"\n                }\n            ]\n        },\n        {\n            \"number\": \"number\",\n            \"state\": \"new\",\n            \"moment\": \"2023-11-23 15:22:31\",\n            \"uuid\": \"f2f45f7f-185c-4540-901e-fbecfadf6626\",\n            \"sum\": \"0.00\",\n            \"issuer\": \"Seifert Polska Sp.Z.o.p\"\n        }\n    ]\n}"},{"id":"f1982b32-47a5-4cd6-8c4d-900177b8cad5","name":"Missing token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"JWT token","type":"text","disabled":true},{"key":"Language","value":"{{language}}","description":"the language in which you would like to receive feedback, if the authentication attempts are unsuccessful","type":"text"}],"url":"{{host}}/a/v2/rest/public/getPaymentRequests"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Token is required\",\n    \"relogin\": true\n}"}],"_postman_id":"3fa0e373-6806-4847-8075-0114af5c2bb3"},{"name":"Get Route Price Prediction","id":"3bc88da6-cfaa-41f0-8c58-38141f8f25c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","description":"<p>JWT token</p>\n","type":"text"},{"key":"Language","value":"{{language}}","description":"<p>the language in which you would like to receive feedback</p>\n","type":"text"}],"url":"{{host}}/a/v2/rest/public/getRoutePricePrediction?cartype=14&points[]=48.509674200000000|25.045117300000000&points[]=48.405168000000000|35.035218000000000","description":"<p>This endpoint retrieves a price prediction for a specific route based on the provided points and optional parameters. It calculates the estimated cost for a journey between multiple geographical coordinates. Users can input route information using geographical coordinates, Google Places IDs, or city names.</p>\n<p>Parameters:</p>\n<p>points[]:</p>\n<p>An array of geographical coordinates representing the waypoints along the route. Each coordinate consists of latitude and longitude separated by a vertical bar (|).</p>\n<p>Ensure that the points array contains at least two coordinates to define the route.</p>\n<p>cartype:</p>\n<p>(Optional) Specifies the type of vehicle or service used for the route prediction, potentially influencing the predicted price. </p>\n<ul>\n<li>If successful, the response will contain the estimated cost for the specified route.</li>\n<li>If unsuccessful you will receive an error explaining the problem in the language you supplied with the header</li>\n</ul>\n","urlObject":{"path":["a","v2","rest","public","getRoutePricePrediction"],"host":["{{host}}"],"query":[{"key":"cartype","value":"14"},{"description":{"content":"<p>geographical coordinates/googlePlaceId/city</p>\n","type":"text/plain"},"key":"points[]","value":"48.509674200000000|25.045117300000000"},{"disabled":true,"key":"points[]","value":"ChIJe6tUMeDf2kARbhhrfRc6-rA"},{"description":{"content":"<p>geographical coordinates/googlePlaceId/city</p>\n","type":"text/plain"},"key":"points[]","value":"48.405168000000000|35.035218000000000"}],"variable":[]}},"response":[{"id":"7136fd8e-c1ea-47d5-ab5a-01177b3fd4b2","name":"Success (town titles)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getRoutePricePrediction?points[]=Городок&points[]=Слобожанське","host":["{{host}}"],"path":["a","v2","rest","public","getRoutePricePrediction"],"query":[{"key":"points[]","value":"Городок"},{"key":"cartype","value":"14","disabled":true},{"key":"points[]","value":"Слобожанське"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"predictedRoutePrice\": 38767.68,\n        \"totalDistanceKm\": 605.96,\n        \"sovtesCoefficient\": 1.17368,\n        \"fuelPriceUahPerLiterDiesel\": \"54.51\",\n        \"closestCities\": \"Vinnytsia->Kharkiv\"\n    }\n}"},{"id":"def218ba-a89c-4abe-855b-a4a1b5f3327d","name":"Success (google place ids)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getRoutePricePrediction?points[]=ChIJQ0yGC4oxxkARbBfyjOKPnxI&points[]=ChIJXTX6K6NkLEcRKeK52aPSSvE","host":["{{host}}"],"path":["a","v2","rest","public","getRoutePricePrediction"],"query":[{"key":"cartype","value":"14","disabled":true},{"key":"points[]","value":"ChIJQ0yGC4oxxkARbBfyjOKPnxI"},{"key":"points[]","value":"ChIJXTX6K6NkLEcRKeK52aPSSvE"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"predictedRoutePrice\": 15476.56,\n        \"totalDistanceKm\": 504.31,\n        \"sovtesCoefficient\": 0.56299,\n        \"fuelPriceUahPerLiterDiesel\": \"54.51\",\n        \"closestCities\": \"Odesa->Zhytomyr\"\n    }\n}"},{"id":"c6a04cf6-fa0f-426f-83b3-93b7d780e2d1","name":"Success (cordinates)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getRoutePricePrediction?points[]=51.4988320000|31.2819420000&points[]=49.5548380000|25.6051720000","host":["{{host}}"],"path":["a","v2","rest","public","getRoutePricePrediction"],"query":[{"key":"cartype","value":"14","disabled":true},{"key":"points[]","value":"51.4988320000|31.2819420000"},{"key":"points[]","value":"49.5548380000|25.6051720000"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"predictedRoutePrice\": 29828.45,\n        \"totalDistanceKm\": 610.44,\n        \"sovtesCoefficient\": 0.89642,\n        \"fuelPriceUahPerLiterDiesel\": \"54.51\",\n        \"closestCities\": \"Chernihiv->Ternopil\"\n    }\n}"},{"id":"b62f92ea-0150-414f-a49d-73b103298429","name":"Bad locations supplied","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"},{"key":"Language","value":"{{language}}","type":"text"}],"url":{"raw":"{{host}}/a/v2/rest/public/getRoutePricePrediction?points[]=bad town&points[]=xyz","host":["{{host}}"],"path":["a","v2","rest","public","getRoutePricePrediction"],"query":[{"key":"cartype","value":"14","disabled":true},{"key":"points[]","value":"bad town"},{"key":"points[]","value":"xyz"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"We can’t recognize this location and convert it into coordinates\",\n    \"relogin\": false\n}"}],"_postman_id":"3bc88da6-cfaa-41f0-8c58-38141f8f25c7"}],"id":"14039463-8b0f-41e1-9cf5-4122c9daeab4","description":"<p>An auxiliary list of endpoints that allows both carriers and shippers to get relevant data about the state of the system, account details, partners, reference entities, etc.</p>\n","_postman_id":"14039463-8b0f-41e1-9cf5-4122c9daeab4"}],"event":[{"listen":"prerequest","script":{"id":"fe482250-11f6-4173-85dd-2d14d8d4b403","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"60cf4e5a-9bc5-42d8-a864-b63581a6fccb","type":"text/javascript","exec":["var response = pm.response.json();","var isContains = pm.response.text();","","if (response.status === 200 || response.status === 'success'){","    pm.test(\"Status code is 200\", () => {","        pm.response.to.have.status(200);","    });","","    pm.test(\"Response matches object\", () => {","    pm.expect(response).to.be.an(\"object\");","    });","","    pm.test(\"Response have status an string and value success\", () => {","        pm.expect(response.status).to.be.an(\"string\");","        pm.expect(response.status).to.include(\"success\");","    });","}else {","    console.log('response', response)","    pm.test(\"Status code is one Of 400 - 403\", () => {","        pm.expect(pm.response.code).to.be.oneOf([400,401,402,403]);  ","    });","","    pm.test(\"Response matches object\", () => {","    pm.expect(response).to.be.an(\"object\");","    });","","    pm.test(\"Response have status an string and value error\", () => {","        pm.expect(response.status).to.be.an(\"string\");","        pm.expect(response.status).to.include(\"error\");","    });","","    pm.test(\"Response have message an string\", () => {","        pm.expect(response.message).to.be.an(\"string\");","    });","}"]}}],"variable":[{"id":"435ae603-44a5-43af-9aad-ff1829d1f876","key":"LanguageHeader","value":"en"}]}