{"info":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","description":"<html><head></head><body><h1 id=\"developer-registration\">Developer registration</h1>\n\n<p>To access the MarketRock APIs, you must<a href=\"https://academy.ecommerce-manager.org/\">r</a>register as a developer and accept our data usage terms:&nbsp;<a href=\"https://www.edock.it/it-it/registrazione-sviluppatori-edock\"><b>register as a developer</b></a></p>\n\n<p>Then, if you don't yet have a MarketRock account with which to connect via API (e.g. the MarketRock account of one of your customers), you can create one for free here: <a href=\"https://landing.marketrock.it/it-it/registrati-per-licenza-gratuita\"><b>Register a MarketRock account</b></a><strong>.</strong></p>\n<hr>\n<h1 id=\"suggested-integration-process\">Suggested integration process</h1>\n\n<p>For complete integration, we suggest following the following steps:</p>\n\n<ol><li><div>Creation of folders - to organize your products</div></li><li><div>Creation of products</div></li><li><div>Management of products</div></li><li><div>Order management</div></li></ol>\n\n<p>To make calls you need to have an <b>access token</b>. The procedure for obtaining one is shown in the chapter \"How to obtain an access token\".</p>\n\n<h2>Creating folders</h2>\n\n<p>Folders allow you to organize products. You will probably just need the \"Create\" call. Keep in mind that the folder describes the element of discrimination for, for example, listing products on eBay. That is, products in the same folder will generate listings in the same eBay category.</p>\n\n<h2>Creation of products</h2>\n\n<p>Once you have created the folders, create products inside them using the \"Create\" example (perhaps starting with the \"Create base\"). Before proceeding with this call, however, you need to create price lists on MarketRock. Once you have created them, download the IDs you will need to create the product by running the \"Get all pricelists\" call.<br>On the products you can (and probably have to) specify:</p>\n\n<ul><li><div>descriptions</div></li><li><div>price lines, one for each price list</div></li><li><div>availability in stock</div></li><li><div>images</div></li><li><div>optionally attributes and measurements</div></li></ul>\n\n<h2>Product management</h2>\n\n<p>Once you have managed to create the products, make some basic calls to synchronize prices and quantities of the products that are changed. This is the most operationally important call. To do this, simply look at the \"Update\", obviously specifying only the PricingRows and Availabilities element. I remind you that if you do not specify a price, it will then be removed (causing it to be removed from the market to which that price list is connected).</p>\n\n<h2>Order management</h2>\n\n<p>Once the products are on MarketRock, it will then be MarketRock's task to publish them on the various markets, depending on the customer's configurations. At this point, while you continue to update quantities and prices, MarketRock will accept the orders. In this case the general flow is as follows:<br></p>\n\n<ul><li><div>called \"Get all (with filters)\" to retrieve only the orders that are in the \"Purchased\" status (new ones in short) and which are (possibly) paid.</div></li><li><div>if there is something, you manage these orders (for example you import them into the management system) and, when you are sure you have processed them, you move them (called \"Move\") into an Imported status. If an error occurs that does not allow you to import the order, you can move the order to a status (which you will have to create first in MarketRock) called, for example \"Anomalies\", and, after moving it, write a message in the notes of the order by looking at the \"Notes\" call.</div></li><li><div>when the order is shipped, or make a trivial \"Move\" call in the shipped state, or better yet make a \"Ship order\" which allows you to specify the information for tracking the same</div></li></ul>\n\n<h1 id=\"how-to-get-an-access-token\">How to get an access token</h1>\n\n<p>At MarketRock we care about the privacy of our users, so we want only applications authorized by our users to be able to access their data and until our users decide to revoke access. The result, once you have been authorized by one of our users, is our receipt of an Authorization Token (called AuthToken) which will allow you to operate on behalf of the client on his MarketRock account.</p>\n\n<p>The process for obtaining an authorization token is based on OAuth (if you don't already know, OAuth is a now standard protocol that we decided to implement to solve this need, for more info I recommend<a href=\"https:\">this resource</a>).</p>\n\n<h2>General information about OAuth</h2>\n\n<p>Normally, for these integrations, we use the flow called \"Authorization Code Flow\". This flow consists of these steps:</p>\n\n<ul><li><div>your application wants and obtain an authorization token for user to understand that your application is asking for a token to be generated for one of our users</div></li><li><div>if the user is not logged in to MarketRock, we ask him to authenticate&lt; /li&gt;</div></li><li><div>once authentication is completed on MarketRock, we ask the user for confirmation that they wish to generate, for your application, a token that will allow you to access their data</div></li><p>&lt; li&gt;if the user accepts, we redirect the user to a page that is on your server, passing a temporary code (usable only once and expiring in 5 minutes)&lt; li&gt;with this code (called code) make a call to our server, authenticating with a pair of keys called client_id and client_secret.</p><li><div>at this point, we do the match between the code, the client_id and the client_secret and, if everything matches, we are sure we can issue you a valid token for your application.</div></li></ul>\n\n<p>When we bring your application into production, we will issue you a pair of credentials (client_id and client_secret) that will be known only to us and must be kept secret. In this phase I will provide you with a pair of temporary keys, to test the authorization flow directly in Postman.</p>\n\n<p>The access token you will receive is valid for <b>1 day (86400 seconds)</b>, for security reasons. If you request it (in point 2) you will also be able to obtain a renewal token (called refresh_token) at the same time as the access token (in point 7). With this token you will be able, without obtaining the user's consent, to obtain a new access token that will allow you to continue operating on behalf of the customer. I don't have to tell you that this token must be stored with the utmost care!</p>\n\n<h2>Access Token Generation</h2>\n\n<ol><li><div>the address to which the user can be redirected to request consent to access their data is as follows: https://auth.edock.it/identity/connect/authorize?response_type= code&amp;client_id=CLIENT_ID&amp;redirect_uri=CALLBACK_URL&amp;scope=SCOPES, where:<br></div><ul><li><div>CLIENT_ID will be your client_id, for now use \"demo_postman\" (when you're ready to go online with your application, you will have to request to have your client_id)</div></li><li><div>CLIENT SECRET, just contact us to get it (when you are ready to go online with your application, you we will also provide a CLIENT SECRET which must be kept with the utmost care)</div></li><li><p>CALLBACK_URL will be the URL to which the user will be directed, after giving us the ok. It will be agreed by us and cannot be modified by you independently. For this demo you can use https://www.getpostman.com/oauth2/callback<br>SCOPES are the permissions you want to ask the user. You can concatenate more than one, separating them by a + character and you can choose between:<br></p><ul><li><div><b>orders</b>: complete access to the user's orders</div></li><li><div><b>orders_read</b>: read-only access to the user's orders</div></li><li><div><b>shippings</b>: full access to the user's shipments</div></li><li><div><b>shippings_read</b>: read-only access to the user's shipments</div></li><li><div><b>items</b>: full access to the user's product catalog</div></li><li><div><b>items_read</b>: read-only access to the user's orders</div></li><li><div><b>offline_access</b>: to also receive a \"refresh_token\" which allows you to act on the user's behalf even without that the user is logged in</div></li><li><div><b>webhooks</b>: possibility of accessing the Webhooks functionality (see dedicated section)</div></li></ul></li></ul></li><li><div>if you compose the address correctly you should get a similar address: https://auth.edock.it/identity/connect/authorize?response_type=code&amp; client_id=demo_postman&amp;redirect_uri=https://www.getpostman.com/oauth2/callback&amp;scope=orders+items</div></li><li><div>at this point the user will log in with his data, here you can use your access data<br>once the user has logged in, the consent window will appear listing all the SCOPEs you have requested</div></li><li><div>&lt; div&gt;if the user clicks on \"Yes, Allow\", he will be redirected to the CALLBACK_URI specified previously and the code parameter will be passed in the querystring.</div></li><li><p>at this point, from resource code that responds to CALLBACK_URI, you can start a call to the MarketRock token endpoint, i.e. https://auth.edock.it/identity/connect/token. Such a call must contain, passed as the body of the message in mode x-www-form-urlencoded:<br></p><ul><li><div>grant_type: authorization_code</div></li><li><div>code: code you received from us return</div></li><li><div>redirect_uri: CALLBACK_URI</div></li><li><div>client_id: your client_id</div></li><li><div>client_secret: your client secret</div></li></ul></li></ol>\n\n<p>If everything works as it should, you will receive an access_token in return, with the expiry date expressed in seconds.</p>\n\n<p>This whole discussion may seem very complicated and convoluted. I would like to underline that you will certainly find, whatever the language you use, numerous libraries that will allow you, once you have specified the parameters (client_id, client_secret, callback_uri, etc. etc.), to obtain the various tokens you will need. I preferred to illustrate everything to show you what happens behind the scenes!</p>\n\n<h1 id=\"refreshing-the-access-token-refresh-token\">Refreshing the access token (Refresh Token)</h1>\n\n<p>If, among the scopes, you asked for \"offline_access\", when you have completed the authentication round, in addition to the access_token, you will also receive a refresh_token. This refresh_token allows you to generate a new access_token, with the same scope as the previous one, without having to ask the user for authorization again.</p>\n\n<p>When the access_token is about to expire, make a POST call to the MarketRock token endpoint (https://auth.edock.it/identity/connect/token), with the following parameters passed in x-www-form -urlencoded:</p>\n\n<ul><li><div>grant_type: refresh_token</div></li><li><div>refresh_token: your refresh_token</div></li><li><div>client_id: your client_id</div></li><li><div>client_secret: your client secret</div></li></ul>\n\n<p>You will receive another access_token, with which to continue accessing the client's MarketRock account.</p>\n\n<h1 id=\"workspaces-and-permissions\">Workspaces and permissions</h1>\n<p>Each MarketRock user may or may not own a MarketRock workspace. Furthermore, each user can have access, with different privileges, to different MarketRock workspaces.</p>\n<p>Examples:</p>\n<ul>\n<li><p>User A owns a MarketRock workspace (to which he obviously has access), but does not have access to other workspaces</p>\n</li>\n<li><p>User B does not own a MarketRock workspace, but can access two different MarketRock workspaces</p>\n</li>\n<li><p>User C owns a MarketRock workspace and has access to two other workspaces.</p>\n</li>\n</ul>\n<p>To access other Workspaces you must be invited by the Workspace owner.</p>\n<h2 id=\"permissions\">Permissions</h2>\n<p>Each user, on any workspace he or she owns, has access to all functionality (i.e. he or she can make any kind of API call).</p>\n<p>On the workspaces of which he is not the owner, however, he has permissions that are assigned by the owner user. Permissions are of different types (for example reading or writing products, reading or writing orders, reading or writing shipments and so on).</p>\n<p>If a call is made that requires privileges that the user does not have, HTTP code 401 (Unauthorized) will be returned.</p>\n<h2 id=\"default-workspace\">Default workspace</h2>\n<p>Each API call is made on the user's default workspace.</p>\n<p>The default workspace is the workspace that you own. This means that an API call:</p>\n<ul>\n<li><p>for users A and C, it will be carried out on his property space</p>\n</li>\n<li><p>for user B, it will fail with an HTTP 401 (Unauthorized) code</p>\n</li>\n</ul>\n<h2 id=\"change-workspace\">Change workspace</h2>\n<p>It is possible to make the API call act on a workspace other than the default one, by valorising an X-eDock-Impersonate HTTP header, whose value is the workspace ID.</p>\n<p>To understand which workspaces a user can access and their IDs, you can call Users &gt; Workspaces.</p>\n<p>This means that:</p>\n<ul>\n<li><p>user A will not be able to enhance the X-eDock-Impersonate installation (except by using the ID of his workspace, a useless operation)</p>\n</li>\n<li><p>user B will be able to enhance the X-eDock-Impersonate header using, at his choice, the ID of the workspace 1 or 2 to which he has access</p>\n</li>\n<li><p>user C will be able to act on workspaces of which he is not the owner by enhancing the X-eDock-Impersonate header.</p>\n</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Developer registration","slug":"developer-registration"},{"content":"Suggested integration process","slug":"suggested-integration-process"},{"content":"How to get an access token","slug":"how-to-get-an-access-token"},{"content":"Refreshing the access token (Refresh Token)","slug":"refreshing-the-access-token-refresh-token"},{"content":"Workspaces and permissions","slug":"workspaces-and-permissions"}],"owner":"235984","collectionId":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","publishedId":"719ZDC8","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2024-05-23T15:05:32.000Z"},"item":[{"name":"Auth&Auth","item":[{"name":"Step 1 - Redirect user to MarketRock Auth Server","id":"ea26d64f-9971-48d1-8a79-f9aa889a02df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{AuthServer}}/identity/connect/authorize?response_type=code&client_id={{client_id}}&redirect_uri={{redirect_uri}}&scope=openid+profile+items+orders+offline_access","description":"<p>The first step is to redirect the user to MarketRock's central authentication service.</p>\n<p>The parameters to pass are:</p>\n<ul>\n<li><p><strong>response_type</strong> = code</p>\n</li>\n<li><p><strong>client_id</strong> = the client_id of your application (for testing, you can use demo_postman)</p>\n</li>\n<li><p><strong>redirect_uri</strong> = the address to which the user will be redirected after successfully authenticating.</p>\n</li>\n<li><p><strong>scope</strong> = list of scopes you intend to request (see initial documentation)</p>\n</li>\n</ul>\n<p>If authentication is successful, the user will be redirected to the address passed as <strong>redirect_uri</strong> and a <strong>code</strong> parameter will be included that you can use to obtain access tokens (see Step 2).</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"889fb7ee-3644-4d78-881a-cca72592e53e","id":"889fb7ee-3644-4d78-881a-cca72592e53e","name":"Auth&Auth","type":"folder"}},"urlObject":{"path":["identity","connect","authorize"],"host":["{{AuthServer}}"],"query":[{"key":"response_type","value":"code"},{"key":"client_id","value":"{{client_id}}"},{"key":"redirect_uri","value":"{{redirect_uri}}"},{"key":"scope","value":"openid+profile+items+orders+offline_access"}],"variable":[]}},"response":[],"_postman_id":"ea26d64f-9971-48d1-8a79-f9aa889a02df"},{"name":"Step 2 - Convert code to token","id":"c9ef1c4b-27ee-4217-ae28-8ad78f496970","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"authorization_code","type":"text"},{"key":"code","value":"{{code}}","type":"text"},{"key":"redirect_uri","value":"{{redirect_uri}}","type":"text"},{"key":"client_id","value":"{{client_id}}","type":"text"},{"key":"client_secret","value":"{{client_secret}}","type":"text"}]},"url":"{{AuthServer}}/identity/connect/token","description":"<p>Once authentication has been successfully completed and the user has agreed to grant access to their data to your application, he will be redirected to the <strong>callback_uri</strong> indicated above.</p>\n<p>MarketRock will send a parameter called <strong>code</strong> which is a disposable code with which your application can obtain the <strong>access_token</strong> and, if offline_access scope is required, also the <strong>refresh_token</strong>.</p>\n<p>The call involves passing these parameters:</p>\n<ul>\n<li><p><strong>grant_type</strong> = authorization_code (fixed value)</p>\n</li>\n<li><p><strong>code</strong> = value of the code received</p>\n</li>\n<li><p><strong>redirect_uri</strong> = the redirect_uri of your application</p>\n</li>\n<li><p><strong>client_id</strong> = the client_id of your application</p>\n</li>\n<li><p><strong>client_secret</strong> = your application's client_secret</p>\n</li>\n</ul>\n<p>If the call is successful you will receive a response containing:</p>\n<ul>\n<li><p><strong>access_token</strong>: access token with which you can make calls to the MarketRock API.</p>\n</li>\n<li><p><strong>expires_in</strong>: duration in seconds of the newly received access token (typically 1 day)</p>\n</li>\n<li><p><strong>refresh_token</strong>: only if the \"offline_access\" scope has been requested, contains the token with which it is possible to generate new access_tokens (see Step 3)</p>\n</li>\n<li><p><strong>id_token</strong>: if the \"openid\" scope was requested, it contains the token with which it is possible to verify the identity (authentication) of the user.</p>\n</li>\n</ul>\n<p><strong>ATTENTION</strong>: <strong>the code parameter, once used, is destroyed. If the call fails (for example, due to the lack of some mandatory parameter), the code parameter is destroyed and it will be necessary to request a new one. Furthermore, the code parameter has a short expiry date, approximately 5 minutes, for security reasons.</strong></p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"889fb7ee-3644-4d78-881a-cca72592e53e","id":"889fb7ee-3644-4d78-881a-cca72592e53e","name":"Auth&Auth","type":"folder"}},"urlObject":{"path":["identity","connect","token"],"host":["{{AuthServer}}"],"query":[],"variable":[]}},"response":[{"id":"37983c9f-2af0-4212-a399-61e5d8edc738","name":"Step 2 - Convert code to token","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"authorization_code","type":"text"},{"key":"code","value":"{{code}}","type":"text"},{"key":"redirect_uri","value":"{{redirect_uri}}","type":"text"},{"key":"client_id","value":"{{client_id}}","type":"text"},{"key":"client_secret","value":"{{client_secret}}","type":"text"}]},"url":"{{AuthServer}}/identity/connect/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 29 Mar 2023 09:33:48 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Cache-Control","value":"no-store, no-cache, max-age=0, private"},{"key":"Content-Encoding","value":"gzip"},{"key":"Pragma","value":"no-cache"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"id_token\": \"xxxxxx\",\n    \"access_token\": \"[access_token]\",\n    \"expires_in\": 86400,\n    \"token_type\": \"Bearer\",\n    \"refresh_token\": \"[refresh_token]\"\n}"}],"_postman_id":"c9ef1c4b-27ee-4217-ae28-8ad78f496970"},{"name":"Step 3 - Token refresh","id":"43a34804-a2a1-48d6-ab2f-0a384ddb5bbb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"{{client_secret}}","username":"{{client_id}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"refresh_token","type":"text"},{"key":"refresh_token","value":"{{refresh_token}}","type":"text"}]},"url":"{{AuthServer}}/identity/connect/token","description":"<p>If, during the authentication phase, you requested the offline_access scope, you also received a <strong>refresh_token</strong>, which is a 30-day expiration token, automatically extended every time you use it (so in fact, it never expires).</p>\n<p>For this reason it is necessary that it is stored with the utmost care, since any loss of it, including the keys (client_id and client_secret), effectively causes deliberate access to the MarketRock accounts that authorized your application.</p>\n<p>The parameters to pass to update the token and therefore receive a new valid access_token are:</p>\n<ul>\n<li><p><strong>grant_type</strong>: refresh_token</p>\n</li>\n<li><p><strong>refresh_token</strong>: value of your refresh_token</p>\n</li>\n</ul>\n<p>The call must be authenticated by passing:</p>\n<ul>\n<li><p><strong>client_id</strong>: value of your application's client_id, as username</p>\n</li>\n<li><p><strong>client_secret</strong>: value of your application's client_secret, as a password</p>\n</li>\n</ul>\n<p>If the call is successful (i.e. the parameters are valid and the refresh_token has not expired), you will receive the following parameters:</p>\n<ul>\n<li><p><strong>access_token</strong>: A <strong>new</strong> access token for calling our APIs</p>\n</li>\n<li><p><strong>expires_in</strong>: the new expiration of the passed access_token</p>\n</li>\n<li><p><strong>refresh_token</strong>: the refresh_token (technically it may not change from what you already had, but it is good practice to consider this as the new refresh_token to use for subsequent times)</p>\n</li>\n<li><p><strong>id_token</strong>: if you asked for the \"openid\" scope, a new id_token to verify the identity (authentication) of the user.</p>\n</li>\n</ul>\n<p><strong>ATTENTION: As described in our API usage policies, in case of theft or loss of tokens you must contact us immediately at</strong> <a href=\"mailto:developer@marketrock.it\"><b>developer@marketrock.it</b></a> <strong>so that we can promptly limit any data leaks.</strong></p>\n<p><strong>Failure to promptly notify us will be considered a violation of our agreement and will result in immediate suspension of access to our API (key lockout) and invalidation of all tokens generated on behalf of your application.</strong></p>\n","urlObject":{"path":["identity","connect","token"],"host":["{{AuthServer}}"],"query":[],"variable":[]}},"response":[{"id":"e6dadb1b-8c01-4ac9-a810-e2373241530a","name":"Step 3 - Token refresh","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"refresh_token","type":"text"},{"key":"refresh_token","value":"{{refresh_token}}","type":"text"},{"key":"client_id","value":"{{client_id}}","type":"text"},{"key":"client_secret","value":"{{client_secret}}","type":"text"}]},"url":"{{AuthServer}}/identity/connect/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 29 Mar 2023 09:36:24 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Cache-Control","value":"no-store, no-cache, max-age=0, private"},{"key":"Content-Encoding","value":"gzip"},{"key":"Pragma","value":"no-cache"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"id_token\": \"[id_token]\",\n    \"access_token\": \"[access_token]\",\n    \"expires_in\": 86400,\n    \"token_type\": \"Bearer\",\n    \"refresh_token\": \"[refresh_token]\"\n}"}],"_postman_id":"43a34804-a2a1-48d6-ab2f-0a384ddb5bbb"}],"id":"889fb7ee-3644-4d78-881a-cca72592e53e","description":"<p>In order to use the MarketRock API, you need to obtain an authentication token on behalf of your application.</p>\n<p>Each application is identified by three parameters:</p>\n<ul>\n<li><p><strong>client_id</strong>: a public identification</p>\n</li>\n<li><p><strong>client_secret</strong>: a security key, which must be kept by the developer with the utmost care</p>\n</li>\n<li><p><strong>redirect_uri</strong>: a safe callback address through which the MarketRock authentication service can speak with the application</p>\n</li>\n</ul>\n<p>The authentication process consists of two steps:</p>\n<ol>\n<li><p>Redirection of the user to the MarketRock access page</p>\n</li>\n<li><p>Reception of the <strong>code</strong> parameter and conversion of the same in an access_token</p>\n</li>\n</ol>\n<p>Once the token has been generated, if the offline_access scope has been requested, it is possible to proceed with the update (refresh) of the same, through the call \"Token refresh\".</p>\n<p>In the following examples, a test application will be used whose parameters are:</p>\n<ul>\n<li><p><strong>client_id</strong>: demo_postman</p>\n</li>\n<li><p><strong>client_secret</strong>: [contact us at <a href=\"https://mailto:developer@marketrock.it\">developer@marketrock.it</a>]</p>\n</li>\n<li><p><strong>redirect_uri</strong>: <a href=\"https://www.getpostman.com/oauth2/callback\">https://www.getpostman.com/oauth2/callback</a></p>\n</li>\n</ul>\n<p><strong>ATTENTION: These keys must not be used in production, since marketrock will be invalidly invalid all generated tokens, even before their expiry for safety reasons.</strong></p>\n<p>In production it will be necessary to use the keys obtained from MarketRock.</p>\n<p><strong>The improper use of these test keys can lead to the complete suspension of your developer account.</strong></p>\n<p><video src=\"https://youtube.com/embed/A7gxfI8PIs8\" width=\"340\"></video></p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"bf214f5a-d2a8-443e-87a4-550716881621","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a8d428cb-df08-4e8d-bc18-3a18bb6b4308","type":"text/javascript","exec":[""]}}],"_postman_id":"889fb7ee-3644-4d78-881a-cca72592e53e"},{"name":"Logistics Hub","item":[{"name":"Orders","item":[{"name":"Search","id":"203ab7b1-5ceb-6183-d1da-e27f464d8166","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"page\": 0,            //Recupera questa pagina di ordini. Il conto inizia da 0. Obbligatorio.\r\n  \"pageSize\": 5        //Dimensione della pagina. Obbligatorio\r\n}"},"url":"{{endpoint}}/orders/search","description":"<p>Retrieve orders in your MarketRock account. Orders are returned paginated. The page and its size are controlled by the <strong>page</strong> and <strong>pageSize</strong> parameters.<br />The first page has index 0. The maximum value of the <strong>pageSize</strong> parameter is 500.</p>\n<h1 id=\"filtering\">Filtering</h1>\n<p>It is possible to carry out a targeted search on all orders present on MarketRock by filtering them according to all filters passed in the <strong>filters</strong> parameter. All the filters that are passed are considered AND between them (i.e. the orders that respect all the passed filters are returned).</p>\n<p>Available filters</p>\n<ul>\n<li><p><strong>idStatusFilter</strong>: Order status ID</p>\n</li>\n<li><p><strong>OrderIdGreaterOrEqualThan</strong>: Order ID greater than or equal to...</p>\n</li>\n<li><p><strong>OrderIdLowerOrEqualThan</strong>: Order ID less than or equal to...</p>\n</li>\n<li><p><strong>ModuleIDFilter</strong>: ID of the marketplace on which the order was generated (for the value, check the \"Modules\" call)</p>\n</li>\n<li><p><strong>Paid</strong>: Paid (true / false)</p>\n</li>\n<li><p><strong>CreatedOnStart</strong>: Created starting from yyyy-mm-dd</p>\n</li>\n<li><p><strong>CreatedOnEnd</strong>: Created until yyyy-mm-dd</p>\n</li>\n<li><p><strong>ShippedOnStart</strong>: Shipped starting yyyy-mm-dd</p>\n</li>\n<li><p><strong>ShippedOnEnd</strong>: Shipped until yyyy-mm-dd</p>\n</li>\n<li><p><strong>MarketplaceOrderId</strong>: ID of this order in the source marketplace</p>\n</li>\n</ul>\n<h1 id=\"details\">Details</h1>\n<p>Orders, unless otherwise specified, are returned with a set of basic information (i.e. <strong>Rows</strong>, <strong>ShippingAddress</strong> and <strong>BillingAddress</strong> details are loaded by default). This information is generally sufficient for order processing. For more advanced integration scenarios, it is possible to request additional details, using the \"details\" field.</p>\n<p>Details parameter can be populated with one or more of the following values:</p>\n<ul>\n<li><p><strong>History</strong>: history of the order</p>\n</li>\n<li><p><strong>Fees</strong>: commissions applied by the marketplace</p>\n</li>\n<li><p><strong>Invoices</strong>: invoices linked to the order</p>\n</li>\n<li><p><strong>ExternalSellerReference</strong>: for orders coming from eBay and Amazon, the \"SellerAccount\" field is filled in, containing the account name of the seller who received the sale</p>\n</li>\n<li><p><strong>Payments</strong>: the \"Payments\" field is filled in, containing all the information on PayPal payments received for eBay orders</p>\n</li>\n<li><p><strong>RowVariationAttributes</strong>: the \"VariationValues\" field on the order lines is enhanced. This field contains the names and values ​​of the attributes of the purchased variants</p>\n</li>\n<li><p><strong>ContactInformations</strong>: the \"ContactInformations\" field is filled in, containing all the information on the buyers passed by the marketplace on which the order was generated</p>\n</li>\n<li><p><strong>Attachments</strong>: the \"Attachments\" field is filled in, containing all the attachments of an order</p>\n</li>\n<li><p><strong>Measures</strong>: retrieves measures linked to contained items</p>\n</li>\n<li><p><strong>MarketplaceAdditionalInformations</strong>: additional informations retrieved from the marketplace from which this orders has been generated</p>\n</li>\n</ul>\n<h1 id=\"warning\">Warning!</h1>\n<p>If the <strong>details</strong> field is used, all details NOT specified will not be passed. For this reason, to get the basic information (which is passed by default when \"details\" is not populated), you can pass these details:</p>\n<ul>\n<li><p><strong>BillingAddress</strong>: billing address</p>\n</li>\n<li><p><strong>ShippingAddress</strong>: shipping address</p>\n</li>\n<li><p><strong>Rows</strong>: order lines</p>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["orders","search"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"eb04d729-176c-77aa-c8a2-c8d2cfab5250","name":"Get all","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\r\n  \"page\": 0,            //Recupera questa pagina di ordini. Il conto inizia da 0. Obbligatorio.\r\n  \"pageSize\": 5        //Dimensione della pagina. Obbligatorio\r\n}"},"url":"{{endpoint}}/orders/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","description":""},{"key":"Content-Encoding","value":"gzip","description":""},{"key":"Content-Length","value":"2226","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"key":"Date","value":"Tue, 03 Apr 2018 13:31:03 GMT","description":""},{"key":"Server","value":"Microsoft-IIS/10.0","description":""},{"key":"Vary","value":"Accept-Encoding","description":""},{"key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"rest.edock.it","path":"/","secure":false,"value":"aa908b711b68d5a1c6e7e90114d66a8c4fee0f91ec941c582b454ef17c683d77","key":"ARRAffinity"}],"responseTime":"374","body":"{\"PageSize\":5,\"Page\":0,\"TotalCount\":210,\"Content\":[{\"Fees\":[{\"FeeType\":0,\"Amount\":0.6,\"Currency\":\"USD\",\"Notes\":null}],\"idOrder\":\"02f96cb4-4c4f-4a96-b218-9e77a1a9a618\",\"CreatedOn\":\"2018-03-03T21:39:48Z\",\"OwnerModule\":\"eDock4Wish\",\"OwnerModuleId\":11,\"idStatus\":3,\"Status\":\"Spedito\",\"isGift\":false,\"isPaid\":true,\"Currency\":\"USD\",\"Rows\":[{\"SKU\":null,\"Quantity\":2.0,\"Price\":2.0,\"Discount\":0.0,\"DiscountTypeId\":0,\"InternalName\":\"defaults.products.notcategorized\",\"ItemId\":121,\"RowValue\":4.0,\"ConnectedOrderId\":null,\"DecreasedQuantity\":null,\"VariationValues\":{}}],\"ShippingMethod\":null,\"ShippingCost\":4.0,\"PaymentMethod\":\"Standard CreditCard\",\"idCustomer\":147,\"BillingAddress\":{\"idOrderBillingInfo\":221,\"Address\":\"13 fake st 2nd 2nd\",\"ZipCode\":\"12345\",\"City\":\"San Francisco\",\"County\":\"California\",\"CountyAbbreviation\":\"CA\",\"Country\":\"UNITED STATES\",\"CountryAbbreviation\":\"US\",\"Telephone1\":\"1231241\",\"Telephone2\":null,\"Email\":null,\"FirstName\":\"test name\",\"LastName\":null,\"Company\":null,\"VATCode\":null,\"FiscalCode\":null},\"ShippingAddress\":{\"idOrderShippingInfo\":221,\"Address\":\"13 fake st\",\"ZipCode\":\"12345\",\"City\":\"San Francisco\",\"County\":\"California\",\"CountyAbbreviation\":\"CA\",\"Country\":\"UNITED STATES\",\"CountryAbbreviation\":\"US\",\"Telephone1\":\"1231241\",\"Telephone2\":null,\"Email\":null,\"FirstName\":\"test name\",\"LastName\":null,\"Company\":null},\"ContactInformations\":null,\"idOrderInt\":222,\"idPaymentMethod\":5,\"UnlockedOn\":\"2018-03-13T16:13:53.06Z\",\"TrackingNumber\":\"0104564654\",\"CarrierName\":\"GLS\",\"Notes\":null,\"SellerAccount\":null,\"History\":[{\"OrderStatusFromName\":\"Acquistato\",\"OrderStatusToName\":\"Spedito\",\"OrderStatusFromId\":1,\"OrderStatusToId\":3,\"Description\":\"Effettuato da test_marco\",\"Notes\":null,\"InsertedOn\":\"2018-03-13T16:14:39.487Z\",\"OrderHistoryTypeIdType\":2},{\"OrderStatusFromName\":\"Spedito\",\"OrderStatusToName\":\"Spedito\",\"OrderStatusFromId\":3,\"OrderStatusToId\":3,\"Description\":\"Comunicazione 'TEST ESPANOL ' (TEST ESPANOL) inviata con successo a: marco@dontbenegative.it\",\"Notes\":null,\"InsertedOn\":\"2018-03-13T16:14:42.347Z\",\"OrderHistoryTypeIdType\":3}],\"Payments\":[],\"MarketplaceOrderId\":\"5a9b16240000000000000000\",\"IsTemporary\":false,\"ContainsDuplicateRows\":false,\"CancelState\":null,\"RefundState\":null},{\"Fees\":[{\"FeeType\":0,\"Amount\":0.6,\"Currency\":\"USD\",\"Notes\":null}],\"idOrder\":\"d4a9d895-a762-4e51-bd70-b34d4c8e4390\",\"CreatedOn\":\"2018-03-02T21:39:48Z\",\"OwnerModule\":\"eDock4Wish\",\"OwnerModuleId\":11,\"idStatus\":3,\"Status\":\"Spedito\",\"isGift\":false,\"isPaid\":true,\"Currency\":\"USD\",\"Rows\":[{\"SKU\":null,\"Quantity\":3.0,\"Price\":2.0,\"Discount\":0.0,\"DiscountTypeId\":0,\"InternalName\":\"defaults.products.notcategorized\",\"ItemId\":121,\"RowValue\":6.0,\"ConnectedOrderId\":null,\"DecreasedQuantity\":null,\"VariationValues\":{}}],\"ShippingMethod\":null,\"ShippingCost\":6.0,\"PaymentMethod\":\"Standard CreditCard\",\"idCustomer\":147,\"BillingAddress\":{\"idOrderBillingInfo\":220,\"Address\":\"13 fake st 2nd 2nd\",\"ZipCode\":\"12345\",\"City\":\"San Francisco\",\"County\":\"California\",\"CountyAbbreviation\":\"CA\",\"Country\":\"UNITED STATES\",\"CountryAbbreviation\":\"US\",\"Telephone1\":\"1231241\",\"Telephone2\":null,\"Email\":null,\"FirstName\":\"test name\",\"LastName\":null,\"Company\":null,\"VATCode\":null,\"FiscalCode\":null},\"ShippingAddress\":{\"idOrderShippingInfo\":220,\"Address\":\"13 fake st\",\"ZipCode\":\"12345\",\"City\":\"San Francisco\",\"County\":\"California\",\"CountyAbbreviation\":\"CA\",\"Country\":\"UNITED STATES\",\"CountryAbbreviation\":\"US\",\"Telephone1\":\"1231241\",\"Telephone2\":null,\"Email\":null,\"FirstName\":\"test name\",\"LastName\":null,\"Company\":null},\"ContactInformations\":null,\"idOrderInt\":221,\"idPaymentMethod\":5,\"UnlockedOn\":\"2018-03-13T16:19:10.987Z\",\"TrackingNumber\":\"0213132132\",\"CarrierName\":\"GLS\",\"Notes\":null,\"SellerAccount\":null,\"History\":[{\"OrderStatusFromName\":\"Acquistato\",\"OrderStatusToName\":\"Spedito\",\"OrderStatusFromId\":1,\"OrderStatusToId\":3,\"Description\":\"Effettuato da test_marco\",\"Notes\":null,\"InsertedOn\":\"2018-03-13T16:21:40.297Z\",\"OrderHistoryTypeIdType\":2},{\"OrderStatusFromName\":\"Spedito\",\"OrderStatusToName\":\"Spedito\",\"OrderStatusFromId\":3,\"OrderStatusToId\":3,\"Description\":\"Comunicazione 'TEST ESPANOL ' (TEST ESPANOL) inviata con successo a: marco@dontbenegative.it\",\"Notes\":null,\"InsertedOn\":\"2018-03-13T16:21:41.343Z\",\"OrderHistoryTypeIdType\":3}],\"Payments\":[],\"MarketplaceOrderId\":\"5a99c4a40000000000000000\",\"IsTemporary\":false,\"ContainsDuplicateRows\":false,\"CancelState\":null,\"RefundState\":null},{\"Fees\":[{\"FeeType\":0,\"Amount\":0.6,\"Currency\":\"USD\",\"Notes\":null}],\"idOrder\":\"fbc2e3ab-7db1-436f-9919-6246c3094d3f\",\"CreatedOn\":\"2018-03-01T21:39:48Z\",\"OwnerModule\":\"eDock4Wish\",\"OwnerModuleId\":11,\"idStatus\":1,\"Status\":\"Acquistato\",\"isGift\":false,\"isPaid\":true,\"Currency\":\"USD\",\"Rows\":[{\"SKU\":null,\"Quantity\":1.0,\"Price\":2.0,\"Discount\":0.0,\"DiscountTypeId\":0,\"InternalName\":\"defaults.products.notcategorized\",\"ItemId\":121,\"RowValue\":2.0,\"ConnectedOrderId\":null,\"DecreasedQuantity\":null,\"VariationValues\":{}}],\"ShippingMethod\":null,\"ShippingCost\":2.0,\"PaymentMethod\":\"Standard CreditCard\",\"idCustomer\":147,\"BillingAddress\":{\"idOrderBillingInfo\":222,\"Address\":\"13 fake st 2nd 2nd\",\"ZipCode\":\"12345\",\"City\":\"San Francisco\",\"County\":\"California\",\"CountyAbbreviation\":\"CA\",\"Country\":\"UNITED STATES\",\"CountryAbbreviation\":\"US\",\"Telephone1\":\"1231241\",\"Telephone2\":null,\"Email\":null,\"FirstName\":\"test name\",\"LastName\":null,\"Company\":null,\"VATCode\":null,\"FiscalCode\":null},\"ShippingAddress\":{\"idOrderShippingInfo\":222,\"Address\":\"13 fake st\",\"ZipCode\":\"12345\",\"City\":\"San Francisco\",\"County\":\"California\",\"CountyAbbreviation\":\"CA\",\"Country\":\"UNITED STATES\",\"CountryAbbreviation\":\"US\",\"Telephone1\":\"1231241\",\"Telephone2\":null,\"Email\":null,\"FirstName\":\"test name\",\"LastName\":null,\"Company\":null},\"ContactInformations\":null,\"idOrderInt\":223,\"idPaymentMethod\":5,\"UnlockedOn\":null,\"TrackingNumber\":null,\"CarrierName\":null,\"Notes\":null,\"SellerAccount\":null,\"History\":[],\"Payments\":[],\"MarketplaceOrderId\":\"5a9873240000000000000000\",\"IsTemporary\":false,\"ContainsDuplicateRows\":false,\"CancelState\":null,\"RefundState\":null},{\"Fees\":[{\"FeeType\":0,\"Amount\":0.6,\"Currency\":\"USD\",\"Notes\":null}],\"idOrder\":\"6dcc4ef9-2c76-44b3-b6d4-6b306f3be6a3\",\"CreatedOn\":\"2018-02-28T21:39:48Z\",\"OwnerModule\":\"eDock4Wish\",\"OwnerModuleId\":11,\"idStatus\":1,\"Status\":\"Acquistato\",\"isGift\":false,\"isPaid\":true,\"Currency\":\"USD\",\"Rows\":[{\"SKU\":null,\"Quantity\":2.0,\"Price\":2.0,\"Discount\":0.0,\"DiscountTypeId\":0,\"InternalName\":\"defaults.products.notcategorized\",\"ItemId\":121,\"RowValue\":4.0,\"ConnectedOrderId\":null,\"DecreasedQuantity\":null,\"VariationValues\":{}}],\"ShippingMethod\":null,\"ShippingCost\":4.0,\"PaymentMethod\":\"Standard CreditCard\",\"idCustomer\":147,\"BillingAddress\":{\"idOrderBillingInfo\":219,\"Address\":\"13 fake st 2nd 2nd\",\"ZipCode\":\"12345\",\"City\":\"San Francisco\",\"County\":\"California\",\"CountyAbbreviation\":\"CA\",\"Country\":\"UNITED STATES\",\"CountryAbbreviation\":\"US\",\"Telephone1\":\"1231241\",\"Telephone2\":null,\"Email\":null,\"FirstName\":\"test name\",\"LastName\":null,\"Company\":null,\"VATCode\":null,\"FiscalCode\":null},\"ShippingAddress\":{\"idOrderShippingInfo\":219,\"Address\":\"13 fake st\",\"ZipCode\":\"12345\",\"City\":\"San Francisco\",\"County\":\"California\",\"CountyAbbreviation\":\"CA\",\"Country\":\"UNITED STATES\",\"CountryAbbreviation\":\"US\",\"Telephone1\":\"1231241\",\"Telephone2\":null,\"Email\":null,\"FirstName\":\"test name\",\"LastName\":null,\"Company\":null},\"ContactInformations\":null,\"idOrderInt\":220,\"idPaymentMethod\":5,\"UnlockedOn\":null,\"TrackingNumber\":null,\"CarrierName\":null,\"Notes\":null,\"SellerAccount\":null,\"History\":[],\"Payments\":[],\"MarketplaceOrderId\":\"5a9721a40000000000000000\",\"IsTemporary\":false,\"ContainsDuplicateRows\":false,\"CancelState\":null,\"RefundState\":null},{\"Fees\":[],\"idOrder\":\"a92060fe-bb2d-4c46-9f2e-7ef2962b29c1\",\"CreatedOn\":\"2017-06-28T09:44:32.763Z\",\"OwnerModule\":\"eDock4eCommerce\",\"OwnerModuleId\":6,\"idStatus\":3,\"Status\":\"Spedito\",\"isGift\":false,\"isPaid\":false,\"Currency\":\"USD\",\"Rows\":[{\"SKU\":null,\"Quantity\":1.0,\"Price\":670.0,\"Discount\":0.0,\"DiscountTypeId\":0,\"InternalName\":\"defaults.products.notcategorized\",\"ItemId\":121,\"RowValue\":670.0,\"ConnectedOrderId\":null,\"DecreasedQuantity\":null,\"VariationValues\":{}}],\"ShippingMethod\":\"Ground\",\"ShippingCost\":0.0,\"PaymentMethod\":\"Bonifico Bancario\",\"idCustomer\":146,\"BillingAddress\":{\"idOrderBillingInfo\":216,\"Address\":\"21 West 52nd Street\",\"ZipCode\":\"10021\",\"City\":\"New York\",\"County\":\"New York\",\"CountyAbbreviation\":\"NY\",\"Country\":\"UNITED STATES\",\"CountryAbbreviation\":\"US\",\"Telephone1\":\"12345678\",\"Telephone2\":\"\",\"Email\":\"helpdesk@edock.it\",\"FirstName\":\"John\",\"LastName\":\"Smith\",\"Company\":\"Nop Solutions Ltd\",\"VATCode\":null,\"FiscalCode\":null},\"ShippingAddress\":{\"idOrderShippingInfo\":216,\"Address\":\"21 West 52nd Street\",\"ZipCode\":\"10021\",\"City\":\"New York\",\"County\":\"New York\",\"CountyAbbreviation\":\"NY\",\"Country\":\"UNITED STATES\",\"CountryAbbreviation\":\"US\",\"Telephone1\":\"12345678\",\"Telephone2\":\"\",\"Email\":\"helpdesk@edock.it\",\"FirstName\":\"John\",\"LastName\":\"Smith\",\"Company\":\"Nop Solutions Ltd\"},\"ContactInformations\":null,\"idOrderInt\":217,\"idPaymentMethod\":10,\"UnlockedOn\":\"2017-06-28T09:45:45.593Z\",\"TrackingNumber\":\"26546787879\",\"CarrierName\":\"PALLETWAYS\",\"Notes\":\"Order placed\\r\\n\\\"Order placed\\\" email (to store owner) has been queued. Queued email identifier: 1.\\r\\n\\\"Order placed\\\" email (to customer) has been queued. Queued email identifier: 2.\\r\\n\\r\\n\\r\\nGift wrapping: No\\r\\n\",\"SellerAccount\":null,\"History\":[{\"OrderStatusFromName\":\"Spedito\",\"OrderStatusToName\":\"Spedito\",\"OrderStatusFromId\":3,\"OrderStatusToId\":3,\"Description\":\"Comunicazione 'TEST ESPANOL ' (TEST ESPANOL) inviata con successo a: marco@dontbenegative.it\",\"Notes\":null,\"InsertedOn\":\"2017-10-26T07:27:48.197Z\",\"OrderHistoryTypeIdType\":3},{\"OrderStatusFromName\":\"Acquistato\",\"OrderStatusToName\":\"Spedito\",\"OrderStatusFromId\":1,\"OrderStatusToId\":3,\"Description\":\"Effettuato da test_marco\",\"Notes\":null,\"InsertedOn\":\"2017-10-26T09:27:44.633Z\",\"OrderHistoryTypeIdType\":2}],\"Payments\":[],\"MarketplaceOrderId\":\"6\",\"IsTemporary\":false,\"ContainsDuplicateRows\":false,\"CancelState\":null,\"RefundState\":null}]}"},{"id":"b4a42f57-e1fe-4709-991d-6feb89d0c834","name":"Get all with filters","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\r\n  \"page\": 0,                            //Recupera questa pagina di ordini. Il conto inizia da 0. Obbligatorio.\r\n  \"pageSize\": 20,                       //Dimensione della pagina. Obbligatorio\r\n  \"filters\":                            //Contenitore dei filtri con cui cercare gli ordini\r\n  [ \r\n      { \r\n          \"field\": \"idStatusFilter\",    //Nome del filtro da applicare. Per una lista esaustiva dei filtri, consultare la documentazione\r\n          \"values\" : [1]                //Valore del filtro\r\n      },\r\n      {\r\n          \"field\": \"Paid\",              //Qui filtriamo per gli ordini che hanno il valore \"Paid\"\r\n          \"values\": [\"true\"]            //settato a true, ovvero tutti gli ordini pagati.\r\n      }      \r\n  ]\r\n}"},"url":"{{endpoint}}/orders/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","description":""},{"key":"Content-Encoding","value":"gzip","description":""},{"key":"Content-Length","value":"2226","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"key":"Date","value":"Tue, 03 Apr 2018 13:31:03 GMT","description":""},{"key":"Server","value":"Microsoft-IIS/10.0","description":""},{"key":"Vary","value":"Accept-Encoding","description":""},{"key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"rest.edock.it","path":"/","secure":false,"value":"aa908b711b68d5a1c6e7e90114d66a8c4fee0f91ec941c582b454ef17c683d77","key":"ARRAffinity"}],"responseTime":"374","body":"{\"PageSize\":5,\"Page\":0,\"TotalCount\":210,\"Content\":[{\"Fees\":[{\"FeeType\":0,\"Amount\":0.6,\"Currency\":\"USD\",\"Notes\":null}],\"idOrder\":\"02f96cb4-4c4f-4a96-b218-9e77a1a9a618\",\"CreatedOn\":\"2018-03-03T21:39:48Z\",\"OwnerModule\":\"eDock4Wish\",\"OwnerModuleId\":11,\"idStatus\":3,\"Status\":\"Spedito\",\"isGift\":false,\"isPaid\":true,\"Currency\":\"USD\",\"Rows\":[{\"SKU\":null,\"Quantity\":2.0,\"Price\":2.0,\"Discount\":0.0,\"DiscountTypeId\":0,\"InternalName\":\"defaults.products.notcategorized\",\"ItemId\":121,\"RowValue\":4.0,\"ConnectedOrderId\":null,\"DecreasedQuantity\":null,\"VariationValues\":{}}],\"ShippingMethod\":null,\"ShippingCost\":4.0,\"PaymentMethod\":\"Standard CreditCard\",\"idCustomer\":147,\"BillingAddress\":{\"idOrderBillingInfo\":221,\"Address\":\"13 fake st 2nd 2nd\",\"ZipCode\":\"12345\",\"City\":\"San Francisco\",\"County\":\"California\",\"CountyAbbreviation\":\"CA\",\"Country\":\"UNITED STATES\",\"CountryAbbreviation\":\"US\",\"Telephone1\":\"1231241\",\"Telephone2\":null,\"Email\":null,\"FirstName\":\"test name\",\"LastName\":null,\"Company\":null,\"VATCode\":null,\"FiscalCode\":null},\"ShippingAddress\":{\"idOrderShippingInfo\":221,\"Address\":\"13 fake st\",\"ZipCode\":\"12345\",\"City\":\"San Francisco\",\"County\":\"California\",\"CountyAbbreviation\":\"CA\",\"Country\":\"UNITED STATES\",\"CountryAbbreviation\":\"US\",\"Telephone1\":\"1231241\",\"Telephone2\":null,\"Email\":null,\"FirstName\":\"test name\",\"LastName\":null,\"Company\":null},\"ContactInformations\":null,\"idOrderInt\":222,\"idPaymentMethod\":5,\"UnlockedOn\":\"2018-03-13T16:13:53.06Z\",\"TrackingNumber\":\"0104564654\",\"CarrierName\":\"GLS\",\"Notes\":null,\"SellerAccount\":null,\"History\":[{\"OrderStatusFromName\":\"Acquistato\",\"OrderStatusToName\":\"Spedito\",\"OrderStatusFromId\":1,\"OrderStatusToId\":3,\"Description\":\"Effettuato da test_marco\",\"Notes\":null,\"InsertedOn\":\"2018-03-13T16:14:39.487Z\",\"OrderHistoryTypeIdType\":2},{\"OrderStatusFromName\":\"Spedito\",\"OrderStatusToName\":\"Spedito\",\"OrderStatusFromId\":3,\"OrderStatusToId\":3,\"Description\":\"Comunicazione 'TEST ESPANOL ' (TEST ESPANOL) inviata con successo a: marco@dontbenegative.it\",\"Notes\":null,\"InsertedOn\":\"2018-03-13T16:14:42.347Z\",\"OrderHistoryTypeIdType\":3}],\"Payments\":[],\"MarketplaceOrderId\":\"5a9b16240000000000000000\",\"IsTemporary\":false,\"ContainsDuplicateRows\":false,\"CancelState\":null,\"RefundState\":null},{\"Fees\":[{\"FeeType\":0,\"Amount\":0.6,\"Currency\":\"USD\",\"Notes\":null}],\"idOrder\":\"d4a9d895-a762-4e51-bd70-b34d4c8e4390\",\"CreatedOn\":\"2018-03-02T21:39:48Z\",\"OwnerModule\":\"eDock4Wish\",\"OwnerModuleId\":11,\"idStatus\":3,\"Status\":\"Spedito\",\"isGift\":false,\"isPaid\":true,\"Currency\":\"USD\",\"Rows\":[{\"SKU\":null,\"Quantity\":3.0,\"Price\":2.0,\"Discount\":0.0,\"DiscountTypeId\":0,\"InternalName\":\"defaults.products.notcategorized\",\"ItemId\":121,\"RowValue\":6.0,\"ConnectedOrderId\":null,\"DecreasedQuantity\":null,\"VariationValues\":{}}],\"ShippingMethod\":null,\"ShippingCost\":6.0,\"PaymentMethod\":\"Standard CreditCard\",\"idCustomer\":147,\"BillingAddress\":{\"idOrderBillingInfo\":220,\"Address\":\"13 fake st 2nd 2nd\",\"ZipCode\":\"12345\",\"City\":\"San Francisco\",\"County\":\"California\",\"CountyAbbreviation\":\"CA\",\"Country\":\"UNITED STATES\",\"CountryAbbreviation\":\"US\",\"Telephone1\":\"1231241\",\"Telephone2\":null,\"Email\":null,\"FirstName\":\"test name\",\"LastName\":null,\"Company\":null,\"VATCode\":null,\"FiscalCode\":null},\"ShippingAddress\":{\"idOrderShippingInfo\":220,\"Address\":\"13 fake st\",\"ZipCode\":\"12345\",\"City\":\"San Francisco\",\"County\":\"California\",\"CountyAbbreviation\":\"CA\",\"Country\":\"UNITED STATES\",\"CountryAbbreviation\":\"US\",\"Telephone1\":\"1231241\",\"Telephone2\":null,\"Email\":null,\"FirstName\":\"test name\",\"LastName\":null,\"Company\":null},\"ContactInformations\":null,\"idOrderInt\":221,\"idPaymentMethod\":5,\"UnlockedOn\":\"2018-03-13T16:19:10.987Z\",\"TrackingNumber\":\"0213132132\",\"CarrierName\":\"GLS\",\"Notes\":null,\"SellerAccount\":null,\"History\":[{\"OrderStatusFromName\":\"Acquistato\",\"OrderStatusToName\":\"Spedito\",\"OrderStatusFromId\":1,\"OrderStatusToId\":3,\"Description\":\"Effettuato da test_marco\",\"Notes\":null,\"InsertedOn\":\"2018-03-13T16:21:40.297Z\",\"OrderHistoryTypeIdType\":2},{\"OrderStatusFromName\":\"Spedito\",\"OrderStatusToName\":\"Spedito\",\"OrderStatusFromId\":3,\"OrderStatusToId\":3,\"Description\":\"Comunicazione 'TEST ESPANOL ' (TEST ESPANOL) inviata con successo a: marco@dontbenegative.it\",\"Notes\":null,\"InsertedOn\":\"2018-03-13T16:21:41.343Z\",\"OrderHistoryTypeIdType\":3}],\"Payments\":[],\"MarketplaceOrderId\":\"5a99c4a40000000000000000\",\"IsTemporary\":false,\"ContainsDuplicateRows\":false,\"CancelState\":null,\"RefundState\":null},{\"Fees\":[{\"FeeType\":0,\"Amount\":0.6,\"Currency\":\"USD\",\"Notes\":null}],\"idOrder\":\"fbc2e3ab-7db1-436f-9919-6246c3094d3f\",\"CreatedOn\":\"2018-03-01T21:39:48Z\",\"OwnerModule\":\"eDock4Wish\",\"OwnerModuleId\":11,\"idStatus\":1,\"Status\":\"Acquistato\",\"isGift\":false,\"isPaid\":true,\"Currency\":\"USD\",\"Rows\":[{\"SKU\":null,\"Quantity\":1.0,\"Price\":2.0,\"Discount\":0.0,\"DiscountTypeId\":0,\"InternalName\":\"defaults.products.notcategorized\",\"ItemId\":121,\"RowValue\":2.0,\"ConnectedOrderId\":null,\"DecreasedQuantity\":null,\"VariationValues\":{}}],\"ShippingMethod\":null,\"ShippingCost\":2.0,\"PaymentMethod\":\"Standard CreditCard\",\"idCustomer\":147,\"BillingAddress\":{\"idOrderBillingInfo\":222,\"Address\":\"13 fake st 2nd 2nd\",\"ZipCode\":\"12345\",\"City\":\"San Francisco\",\"County\":\"California\",\"CountyAbbreviation\":\"CA\",\"Country\":\"UNITED STATES\",\"CountryAbbreviation\":\"US\",\"Telephone1\":\"1231241\",\"Telephone2\":null,\"Email\":null,\"FirstName\":\"test name\",\"LastName\":null,\"Company\":null,\"VATCode\":null,\"FiscalCode\":null},\"ShippingAddress\":{\"idOrderShippingInfo\":222,\"Address\":\"13 fake st\",\"ZipCode\":\"12345\",\"City\":\"San Francisco\",\"County\":\"California\",\"CountyAbbreviation\":\"CA\",\"Country\":\"UNITED STATES\",\"CountryAbbreviation\":\"US\",\"Telephone1\":\"1231241\",\"Telephone2\":null,\"Email\":null,\"FirstName\":\"test name\",\"LastName\":null,\"Company\":null},\"ContactInformations\":null,\"idOrderInt\":223,\"idPaymentMethod\":5,\"UnlockedOn\":null,\"TrackingNumber\":null,\"CarrierName\":null,\"Notes\":null,\"SellerAccount\":null,\"History\":[],\"Payments\":[],\"MarketplaceOrderId\":\"5a9873240000000000000000\",\"IsTemporary\":false,\"ContainsDuplicateRows\":false,\"CancelState\":null,\"RefundState\":null},{\"Fees\":[{\"FeeType\":0,\"Amount\":0.6,\"Currency\":\"USD\",\"Notes\":null}],\"idOrder\":\"6dcc4ef9-2c76-44b3-b6d4-6b306f3be6a3\",\"CreatedOn\":\"2018-02-28T21:39:48Z\",\"OwnerModule\":\"eDock4Wish\",\"OwnerModuleId\":11,\"idStatus\":1,\"Status\":\"Acquistato\",\"isGift\":false,\"isPaid\":true,\"Currency\":\"USD\",\"Rows\":[{\"SKU\":null,\"Quantity\":2.0,\"Price\":2.0,\"Discount\":0.0,\"DiscountTypeId\":0,\"InternalName\":\"defaults.products.notcategorized\",\"ItemId\":121,\"RowValue\":4.0,\"ConnectedOrderId\":null,\"DecreasedQuantity\":null,\"VariationValues\":{}}],\"ShippingMethod\":null,\"ShippingCost\":4.0,\"PaymentMethod\":\"Standard CreditCard\",\"idCustomer\":147,\"BillingAddress\":{\"idOrderBillingInfo\":219,\"Address\":\"13 fake st 2nd 2nd\",\"ZipCode\":\"12345\",\"City\":\"San Francisco\",\"County\":\"California\",\"CountyAbbreviation\":\"CA\",\"Country\":\"UNITED STATES\",\"CountryAbbreviation\":\"US\",\"Telephone1\":\"1231241\",\"Telephone2\":null,\"Email\":null,\"FirstName\":\"test name\",\"LastName\":null,\"Company\":null,\"VATCode\":null,\"FiscalCode\":null},\"ShippingAddress\":{\"idOrderShippingInfo\":219,\"Address\":\"13 fake st\",\"ZipCode\":\"12345\",\"City\":\"San Francisco\",\"County\":\"California\",\"CountyAbbreviation\":\"CA\",\"Country\":\"UNITED STATES\",\"CountryAbbreviation\":\"US\",\"Telephone1\":\"1231241\",\"Telephone2\":null,\"Email\":null,\"FirstName\":\"test name\",\"LastName\":null,\"Company\":null},\"ContactInformations\":null,\"idOrderInt\":220,\"idPaymentMethod\":5,\"UnlockedOn\":null,\"TrackingNumber\":null,\"CarrierName\":null,\"Notes\":null,\"SellerAccount\":null,\"History\":[],\"Payments\":[],\"MarketplaceOrderId\":\"5a9721a40000000000000000\",\"IsTemporary\":false,\"ContainsDuplicateRows\":false,\"CancelState\":null,\"RefundState\":null},{\"Fees\":[],\"idOrder\":\"a92060fe-bb2d-4c46-9f2e-7ef2962b29c1\",\"CreatedOn\":\"2017-06-28T09:44:32.763Z\",\"OwnerModule\":\"eDock4eCommerce\",\"OwnerModuleId\":6,\"idStatus\":3,\"Status\":\"Spedito\",\"isGift\":false,\"isPaid\":false,\"Currency\":\"USD\",\"Rows\":[{\"SKU\":null,\"Quantity\":1.0,\"Price\":670.0,\"Discount\":0.0,\"DiscountTypeId\":0,\"InternalName\":\"defaults.products.notcategorized\",\"ItemId\":121,\"RowValue\":670.0,\"ConnectedOrderId\":null,\"DecreasedQuantity\":null,\"VariationValues\":{}}],\"ShippingMethod\":\"Ground\",\"ShippingCost\":0.0,\"PaymentMethod\":\"Bonifico Bancario\",\"idCustomer\":146,\"BillingAddress\":{\"idOrderBillingInfo\":216,\"Address\":\"21 West 52nd Street\",\"ZipCode\":\"10021\",\"City\":\"New York\",\"County\":\"New York\",\"CountyAbbreviation\":\"NY\",\"Country\":\"UNITED STATES\",\"CountryAbbreviation\":\"US\",\"Telephone1\":\"12345678\",\"Telephone2\":\"\",\"Email\":\"helpdesk@edock.it\",\"FirstName\":\"John\",\"LastName\":\"Smith\",\"Company\":\"Nop Solutions Ltd\",\"VATCode\":null,\"FiscalCode\":null},\"ShippingAddress\":{\"idOrderShippingInfo\":216,\"Address\":\"21 West 52nd Street\",\"ZipCode\":\"10021\",\"City\":\"New York\",\"County\":\"New York\",\"CountyAbbreviation\":\"NY\",\"Country\":\"UNITED STATES\",\"CountryAbbreviation\":\"US\",\"Telephone1\":\"12345678\",\"Telephone2\":\"\",\"Email\":\"helpdesk@edock.it\",\"FirstName\":\"John\",\"LastName\":\"Smith\",\"Company\":\"Nop Solutions Ltd\"},\"ContactInformations\":null,\"idOrderInt\":217,\"idPaymentMethod\":10,\"UnlockedOn\":\"2017-06-28T09:45:45.593Z\",\"TrackingNumber\":\"26546787879\",\"CarrierName\":\"PALLETWAYS\",\"Notes\":\"Order placed\\r\\n\\\"Order placed\\\" email (to store owner) has been queued. Queued email identifier: 1.\\r\\n\\\"Order placed\\\" email (to customer) has been queued. Queued email identifier: 2.\\r\\n\\r\\n\\r\\nGift wrapping: No\\r\\n\",\"SellerAccount\":null,\"History\":[{\"OrderStatusFromName\":\"Spedito\",\"OrderStatusToName\":\"Spedito\",\"OrderStatusFromId\":3,\"OrderStatusToId\":3,\"Description\":\"Comunicazione 'TEST ESPANOL ' (TEST ESPANOL) inviata con successo a: marco@dontbenegative.it\",\"Notes\":null,\"InsertedOn\":\"2017-10-26T07:27:48.197Z\",\"OrderHistoryTypeIdType\":3},{\"OrderStatusFromName\":\"Acquistato\",\"OrderStatusToName\":\"Spedito\",\"OrderStatusFromId\":1,\"OrderStatusToId\":3,\"Description\":\"Effettuato da test_marco\",\"Notes\":null,\"InsertedOn\":\"2017-10-26T09:27:44.633Z\",\"OrderHistoryTypeIdType\":2}],\"Payments\":[],\"MarketplaceOrderId\":\"6\",\"IsTemporary\":false,\"ContainsDuplicateRows\":false,\"CancelState\":null,\"RefundState\":null}]}"},{"id":"770eae1a-9fae-4495-9f19-ada00e2541cf","name":"Get all with details","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"page\": 0,\r\n  \"pageSize\": 20,\r\n  \"details\": \r\n  [ \r\n  \t{ \"field\": \"MarketplaceAdditionalInformations\" }, \r\n  \t{ \"field\": \"Rows\" } \r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/orders/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","description":""},{"key":"Content-Encoding","value":"gzip","description":""},{"key":"Content-Length","value":"2226","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"key":"Date","value":"Tue, 03 Apr 2018 13:31:03 GMT","description":""},{"key":"Server","value":"Microsoft-IIS/10.0","description":""},{"key":"Vary","value":"Accept-Encoding","description":""},{"key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"rest.edock.it","path":"/","secure":false,"value":"aa908b711b68d5a1c6e7e90114d66a8c4fee0f91ec941c582b454ef17c683d77","key":"ARRAffinity"}],"responseTime":"374","body":"{\r\n    \"MonthlyLimitReached\": false,\r\n    \"PageSize\": 20,\r\n    \"Page\": 0,\r\n    \"TotalCount\": 1578,\r\n    \"Content\": [\r\n        {\r\n            \"Fees\": null,\r\n            \"idOrder\": \"f82b0ea9-2561-4e89-bdad-f76854049ac4\",\r\n            \"CreatedOn\": \"2024-08-24T07:15:08Z\",\r\n            \"OwnerModule\": \"eDock4ManoMano\",\r\n            \"OwnerModuleId\": 13,\r\n            \"SubModuleName\": null,\r\n            \"idStatus\": 1,\r\n            \"Status\": \"Acquistato\",\r\n            \"isGift\": false,\r\n            \"isPaid\": true,\r\n            \"Currency\": \"EUR\",\r\n            \"Rows\": [\r\n                {\r\n                    \"idOrderRow\": 1973,\r\n                    \"OrderId\": 1615,\r\n                    \"SKU\": null,\r\n                    \"Quantity\": 2.0,\r\n                    \"Price\": 35.0,\r\n                    \"Discount\": 0.0,\r\n                    \"DiscountTypeId\": 0,\r\n                    \"InternalName\": \"defaults.products.notcategorized\",\r\n                    \"ItemId\": 121,\r\n                    \"IsGift\": false,\r\n                    \"GiftWrapPrice\": null,\r\n                    \"GiftWrapLevel\": null,\r\n                    \"GiftMessageText\": null,\r\n                    \"MarketplaceSKU\": \"QS-12-2440-GOLD-MI\",\r\n                    \"MarketplaceProductIdentifier\": null,\r\n                    \"MarketplaceProductName\": \"Profilo QS angolare rettificato in acciaio inossidabile oro lucido 1,2cm x 244cm\",\r\n                    \"MarketplaceProductImage\": null,\r\n                    \"ComputedFixedDiscount\": 0.0,\r\n                    \"RowValue\": 70.0,\r\n                    \"RowVATValue\": 12.6200,\r\n                    \"ConnectedOrderId\": null,\r\n                    \"DecreasedQuantity\": null,\r\n                    \"VariationValues\": null,\r\n                    \"Measures\": null,\r\n                    \"HSCode\": null,\r\n                    \"CountryOfOriginISOCode\": null,\r\n                    \"IsDangerousGood\": false,\r\n                    \"LatestShipDate\": null,\r\n                    \"LatestDeliveryDate\": null,\r\n                    \"ConvertedPurchasePrice\": null,\r\n                    \"IsCustomized\": false,\r\n                    \"CustomizationData\": [],\r\n                    \"VAT\": 6.3100,\r\n                    \"DiscountVAT\": null,\r\n                    \"GiftWrapVAT\": null,\r\n                    \"GiftWrapDiscount\": null,\r\n                    \"GiftWrapDiscountVAT\": null,\r\n                    \"VATRate\": 22.00,\r\n                    \"DiscountVATRate\": null,\r\n                    \"GiftWrapVATRate\": null,\r\n                    \"GiftWrapDiscountVATRate\": null,\r\n                    \"MarketplaceOrderRowId\": \"M240874645165_-1\",\r\n                    \"MarketplaceOrderRowStatus\": 0\r\n                }\r\n            ],\r\n            \"ShippingMethod\": \"Standard\",\r\n            \"ShippingCost\": 15.0,\r\n            \"ShippingCostVAT\": 2.7000,\r\n            \"ShippingDiscount\": 0.0000,\r\n            \"ShippingDiscountVAT\": 0.0000,\r\n            \"ShippingCostVATRate\": 22.00,\r\n            \"ShippingDiscountVATRate\": 0.0,\r\n            \"PaymentMethod\": \"Altro\",\r\n            \"LocalizablePaymentMethod\": \"defaults.payment.other\",\r\n            \"idCustomer\": 1221,\r\n            \"BillingAddress\": null,\r\n            \"ShippingAddress\": null,\r\n            \"ContactInformations\": null,\r\n            \"idOrderInt\": 1615,\r\n            \"idPaymentMethod\": 11,\r\n            \"UnlockedOn\": null,\r\n            \"TrackingNumber\": null,\r\n            \"CarrierName\": null,\r\n            \"Notes\": null,\r\n            \"SellerAccount\": null,\r\n            \"Cancelled\": false,\r\n            \"History\": null,\r\n            \"ComputedSubTotal\": 70.0,\r\n            \"ComputedTotal\": 85.0,\r\n            \"ComputedVATSubTotal\": 12.62,\r\n            \"ComputedVATTotal\": 15.32,\r\n            \"Payments\": null,\r\n            \"MarketplaceOrderId\": \"M240874645165\",\r\n            \"IsTemporary\": false,\r\n            \"ContainsDuplicateRows\": false,\r\n            \"CancelState\": null,\r\n            \"RefundState\": null,\r\n            \"Attachments\": null,\r\n            \"ShippedOn\": null,\r\n            \"IsB2B\": false,\r\n            \"Anonymized\": true,\r\n            \"Invoices\": null,\r\n            \"eBayOrderDetails\": null,\r\n            \"idOrderBillingInfo\": 1615,\r\n            \"idOrderShippingInfo\": 1615,\r\n            \"AnonymizationDetails\": null,\r\n            \"Measures\": null,\r\n            \"LatestShipDate\": null,\r\n            \"LatestDeliveryDate\": null,\r\n            \"MarketplaceAdditionalInformations\": [],\r\n            \"MarketplaceOrderStatus\": 0,\r\n            \"VATBreakdown\": [\r\n                {\r\n                    \"Rate\": 22.00,\r\n                    \"TotalAmount\": 9.0100\r\n                },\r\n                {\r\n                    \"Rate\": 0.0,\r\n                    \"TotalAmount\": 0.0000\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}"}],"_postman_id":"203ab7b1-5ceb-6183-d1da-e27f464d8166"},{"name":"Get","id":"e3403c30-3b25-9875-908b-47abb53ee85b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{endpoint}}/orders/{{idOrder}}?detail={{OrderDetails}}","description":"<p>Retrieves an order, whose ID is passed in the <strong>idOrder</strong> parameter.<br />Optionally it is possible to pass in the <strong>detail</strong> parameter, separated by commas, the details that you intend to retrieve.<br />If the detail parameter is not passed, all available details are returned.</p>\n<p>Check \"Get all\" documentation for valid values for the <strong>detail</strong> parameter.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["orders","{{idOrder}}"],"host":["{{endpoint}}"],"query":[{"key":"detail","value":"{{OrderDetails}}"}],"variable":[]}},"response":[{"id":"00d87edf-ddb3-4a36-8d7f-947240057652","name":"Get order","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{endpoint}}/orders/{{idOrder}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 10 Mar 2023 09:28:06 GMT"},{"key":"Content-Length","value":"3248"}],"cookie":[],"responseTime":null,"body":"{\n    \"Fees\": null,\n    \"idOrder\": \"70ced530-9e40-4767-8611-8b6b4d1611f8\",\n    \"CreatedOn\": \"2023-02-27T18:40:57Z\",\n    \"OwnerModule\": \"eDock4Amazon\",\n    \"OwnerModuleId\": 4,\n    \"SubModuleName\": null,\n    \"idStatus\": 3,\n    \"Status\": \"Spedito\",\n    \"isGift\": false,\n    \"isPaid\": true,\n    \"Currency\": \"EUR\",\n    \"Rows\": [\n        {\n            \"idOrderRow\": 279,\n            \"OrderId\": 279,\n            \"SKU\": \"117081\",\n            \"Quantity\": 1,\n            \"Price\": 11.79,\n            \"Discount\": 0,\n            \"DiscountTypeId\": 0,\n            \"InternalName\": \"Idrocrema Saugella 30ml\",\n            \"ItemId\": 751,\n            \"IsGift\": false,\n            \"GiftWrapPrice\": null,\n            \"GiftWrapLevel\": null,\n            \"GiftMessageText\": null,\n            \"MarketplaceSKU\": \"117081\",\n            \"MarketplaceProductIdentifier\": null,\n            \"MarketplaceProductName\": \"2 SAUGELLA IDROCREMA SECCHEZZA, PRURITO E BRUCIORE VAGINALE 2X30 ml\",\n            \"MarketplaceProductImage\": null,\n            \"RowValue\": 11.79,\n            \"ConnectedOrderId\": null,\n            \"DecreasedQuantity\": null,\n            \"VariationValues\": {},\n            \"Measures\": null,\n            \"HSCode\": null,\n            \"CountryOfOriginISOCode\": null,\n            \"IsDangerousGood\": false,\n            \"LatestShipDate\": null,\n            \"LatestDeliveryDate\": null,\n            \"ConvertedPurchasePrice\": null,\n            \"IsCustomized\": false,\n            \"CustomizationData\": [],\n            \"VAT\": 0,\n            \"DiscountVAT\": 0,\n            \"GiftWrapVAT\": 0,\n            \"GiftWrapDiscount\": 0,\n            \"GiftWrapDiscountVAT\": 0,\n            \"MarketplaceOrderRowId\": null,\n            \"MarketplaceOrderRowStatus\": 0\n        }\n    ],\n    \"ShippingMethod\": \"Standard\",\n    \"ShippingCost\": 4.9,\n    \"ShippingCostVAT\": 0,\n    \"ShippingDiscount\": 0,\n    \"ShippingDiscountVAT\": 0,\n    \"PaymentMethod\": \"Standard Credit Card\",\n    \"LocalizablePaymentMethod\": \"defaults.payment.standardcreditcard\",\n    \"idCustomer\": 279,\n    \"BillingAddress\": {\n        \"idOrderBillingInfo\": 279,\n        \"Address\": \"XXX\",\n        \"ZipCode\": \"XXX\",\n        \"City\": \"XXX\",\n        \"County\": \"XXX\",\n        \"CountyAbbreviation\": \"XXX\",\n        \"Country\": \"XXX\",\n        \"CountryAbbreviation\": \"XXX\",\n        \"Telephone1\": \"XXX\",\n        \"Telephone2\": \"\",\n        \"Email\": \"XXX\",\n        \"FirstName\": \"\",\n        \"LastName\": \"XXX\",\n        \"Company\": null,\n        \"VATCode\": null,\n        \"FiscalCode\": null\n    },\n    \"ShippingAddress\": {\n        \"idOrderShippingInfo\": 279,\n        \"Address\": \"XXX\",\n        \"ZipCode\": \"XXX\",\n        \"City\": \"XXX\",\n        \"County\": \"XXX\",\n        \"CountyAbbreviation\": \"XXX\",\n        \"Country\": \"XXX\",\n        \"CountryAbbreviation\": \"XXX\",\n        \"Telephone1\": \"XXX\",\n        \"Telephone2\": \"\",\n        \"Email\": \"XXX\",\n        \"FirstName\": \"\",\n        \"LastName\": \"XXX\",\n        \"Company\": null\n    },\n    \"ContactInformations\": null,\n    \"idOrderInt\": 279,\n    \"idPaymentMethod\": 5,\n    \"UnlockedOn\": \"2023-02-27T19:30:12.837Z\",\n    \"TrackingNumber\": \"XXX\",\n    \"CarrierName\": \"Amazon Shipping\",\n    \"Notes\": null,\n    \"SellerAccount\": \"Amazon ITALIA\",\n    \"Cancelled\": false,\n    \"History\": [\n        {\n            \"OrderStatusFromName\": \"Acquistato\",\n            \"OrderStatusToName\": \"Spedito\",\n            \"OrderStatusFromId\": 1,\n            \"OrderStatusToId\": 3,\n            \"Description\": \"\",\n            \"Notes\": null,\n            \"InsertedOn\": \"2023-02-28T06:10:01.017Z\",\n            \"OrderHistoryTypeIdType\": 2,\n            \"OrderId\": 279\n        }\n    ],\n    \"ComputedSubTotal\": 11.79,\n    \"ComputedTotal\": 16.69,\n    \"Payments\": null,\n    \"MarketplaceOrderId\": \"402-9124058-8887502\",\n    \"IsTemporary\": false,\n    \"ContainsDuplicateRows\": false,\n    \"CancelState\": null,\n    \"RefundState\": null,\n    \"Attachments\": [],\n    \"ShippedOn\": \"2023-02-28T06:10:01.017Z\",\n    \"IsB2B\": true,\n    \"Anonymized\": false,\n    \"Invoices\": null,\n    \"eBayOrderDetails\": null,\n    \"idOrderBillingInfo\": 279,\n    \"idOrderShippingInfo\": 279,\n    \"AnonymizationDetails\": null,\n    \"Measures\": {\n        \"TotalWeightInKgs\": 0\n    },\n    \"LatestShipDate\": null,\n    \"LatestDeliveryDate\": null,\n    \"MarketplaceAdditionalInformations\": [\n        {\n            \"OrderId\": 279,\n            \"Name\": \"IsFBA\",\n            \"Value\": \"False\"\n        },\n        {\n            \"OrderId\": 279,\n            \"Name\": \"IsPrime\",\n            \"Value\": \"False\"\n        }\n    ],\n    \"MarketplaceOrderStatus\": 0\n}"},{"id":"e6c1ae9d-3b53-4d70-90bc-089e9c5ed381","name":"Get order - Multiple details","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{endpoint}}/orders/{{idOrder}}?detail=Rows,RowVariationAttributes","host":["{{endpoint}}"],"path":["orders","{{idOrder}}"],"query":[{"key":"detail","value":"Rows,RowVariationAttributes"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 10 Mar 2023 09:29:51 GMT"},{"key":"Content-Length","value":"2185"}],"cookie":[],"responseTime":null,"body":"{\n    \"Fees\": null,\n    \"idOrder\": \"70ced530-9e40-4767-8611-8b6b4d1611f8\",\n    \"CreatedOn\": \"2023-02-27T18:40:57Z\",\n    \"OwnerModule\": \"eDock4Amazon\",\n    \"OwnerModuleId\": 4,\n    \"SubModuleName\": null,\n    \"idStatus\": 3,\n    \"Status\": \"Spedito\",\n    \"isGift\": false,\n    \"isPaid\": true,\n    \"Currency\": \"EUR\",\n    \"Rows\": [\n        {\n            \"idOrderRow\": 279,\n            \"OrderId\": 279,\n            \"SKU\": \"117081\",\n            \"Quantity\": 1,\n            \"Price\": 11.79,\n            \"Discount\": 0,\n            \"DiscountTypeId\": 0,\n            \"InternalName\": \"Idrocrema Saugella 30ml\",\n            \"ItemId\": 751,\n            \"IsGift\": false,\n            \"GiftWrapPrice\": null,\n            \"GiftWrapLevel\": null,\n            \"GiftMessageText\": null,\n            \"MarketplaceSKU\": \"117081\",\n            \"MarketplaceProductIdentifier\": null,\n            \"MarketplaceProductName\": \"2 SAUGELLA IDROCREMA SECCHEZZA, PRURITO E BRUCIORE VAGINALE 2X30 ml\",\n            \"MarketplaceProductImage\": null,\n            \"RowValue\": 11.79,\n            \"ConnectedOrderId\": null,\n            \"DecreasedQuantity\": null,\n            \"VariationValues\": {},\n            \"Measures\": null,\n            \"HSCode\": null,\n            \"CountryOfOriginISOCode\": null,\n            \"IsDangerousGood\": false,\n            \"LatestShipDate\": null,\n            \"LatestDeliveryDate\": null,\n            \"ConvertedPurchasePrice\": null,\n            \"IsCustomized\": false,\n            \"CustomizationData\": [],\n            \"VAT\": 0,\n            \"DiscountVAT\": 0,\n            \"GiftWrapVAT\": 0,\n            \"GiftWrapDiscount\": 0,\n            \"GiftWrapDiscountVAT\": 0,\n            \"MarketplaceOrderRowId\": null,\n            \"MarketplaceOrderRowStatus\": 0\n        }\n    ],\n    \"ShippingMethod\": \"Standard\",\n    \"ShippingCost\": 4.9,\n    \"ShippingCostVAT\": 0,\n    \"ShippingDiscount\": 0,\n    \"ShippingDiscountVAT\": 0,\n    \"PaymentMethod\": \"Standard Credit Card\",\n    \"LocalizablePaymentMethod\": \"defaults.payment.standardcreditcard\",\n    \"idCustomer\": 279,\n    \"BillingAddress\": null,\n    \"ShippingAddress\": null,\n    \"ContactInformations\": null,\n    \"idOrderInt\": 279,\n    \"idPaymentMethod\": 5,\n    \"UnlockedOn\": \"2023-02-27T19:30:12.837Z\",\n    \"TrackingNumber\": \"F297C70474283\",\n    \"CarrierName\": \"Amazon Shipping\",\n    \"Notes\": null,\n    \"SellerAccount\": null,\n    \"Cancelled\": false,\n    \"History\": null,\n    \"ComputedSubTotal\": 11.79,\n    \"ComputedTotal\": 16.69,\n    \"Payments\": null,\n    \"MarketplaceOrderId\": \"402-9124058-8887502\",\n    \"IsTemporary\": false,\n    \"ContainsDuplicateRows\": false,\n    \"CancelState\": null,\n    \"RefundState\": null,\n    \"Attachments\": null,\n    \"ShippedOn\": null,\n    \"IsB2B\": true,\n    \"Anonymized\": false,\n    \"Invoices\": null,\n    \"eBayOrderDetails\": null,\n    \"idOrderBillingInfo\": 279,\n    \"idOrderShippingInfo\": 279,\n    \"AnonymizationDetails\": null,\n    \"Measures\": {\n        \"TotalWeightInKgs\": 0\n    },\n    \"LatestShipDate\": null,\n    \"LatestDeliveryDate\": null,\n    \"MarketplaceAdditionalInformations\": null,\n    \"MarketplaceOrderStatus\": 0\n}"},{"id":"d23a320f-ce9b-4d71-9070-ac49827eb12a","name":"Get order - Invoices","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{endpoint}}/orders/{{idOrder}}?detail=Invoices","host":["{{endpoint}}"],"path":["orders","{{idOrder}}"],"query":[{"key":"detail","value":"Invoices"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 10 Mar 2023 09:29:51 GMT"},{"key":"Content-Length","value":"2185"}],"cookie":[],"responseTime":null,"body":"{\n    \"Fees\": null,\n    \"idOrder\": \"0534a40d-74be-48db-ba39-ee20d65618b8\",\n    \"CreatedOn\": \"2024-06-16T10:31:44Z\",\n    \"OwnerModule\": \"eDock4Amazon\",\n    \"OwnerModuleId\": 4,\n    \"SubModuleName\": \"Italy\",\n    \"idStatus\": 1,\n    \"Status\": \"Acquistato\",\n    \"isGift\": false,\n    \"isPaid\": true,\n    \"Currency\": \"EUR\",\n    \"Rows\": null,\n    \"ShippingMethod\": \"Expedited\",\n    \"ShippingCost\": 0.0,\n    \"ShippingCostVAT\": 0.0000,\n    \"ShippingDiscount\": 0.0000,\n    \"ShippingDiscountVAT\": 0.0000,\n    \"ShippingCostVATRate\": 0.0,\n    \"ShippingDiscountVATRate\": 0.0,\n    \"PaymentMethod\": \"Standard CreditCard\",\n    \"LocalizablePaymentMethod\": \"defaults.payment.standardcreditcard\",\n    \"idCustomer\": 53,\n    \"BillingAddress\": null,\n    \"ShippingAddress\": null,\n    \"ContactInformations\": null,\n    \"idOrderInt\": 53,\n    \"idPaymentMethod\": 5,\n    \"UnlockedOn\": \"2024-06-26T15:03:41.663Z\",\n    \"TrackingNumber\": null,\n    \"CarrierName\": \"FBA\",\n    \"Notes\": null,\n    \"SellerAccount\": null,\n    \"Cancelled\": false,\n    \"History\": null,\n    \"ComputedSubTotal\": null,\n    \"ComputedTotal\": null,\n    \"ComputedVATSubTotal\": null,\n    \"ComputedVATTotal\": null,\n    \"Payments\": null,\n    \"MarketplaceOrderId\": \"000-1234567-9876543\",\n    \"IsTemporary\": false,\n    \"ContainsDuplicateRows\": false,\n    \"CancelState\": null,\n    \"RefundState\": null,\n    \"Attachments\": null,\n    \"ShippedOn\": null,\n    \"IsB2B\": false,\n    \"Anonymized\": false,\n    \"Invoices\": [\n        {\n            \"idOrder\": 53,\n            \"InvoiceId\": \"RECEIPT-IT-000112233-2024-12345\",\n            \"InvoiceDate\": \"2024-06-16T00:00:00Z\",\n            \"InvoiceURL\": \"https://sellercentral.amazon.it/document/download?v=xxx&t=EU_Retail_Forward\",\n            \"SellerTaxRegistrationNumber\": \"IT0000000000\",\n            \"SellerTaxRegistrationJurisdiction\": \"IT\",\n            \"BuyerTaxRegistrationNumber\": \"\",\n            \"BuyerTaxRegistrationJurisdiction\": \"\",\n            \"BuyerElectronicInvoiceAccountId\": \"\",\n            \"IsRefund\": false,\n            \"ExternalShippingId\": \"00000000000000\",\n            \"IsExportOutsideEU\": false,\n            \"IsAmazonInvoiced\": true,\n            \"ShipFromCountryId\": 108,\n            \"ShipToCountryId\": 108,\n            \"IsVatCollectedByMarketplace\": false,\n            \"Rows\": [\n                {\n                    \"MarketplaceSKU\": \"SKU\",\n                    \"Quantity\": 1.0000,\n                    \"AppliedVATRate\": 0.2200,\n                    \"TotalPriceVATIncluded\": 18.9000,\n                    \"TotalPriceVAT\": 3.4100,\n                    \"PromoVATIncluded\": 0.0000,\n                    \"PromoVAT\": 0.0000,\n                    \"ShippingVATIncluded\": 0.0000,\n                    \"ShippingVAT\": 0.0000,\n                    \"ShippingPromoVATIncluded\": 0.0000,\n                    \"ShippingPromoVAT\": 0.0000,\n                    \"GiftWrapVATIncluded\": 0.0000,\n                    \"GiftWrapVAT\": 0.0000,\n                    \"GiftWrapPromoVATIncluded\": 0.0000,\n                    \"GiftWrapPromoVAT\": 0.0000\n                }\n            ]\n        }\n    ],\n    \"eBayOrderDetails\": null,\n    \"idOrderBillingInfo\": 53,\n    \"idOrderShippingInfo\": 53,\n    \"AnonymizationDetails\": null,\n    \"Measures\": null,\n    \"LatestShipDate\": null,\n    \"LatestDeliveryDate\": null,\n    \"MarketplaceAdditionalInformations\": null,\n    \"MarketplaceOrderStatus\": 0,\n    \"VATBreakdown\": null\n}"}],"_postman_id":"e3403c30-3b25-9875-908b-47abb53ee85b"},{"name":"Move","id":"610fda74-b08b-19d3-fb3c-62e28e3a1420","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"OrderId\": [176],           //Array degli ID degli ordini da spostare. Possono essere più d'uno. Obbligatorio e con almeno un ID.\n    \"MoveToStatus\": 3           //ID dello stato dell'ordine in cui si intende spostare l'ordine. Per recuperare gli stati, consultare la chiamata \"Get all statuses\"\n}"},"url":"{{endpoint}}/Orders/Move","description":"<p>Sposta uno o più ordini in un altro stato.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["Orders","Move"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"610fda74-b08b-19d3-fb3c-62e28e3a1420"},{"name":"Mark as paid","id":"c7b69929-3c8f-4995-6caf-a1701c06dafe","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[176]   //Array contente gli ID degli ordini che si intende marcare come pagati."},"url":"{{endpoint}}/Orders/MarkAsPaid","description":"<p>Segnala gli ordini come pagati.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["Orders","MarkAsPaid"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c7b69929-3c8f-4995-6caf-a1701c06dafe"},{"name":"Ship order","id":"347a2bd2-4eac-e1f6-7158-01fa549bbd25","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"idOrder\": 176,                                 //ID dell'ordine che si intende marcare come spedito. Obbligatorio.\n    \"TrackingNumber\": \"1656556653232\",              //Codice tracking dell'ordine. Facoltativo.\n    \"Carrier\": \"SDA Express\",                       //Spedizioniere. Facoltativo.\n    \"IsShipped\": true                               //Se valorizzato a true, l'ordine viene fattivamente marcato come spedito (e viene quindi inviata comunicazione al marketplace)\n}"},"url":"{{endpoint}}/Orders/TrackingInfo","description":"<p>Segnala l'ordine come spedito, specificando le informazioni per il tracking.</p>\n<ul>\n<li><strong>TrackingNumber</strong>: codice di tracciamento del pacco. È quello che permette al cliente di capire a che punto è la consegna della spedizione.</li>\n<li><strong>Carrier</strong>: spedizioniere che ha effettivamente preso in carico la spedizione</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["Orders","TrackingInfo"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"347a2bd2-4eac-e1f6-7158-01fa549bbd25"},{"name":"Notes","id":"239100a1-54f7-0c4e-b4e4-155afa7041ff","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"idOrder\": 176,                                             //ID dell'ordine per il quale si intende valorizzare la nota\n    \"Notes\": \"Ordine correttamente importato sul gestionale.\"   //Note. Le note precedentemente impostate verranno eliminate e sostituite con questa\n}"},"url":"{{endpoint}}/Orders/Notes","description":"<p>Valorizza le note dell'ordine.</p>\n<p>Può essere utile per impostare qualche nota sullo stato di importazione come,\nad esempio, messaggi di errore in fase di importazione o avvertenze varie.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["Orders","Notes"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"239100a1-54f7-0c4e-b4e4-155afa7041ff"},{"name":"Create","id":"158ba406-761d-8f91-76cc-e3f5c059a08b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"idOrder\": \"e96b33ba-cdbd-48b3-b21b-8a58a62be47e\",\r\n  \"CreatedOn\": \"2022-04-05T12:37:00.9610696+00:00\",\r\n  \"OwnerModule\": \"eDock4Amazon\",\r\n  \"idStatus\": 1,\r\n  \"isPaid\": true,\r\n  \"Currency\": \"EUR\",\r\n  \"Rows\": [\r\n    {\r\n      \"SKU\": \"PRODUCT SKU\",\r\n      \"Quantity\": 1,\r\n      \"Price\": 123.15,\r\n      \"MarketplaceName\": \"Prodotto di test\"\r\n    }\r\n  ],\r\n  \"ShippingMethod\": \"Other\",\r\n  \"ShippingCost\": 0,\r\n  \"PaymentMethod\": \"CreditCard\",\r\n  \"BillingAddress\": {\r\n    \"Address\": \"Corso Acqui, 382\",\r\n    \"ZipCode\": \"15121\",\r\n    \"City\": \"Alessandria\",\r\n    \"County\": \"AL\",\r\n    \"Country\": \"IT\",\r\n    \"Telephone1\": \"\",\r\n    \"Email\": \"developer@edock.it\",\r\n    \"FirstName\": \"Marco\",\r\n    \"LastName\": \"Tibaldeschi\",\r\n    \"Company\": \"\",\r\n    \"VATCode\": \"\"\r\n  },\r\n  \"ShippingAddress\": {\r\n    \"Address\": \"Corso Acqui, 382\",\r\n    \"ZipCode\": \"15121\",\r\n    \"City\": \"Alessandria\",\r\n    \"County\": \"AL\",\r\n    \"Country\": \"IT\",\r\n    \"Telephone1\": \"\",\r\n    \"Email\": \"developer@edock.it\",\r\n    \"FirstName\": \"Marco\",\r\n    \"LastName\": \"Tibaldeschi\"\r\n  }\r\n}"},"url":"{{endpoint}}/Orders/Add","description":"<p>Crea un ordine su MarketRock</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["Orders","Add"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"158ba406-761d-8f91-76cc-e3f5c059a08b"},{"name":"Update","id":"f37d201a-c859-4331-8bf6-547db6829848","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"idOrderInt\": 469,\r\n  \"CreatedOn\": \"2022-02-10T12:37:00.9610696+00:00\",\r\n  \"OwnerModule\": \"eDock4Amazon\",\r\n  \"idStatus\": 1,\r\n  \"isPaid\": true,\r\n  \"Currency\": \"EUR\",\r\n  \"Rows\": [\r\n    {\r\n      \"SKU\": \"PRODUCT SKU\",\r\n      \"Quantity\": 2,\r\n      \"Price\": 123.15\r\n    }\r\n  ],\r\n  \"ShippingMethod\": \"Other\",\r\n  \"ShippingCost\": 0,\r\n  \"PaymentMethod\": \"CreditCard\",\r\n  \"BillingAddress\": {\r\n    \"Address\": \"Corso Acqui, 382\",\r\n    \"ZipCode\": \"15121\",\r\n    \"City\": \"Alessandria\",\r\n    \"County\": \"AL\",\r\n    \"Country\": \"IT\",\r\n    \"Telephone1\": \"\",\r\n    \"Email\": \"developer@edock.it\",\r\n    \"FirstName\": \"Marco\",\r\n    \"LastName\": \"Tibaldeschi\",\r\n    \"Company\": \"\",\r\n    \"VATCode\": \"\"\r\n  },\r\n  \"ShippingAddress\": {\r\n    \"Address\": \"Corso Acqui, 382\",\r\n    \"ZipCode\": \"15121\",\r\n    \"City\": \"Alessandria\",\r\n    \"County\": \"AL\",\r\n    \"Country\": \"IT\",\r\n    \"Telephone1\": \"\",\r\n    \"Email\": \"developer@edock.it\",\r\n    \"FirstName\": \"Marco\",\r\n    \"LastName\": \"Tibaldeschi\"\r\n  }\r\n}"},"url":"{{endpoint}}/Orders/Update?updateRows=true","description":"<p>Modifica un ordine già esistente su MarketRock</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["Orders","Update"],"host":["{{endpoint}}"],"query":[{"key":"updateRows","value":"true"}],"variable":[]}},"response":[],"_postman_id":"f37d201a-c859-4331-8bf6-547db6829848"},{"name":"Label","id":"ad78c08b-f8fa-444a-86f6-558334c064c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/Orders/Label?idOrder={{idOrder}}","description":"<p>Genera l'etichetta PDF per la spedizione con il nome, il cognome, l'indirizzo, il codice postale, il città e la nazione.</p>\n<p>Occorre passare l'id ordine (idOrderInt) dell'ordine di cui si vuole generare l'etichetta.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["Orders","Label"],"host":["{{endpoint}}"],"query":[{"key":"idOrder","value":"{{idOrder}}"}],"variable":[]}},"response":[],"_postman_id":"ad78c08b-f8fa-444a-86f6-558334c064c3"},{"name":"Customer","id":"8d52d15e-a10a-4529-941a-a41bdb3778d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/Customers/GetFull/{{idCustomer}}","description":"<p>Recupera le informazioni su un cliente il cui ID è passato nel parametro {{idCustomer}}. La risposta contiene alcune informazioni aggiuntive fornite dal marketplace su cui l'ordine è stato effettuato.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["Customers","GetFull","{{idCustomer}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"ec20e181-10dd-4512-9b4c-0c80d97e9d9a","name":"Get Customer","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/Customers/GetFull/110"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"659"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 22 Dec 2023 08:47:29 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"idContact\": 110,\n    \"ContactInformations\": [\n        {\n            \"Name\": \"eBayGoodStanding\",\n            \"Value\": \"False\",\n            \"PrimitiveType\": null,\n            \"DotNetPrimitiveType\": null\n        },\n        {\n            \"Name\": \"Email\",\n            \"Value\": \"xxx@gmail.com\",\n            \"PrimitiveType\": null,\n            \"DotNetPrimitiveType\": null\n        },\n        {\n            \"Name\": \"EnterpriseSeller\",\n            \"Value\": \"False\",\n            \"PrimitiveType\": null,\n            \"DotNetPrimitiveType\": null\n        },\n        {\n            \"Name\": \"FeedbackScore\",\n            \"Value\": \"0\",\n            \"PrimitiveType\": null,\n            \"DotNetPrimitiveType\": null\n        },\n        {\n            \"Name\": \"IDVerified\",\n            \"Value\": \"False\",\n            \"PrimitiveType\": null,\n            \"DotNetPrimitiveType\": null\n        },\n        {\n            \"Name\": \"NewUser\",\n            \"Value\": \"False\",\n            \"PrimitiveType\": null,\n            \"DotNetPrimitiveType\": null\n        },\n        {\n            \"Name\": \"PayPalAccountLevel\",\n            \"Value\": \"Unverified\",\n            \"PrimitiveType\": null,\n            \"DotNetPrimitiveType\": null\n        },\n        {\n            \"Name\": \"PayPalAccountStatus\",\n            \"Value\": \"Active\",\n            \"PrimitiveType\": null,\n            \"DotNetPrimitiveType\": null\n        },\n        {\n            \"Name\": \"PayPalAccountType\",\n            \"Value\": \"Personal\",\n            \"PrimitiveType\": null,\n            \"DotNetPrimitiveType\": null\n        },\n        {\n            \"Name\": \"PositiveFeedbackPercent\",\n            \"Value\": \"0\",\n            \"PrimitiveType\": null,\n            \"DotNetPrimitiveType\": null\n        },\n        {\n            \"Name\": \"RegistrationDate\",\n            \"Value\": \"01/01/0001 00:00:00\",\n            \"PrimitiveType\": null,\n            \"DotNetPrimitiveType\": null\n        },\n        {\n            \"Name\": \"Site\",\n            \"Value\": \"US\",\n            \"PrimitiveType\": null,\n            \"DotNetPrimitiveType\": null\n        },\n        {\n            \"Name\": \"Status\",\n            \"Value\": \"Unknown\",\n            \"PrimitiveType\": null,\n            \"DotNetPrimitiveType\": null\n        }\n    ],\n    \"ModuleOwner\": 2,\n    \"ContactType\": null,\n    \"Orders\": [\n        125\n    ],\n    \"Name\": \"MarketRock\",\n    \"Surname\": null,\n    \"Address\": \"Corso Acqui, 382 - 15121 Alessandria\",\n    \"Email\": \"xxx@gmail.com\",\n    \"Telephone\": \"0000\",\n    \"MarketplaceContactId\": \"nY+sHZ2PrBmdj6wVnY+sEZ2PrA2dj6ADmYOpAZSLpgmdj6x9nY+seQ==\"\n}"}],"_postman_id":"8d52d15e-a10a-4529-941a-a41bdb3778d1"},{"name":"Export","id":"36447a0f-4340-40a4-921e-38169ab05db2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"idOrders\": [ {{idOrder}} ],\r\n    \"Type\": \"Normal\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/Orders/Export","description":"<p>Esporta gli ordini indicati nel parametro <strong>idOrders</strong>. Il parametro <strong>OrderExportType</strong> accetta questi valori:</p>\n<ul>\n<li><strong>Normal</strong>: esportazione in XLS contenente i dati sintetici dell'ordine</li>\n<li><strong>BartoliniEasySped</strong>: esportazione per Bartolini EasySped</li>\n<li><strong>BartoliniVAS</strong>: esportazione per Bartolini V.A.S.</li>\n<li><strong>DHL</strong>: esportazione per DHL</li>\n<li><strong>GLS</strong>: esportazione per GLS</li>\n<li><strong>Personalized</strong>: formato personalizzato</li>\n</ul>\n<p><strong>ATTENZIONE</strong>: per poter creare una esportazione è necessario che il vostro client sia abilitato alla ricezione delle informazioni personale. Il client \"demo_postman\" non è abilitato a queste informazioni, per cui la chiamata restituirà sempre errore.</p>\n<hr />\n<p><strong>Bartolini VAS</strong></p>\n<p>È necessario passare anche un parametro <em>Bartolini</em> con il seguente formato:</p>\n<p>{</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"CodiceBolla\": \"CODICE_BOLLA\",\n    \"CodiceCliente\": \"CODICE_CLIENTE\",\n    \"CodiceTariffa\": \"CODICE_TARIFFA\",\n    \"FilialePartenza\": \"CODICE_FILIALE_PARTENZA\",\n    \"ServizioBolle\": \"CODICE_SERVIZIO_BOLLE\",\n    \"ValorePeso\": \"VALORE_DEL_PESO\",\n    \"DataSpedizione\": \"DATA_ESEMPIO_2021-01-01\",\n    \"Formato\": \"FORMATO_VEDI_NOTE\",\n    \"Network\": \"NETWORK_VEDI_NOTE\",\n    \"NotifyType\": \"SEGUI_NOTE_BARTOLINI\",\n    \"ExportContent\": \"VEDI NOTE\"\n\n</code></pre><p>}</p>\n<ul>\n<li><strong>ValorePeso</strong> indica il peso che si vuole che venga esportato, qualora non possa essere determinato da MarketRock</li>\n<li><strong>DataSpedizione</strong> indica la data che si vuole che venga indicata (es. 2021-01-01, formato<br />  YYYY-MM-DD)</li>\n<li><strong>Formato</strong> a scelta fra DAT (specificiare valore 0) oppure TXT (specificare valore 1)</li>\n<li><strong>Network</strong> a scelta fra DPD (specificare valore 0), EUROEXPRESS (valore 1), FEDEX (valore 2)</li>\n<li><strong>ExportContent</strong> a scelta fra \"true\" o \"false\" per far esportare il contenuto del pacco nel file</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["Orders","Export"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"36447a0f-4340-40a4-921e-38169ab05db2"},{"name":"Invoice","id":"45f4a609-a532-4a1b-b37e-32ab49f22452","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"InvoiceId\": \"{{InvoiceNumber}}\",\r\n    \"InvoiceDate\": \"{{InvoiceDate}}\",\r\n    \"InvoiceURL\": \"{{InvoiceURL}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/Orders/{{idOrder}}/invoices","description":"<p>Carica una fattura / ricevuta, associandola ad un ordine.</p>\n<p>Nel caso di ordine Amazon, questa operazione scatena l'upload su Seller Central.</p>\n<p>I parametri della richiesta sono:</p>\n<ul>\n<li><strong>InvoiceId</strong>: numero <strong>univoco</strong> della fattura. Non è ammesso caricare fatture / ricevute con numero uguale.</li>\n<li><strong>InvoiceDate</strong>: data di emissione della fattura (es. 2023-03-10)</li>\n<li><strong>InvoiceURL</strong>: URL da cui recuperare il PDF della fattura. L'URL deve essere pubblicamente raggiungibile (se non ospitato su eDock). Può essere caricato tramite un <a href=\"https://documenter.getpostman.com/view/235984/edock/719ZDC8#577f4f47-2022-4ac6-be41-8bc08e46e25d\">upload di file privato di eDock</a></li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["Orders","{{idOrder}}","invoices"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"67f993b4-3191-491d-a28d-13c3a82e8c93","name":"Invoice","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"InvoiceId\": \"001/B\",\r\n    \"InvoiceDate\": \"2023-03-10\",\r\n    \"InvoiceURL\": \"https://files.edock.it/private/users/2642/private/file-name.pdf\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/Orders/1352/invoices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 10 Mar 2023 09:45:39 GMT"},{"key":"Content-Length","value":"527"}],"cookie":[],"responseTime":null,"body":"{\n    \"idOrder\": 1352,\n    \"InvoiceId\": \"001/B\",\n    \"InvoiceDate\": \"2023-03-10T00:00:00Z\",\n    \"InvoiceURL\": \"https://files.edock.it/private/users/2642/private/file-name.pdf\",\n    \"SellerTaxRegistrationNumber\": null,\n    \"SellerTaxRegistrationJurisdiction\": null,\n    \"BuyerTaxRegistrationNumber\": null,\n    \"BuyerTaxRegistrationJurisdiction\": null,\n    \"BuyerElectronicInvoiceAccountId\": null,\n    \"IsRefund\": false,\n    \"ExternalShippingId\": \"\",\n    \"IsExportOutsideEU\": false,\n    \"IsAmazonInvoiced\": false,\n    \"ShipFromCountryId\": null,\n    \"ShipToCountryId\": null,\n    \"IsVatCollectedByMarketplace\": false,\n    \"Rows\": []\n}"}],"_postman_id":"45f4a609-a532-4a1b-b37e-32ab49f22452"},{"name":"Order Statuses","id":"adf5f9f7-21fd-0d7b-7634-060d481b5f44","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{endpoint}}/OrderStatus/All","description":"<p>Recupera gli stati degli ordini.</p>\n<p>Gli stati non sono altro che cartelle in cui gli ordini possono essere<br />inseriti. Un ordine deve necessariamente stare in uno stato.</p>\n<p>MarketRock contiene 4 stati predefiniti:</p>\n<ul>\n<li><strong>Acquistato</strong>: lo stato in cui vengono creati tutti gli ordini nuovi</li>\n<li><strong>Ricevuto</strong></li>\n<li><strong>Spedito</strong>: quando un ordine viene spostato in questo stato, viene segnalata la spedizione al marketplace da cui l'ordine proviene.</li>\n<li><strong>Chiuso</strong></li>\n</ul>\n<p>Segnaliamo che \"Pagato\" non è uno stato su MarketRock,<br />poiché un ordine pagato può trovarsi in qualunque stato (ad esempio,<br />un ordine spedito in contrassegno, non è ancora pagato, eppure è spedito).<br />Per recuperare i soli ordini pagati è necessario valorizzare il filtro \"Paid\"<br />impostando il valore a \"true\" (vedi chiamata \"Get all (with filters)\").</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["OrderStatus","All"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"adf5f9f7-21fd-0d7b-7634-060d481b5f44"},{"name":"Generate registrations","id":"270f0509-43da-42b1-9f38-67fecc1f9bc7","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"idOrders\": [{{idOrder}}],\r\n    \"FiscalProvider\": \r\n    {\r\n        \"Name\": {{FiscalProviderName}},\r\n        \"Parameters\": {{FiscalProviderParamters}}\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/orders/bulk/taxes/registrations","description":"<p>Invia al provider di fatturazione configurato sull'account MarketRock la richiesta di generazione dei corrispettivi per gli ordini selezionati (passati nell'array <strong>idOrders</strong>).</p>\n<p>Si può opzionalmente richiedere la generazione dei corrispettivi ad un provider di fatturazione specifico, valorizzando l'oggetto \"FiscalProvider\". Tale oggetto è composto dalle seguenti proprietà:</p>\n<ul>\n<li><p><strong>Name</strong>: nome del provider di fatturazione</p>\n</li>\n<li><p><strong>Parameters</strong>: array di parametri per la personalizzazione della generazione dei documenti</p>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["orders","bulk","taxes","registrations"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"17170023-3269-42fd-b831-a731ec6e509c","name":"Generate registrations","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"idOrders\": [\r\n        1497\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/orders/bulk/taxes/registrations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"170"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 15 Dec 2023 17:11:05 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"ProviderName\": \"Fatture in Cloud\",\n    \"idOrders\": [\n        1497\n    ]\n}"},{"id":"777a3198-168e-439d-a19c-2dc4aee1caff","name":"Generate registrations with a specific provider","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"idOrders\": [\r\n        1515\r\n    ],\r\n    \"FiscalProvider\": \r\n    {\r\n        \"Name\": \"Fatture in Cloud\",\r\n        \"Parameters\": [\r\n            { \"Name\": \"Numeration\", \"Value\": \"/A\" },\r\n            { \"Name\": \"PaymentAccountId\", \"Value\": 1189654 },\r\n            { \"Name\": \"RevenueCenter\", \"Value\": \"Amazon\" }\r\n        ]\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/orders/bulk/taxes/registrations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"170"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 15 Dec 2023 17:11:05 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"ProviderName\": \"Fatture in Cloud\",\n    \"idOrders\": [\n        1497\n    ]\n}"}],"_postman_id":"270f0509-43da-42b1-9f38-67fecc1f9bc7"},{"name":"Generate tax documents","id":"943f0372-ab4b-44f4-ba32-2bdcedfa9e81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"idOrders\": [1497],\r\n    \"DocumentType\": \"invoice\",\r\n    \"FiscalProvider\": \r\n    {\r\n        \"Name\": {{FiscalProviderName}},\r\n        \"Parameters\": {{FiscalProviderParamters}}\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/orders/bulk/taxes/documents","description":"<p>Invia al provider di fatturazione configurato sull'account MarketRock la richiesta di generazione di documenti fiscali per gli ordini selezionati (passati nell'array <strong>idOrders</strong>).</p>\n<p>I documenti richiedibili sono:</p>\n<ul>\n<li><p><strong>invoice</strong>: fatture</p>\n</li>\n<li><p><strong>receipt</strong>: ricevute</p>\n</li>\n<li><p><strong>delivery_note</strong>: DDT (documenti di traporto)</p>\n</li>\n</ul>\n<p>Si può opzionalmente richiedere la generazione dei documenti ad un provider di fatturazione specifico, valorizzando l'oggetto \"FiscalProvider\". Tale oggetto è composto dalle seguenti proprietà:</p>\n<ul>\n<li><p><strong>Name</strong>: nome del provider di fatturazione</p>\n</li>\n<li><p><strong>Parameters</strong>: array di parametri per la personalizzazione della generazione dei documenti</p>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["orders","bulk","taxes","documents"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"bf965b51-dc7e-4f84-abea-aebaf05c07cc","name":"Generate tax Documents","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"idOrders\": [1497],\r\n    \"DocumentType\": \"invoice\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/orders/bulk/taxes/documents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"170"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 15 Dec 2023 17:11:49 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"ProviderName\": \"Fatture in Cloud\",\n    \"idOrders\": [\n        1497\n    ]\n}"},{"id":"1e07bd4a-3ab6-42a5-b126-3ea3c7fdd8c3","name":"Generate tax documents with a specific provider","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"idOrders\": [1497],\r\n    \"DocumentType\": \"invoice\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/orders/bulk/taxes/documents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"170"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 15 Dec 2023 17:11:49 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"ProviderName\": \"Fatture in Cloud\",\n    \"idOrders\": [\n        1497\n    ]\n}"}],"_postman_id":"943f0372-ab4b-44f4-ba32-2bdcedfa9e81"},{"name":"Cancel","id":"0a960136-8d25-45e4-b853-80bcf6ccd755","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CancelReason\": {{Cancel reason message}},\r\n    \"UpdateStorage\": {{UpdateStorage}}\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/Orders/{{idOrder}}/cancel","description":"<p>Sets the order as canceled. If buyer-initiated cancellation is supported on the source marketplace, MarketRock will submit the cancellation request to the marketplace as well. You can understand if the marketplace supports buyer-initiated cancellation, performing a <em>Marketplaces &gt; Orders &gt; IsCancellationEnabled</em> call.</p>\n<p>In order to cancel an order you can provide:</p>\n<ul>\n<li><p>a <strong>CancelReason</strong> parametrer. Some marketplaces will ask for particular value for this message. You can perform a <em>Marketplaces &gt; Orders &gt; Get Cancellation Reasons</em> call to retrieve supported values. If no values is returned, then this field can be considered as free text.</p>\n</li>\n<li><p>an <strong>UpdateStorage</strong> parameters. If set to true, storage will be updated reverting unloaded quantities previously reduced by the order</p>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["Orders","{{idOrder}}","cancel"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0a960136-8d25-45e4-b853-80bcf6ccd755"}],"id":"de1ee61f-986d-8c25-7fd5-5214dfc38e5e","_postman_id":"de1ee61f-986d-8c25-7fd5-5214dfc38e5e","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Shipments","item":[{"name":"Configs","item":[{"name":"Get Shipping Configurations","id":"66467a18-c1fb-4bd2-af6c-7e0bf63938e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/shipments/configs","description":"<p>Allows you to retrieve all shipping configurations currently active on your MarketRock account.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["shipments","configs"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"c2ffe851-5974-429a-967a-9586a79befa1","name":"Get Shipping Configurations","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/shipments/configs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 25 Feb 2022 14:37:23 GMT"},{"key":"Content-Length","value":"83"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"idShippingConfiguration\": 2,\n        \"idCarrier\": 1,\n        \"CarrierName\": \"BRT\",\n        \"Name\": \"BRT Test\"\n    }\n]"}],"_postman_id":"66467a18-c1fb-4bd2-af6c-7e0bf63938e5"},{"name":"Get Shipping Configuration","id":"a2384d2d-20bf-44e1-bac8-c78e2701a038","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/shipments/configs/{{idConfiguration}}","description":"<p>Allows you to retrieve a particular shipping configuration given its id.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["shipments","configs","{{idConfiguration}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"a11bfcf2-eb70-477a-87e2-fbf5f68a1fb1","name":"Get Shipping Configuration","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/shipments/configs/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 25 Feb 2022 14:37:41 GMT"},{"key":"Content-Length","value":"81"}],"cookie":[],"responseTime":null,"body":"{\n    \"idShippingConfiguration\": 2,\n    \"idCarrier\": 1,\n    \"CarrierName\": \"BRT\",\n    \"Name\": \"BRT Test\"\n}"}],"_postman_id":"a2384d2d-20bf-44e1-bac8-c78e2701a038"},{"name":"Get Shipping Configuration Parameters","id":"271e9b82-f0b5-4276-bcc2-9299f5f3e812","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/shipments/configs/{{idConfiguration}}/parameters","description":"<p>Allows you to retrieve a particular shipping configuration's parameters given its id.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["shipments","configs","{{idConfiguration}}","parameters"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"9bf51eda-23d4-4ca7-a941-f6b696702994","name":"Get Shipping Configuration Parameters","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/shipments/configs/{{idConfiguration}}/parameters"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"354"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Date","value":"Fri, 13 Feb 2026 08:20:48 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"Parameters\": [\n        {\n            \"Name\": \"AccountNumber\",\n            \"Value\": \"106648942\"\n        },\n        {\n            \"Name\": \"SandboxMode\",\n            \"Value\": \"true\"\n        },\n        {\n            \"Name\": \"ServiceType\",\n            \"Value\": \"P\"\n        },\n        {\n            \"Name\": \"LabelOutputFormat\",\n            \"Value\": \"pdf\"\n        },\n        {\n            \"Name\": \"LabelTemplate\",\n            \"Value\": \"ECOM26_A6_002\"\n        },\n        {\n            \"Name\": \"ContentTemplate\",\n            \"Value\": \"2\"\n        },\n        {\n            \"Name\": \"ReferenceTemplate\",\n            \"Value\": \"3\"\n        },\n        {\n            \"Name\": \"EnableShippingImport\",\n            \"Value\": \"false\"\n        },\n        {\n            \"Name\": \"FTPHost\",\n            \"Value\": \"ftp3.dhl.com\"\n        },\n        {\n            \"Name\": \"FTPPort\",\n            \"Value\": \"22\"\n        },\n        {\n            \"Name\": \"FTPInFolder\",\n            \"Value\": \"in/work\"\n        },\n        {\n            \"Name\": \"FTPOutFolder\",\n            \"Value\": \"out/work\"\n        }\n    ]\n}"}],"_postman_id":"271e9b82-f0b5-4276-bcc2-9299f5f3e812"},{"name":"Verify Shipping Configuration","id":"d0e8c873-20c8-4b51-bf53-8a669bf7f18e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{endpoint}}/shipments/configs/verify","description":"<p>Verify if the shipping configuration you are trying to define is correct and complete.</p>\n<p>Call this endpoint before inserting a configuration in order to be assured that it is valid and usable.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["shipments","configs","verify"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"55301032-1c73-47b7-866c-06142682994d","name":"Verify Shipping Configuration","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"Config\": {\r\n        \"idCarrier\": 3,\r\n        \"Name\": \"TEST Configuration\",\r\n        \"Deactivated\": false\r\n    },\r\n    \"Parameters\": {\r\n        \"Parameters\": [\r\n            {\r\n                \"Name\": \"BranchCode\",\r\n                \"Value\": \"XX\"\r\n            },\r\n            {\r\n                \"Name\": \"CustomerCode\",\r\n                \"Value\": \"0000\"\r\n            },\r\n            {\r\n                \"Name\": \"CustomerPassword\",\r\n                \"Value\": \"XXXXXX\"\r\n            },\r\n            {\r\n                \"Name\": \"ContractCode\",\r\n                \"Value\": \"0000\"\r\n            },\r\n            {\r\n                \"Name\": \"FreightType\",\r\n                \"Value\": \"F\"\r\n            },\r\n            {\r\n                \"Name\": \"PackageType\",\r\n                \"Value\": \"0\"\r\n            },\r\n            {\r\n                \"Name\": \"LabelType\",\r\n                \"Value\": \"PDF_A6\"\r\n            },\r\n            {\r\n                \"Name\": \"SendSMSNotifications\",\r\n                \"Value\": false\r\n            },\r\n            {\r\n                \"Name\": \"SendEmailNotifications\",\r\n                \"Value\": false\r\n            },\r\n            {\r\n                \"Name\": \"AppendMyEmail\",\r\n                \"Value\": false\r\n            },\r\n            {\r\n                \"Name\": \"LiveFeeSurcharge\",\r\n                \"Value\": \"0\"\r\n            }\r\n        ]\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/configs/verify"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"IsValid\": true,\n    \"Errors\": []\n}"}],"_postman_id":"d0e8c873-20c8-4b51-bf53-8a669bf7f18e"},{"name":"Insert Shipping Configuration","id":"769daef9-0f60-4728-9043-26ecc771a85e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{endpoint}}/shipments/configs","description":"<p>Insert a new shipping configuration</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["shipments","configs"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"31abf48d-5357-4bde-a1cc-04c235048410","name":"Insert Shipping Configuration","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"Config\": {\r\n        \"idCarrier\": 3,\r\n        \"Name\": \"TEST Configuration\",\r\n        \"Deactivated\": false\r\n    },\r\n    \"Parameters\": {\r\n        \"Parameters\": [\r\n            {\r\n                \"Name\": \"BranchCode\",\r\n                \"Value\": \"XX\"\r\n            },\r\n            {\r\n                \"Name\": \"CustomerCode\",\r\n                \"Value\": \"0000\"\r\n            },\r\n            {\r\n                \"Name\": \"CustomerPassword\",\r\n                \"Value\": \"XXXXXX\"\r\n            },\r\n            {\r\n                \"Name\": \"ContractCode\",\r\n                \"Value\": \"0000\"\r\n            },\r\n            {\r\n                \"Name\": \"FreightType\",\r\n                \"Value\": \"F\"\r\n            },\r\n            {\r\n                \"Name\": \"PackageType\",\r\n                \"Value\": \"0\"\r\n            },\r\n            {\r\n                \"Name\": \"LabelType\",\r\n                \"Value\": \"PDF_A6\"\r\n            },\r\n            {\r\n                \"Name\": \"SendSMSNotifications\",\r\n                \"Value\": false\r\n            },\r\n            {\r\n                \"Name\": \"SendEmailNotifications\",\r\n                \"Value\": false\r\n            },\r\n            {\r\n                \"Name\": \"AppendMyEmail\",\r\n                \"Value\": false\r\n            },\r\n            {\r\n                \"Name\": \"LiveFeeSurcharge\",\r\n                \"Value\": \"0\"\r\n            }\r\n        ]\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/configs"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"idShippingConfiguration\": 245,\n    \"idCarrier\": 3,\n    \"Name\": \"TEST Configuration\",\n    \"Deactivated\": false\n}"}],"_postman_id":"769daef9-0f60-4728-9043-26ecc771a85e"},{"name":"Update Shipping Configuration","id":"6d26a0d8-b3f4-4b7b-a556-84a14d99e0f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{endpoint}}/shipments/configs/{{idConfiguration}}","description":"<p>Modifies an existing shipping configuration</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["shipments","configs","{{idConfiguration}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"9dd9fe7c-39bc-4c6c-b4ec-79e65efc832b","name":"Update Shipping Configuration","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"Config\": {\r\n        \"idShippingConfiguration\": 245,\r\n        \"idCarrier\": 3,\r\n        \"Name\": \"TEST Configuration\",\r\n        \"Deactivated\": false\r\n    },\r\n    \"Parameters\": {\r\n        \"Parameters\": [\r\n            {\r\n                \"Name\": \"BranchCode\",\r\n                \"Value\": \"XX\"\r\n            },\r\n            {\r\n                \"Name\": \"CustomerCode\",\r\n                \"Value\": \"0000\"\r\n            },\r\n            {\r\n                \"Name\": \"CustomerPassword\",\r\n                \"Value\": \"XXXXXX\"\r\n            },\r\n            {\r\n                \"Name\": \"ContractCode\",\r\n                \"Value\": \"0000\"\r\n            },\r\n            {\r\n                \"Name\": \"FreightType\",\r\n                \"Value\": \"F\"\r\n            },\r\n            {\r\n                \"Name\": \"PackageType\",\r\n                \"Value\": \"0\"\r\n            },\r\n            {\r\n                \"Name\": \"LabelType\",\r\n                \"Value\": \"PDF_A6\"\r\n            },\r\n            {\r\n                \"Name\": \"SendSMSNotifications\",\r\n                \"Value\": false\r\n            },\r\n            {\r\n                \"Name\": \"SendEmailNotifications\",\r\n                \"Value\": false\r\n            },\r\n            {\r\n                \"Name\": \"AppendMyEmail\",\r\n                \"Value\": false\r\n            },\r\n            {\r\n                \"Name\": \"LiveFeeSurcharge\",\r\n                \"Value\": \"0\"\r\n            }\r\n        ]\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/configs/245"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"idShippingConfiguration\": 245,\n    \"idCarrier\": 3,\n    \"Name\": \"TEST Configuration\",\n    \"Deactivated\": false\n}"}],"_postman_id":"6d26a0d8-b3f4-4b7b-a556-84a14d99e0f1"}],"id":"20ddeb5e-1eca-4b42-b1cc-d87879373190","description":"<p>On your MarketRock account you can define different shipping configurations for the different supported couriers.</p>\n<p>Each shipping configuration is essentially a particular set of parameters, defined by the courier, which allow MarketRock to generate shipping labels and tracking codes.</p>\n<p>It is possible to define multiple shipping configurations for each courier, this to allow complex scenarios (i.e. multiple contracts for different regions).</p>\n","_postman_id":"20ddeb5e-1eca-4b42-b1cc-d87879373190","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Carriers","item":[{"name":"Get Carriers","id":"f1f18e41-9147-46df-bb80-9fe377bb2c8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/shipments/carriers","description":"<p>Allows you to retrieve the carriers currently supported by MarketRock for generating shipping labels.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["shipments","carriers"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"4532e1a6-c959-4a03-9bfa-a93b55f128b8","name":"Get Carriers","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/shipments/carriers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 25 Feb 2022 11:28:23 GMT"},{"key":"Content-Length","value":"60"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"idCarrier\": 1,\n        \"CarrierName\": \"BRT\",\n        \"AutomaticRates\": false\n    }\n]"}],"_postman_id":"f1f18e41-9147-46df-bb80-9fe377bb2c8e"},{"name":"Get Carrier","id":"4b0bc138-cd8c-49d2-a21c-8e7102370b1c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/shipments/carriers/{{idCarrier}}","description":"<p>Retrieve a carrier given his ID.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["shipments","carriers","{{idCarrier}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"d75f8f8a-49a1-436c-a359-c4321356bc68","name":"Get Carrier","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/shipments/carriers/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 25 Feb 2022 14:47:49 GMT"},{"key":"Content-Length","value":"58"}],"cookie":[],"responseTime":null,"body":"{\n    \"idCarrier\": 1,\n    \"CarrierName\": \"BRT\",\n    \"AutomaticRates\": false\n}"}],"_postman_id":"4b0bc138-cd8c-49d2-a21c-8e7102370b1c"},{"name":"Get Carrier Configs","id":"e3177055-a162-4643-b640-598f51591783","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/shipments/carriers/{{idCarrier}}/configs","description":"<p>Retrieves the configurations supported by a particular carrier.</p>\n<p>Each parameter includes several fields:</p>\n<ul>\n<li><p><strong>IsRequired</strong>: Indicates whether the parameter is required or not</p>\n</li>\n<li><p><strong>Overridable</strong>: Indicates whether the parameter can be passed in a shipping/return request.</p>\n</li>\n<li><p><strong>Name</strong>: Provides the name of the parameter</p>\n</li>\n<li><p><strong>DefaultValue</strong>: indicates the value that is used by eDock, if the parameter is not specified.</p>\n</li>\n<li><p><strong>Type</strong>: indicates the type of parameter, according to this list: 0 = string, 1 = integer, 2 = decimal number, 3 = password / key, 4 = list of values ​​of your choice, 5 = boolean (yes / no)</p>\n</li>\n<li><p><strong>Values</strong>: contains the allowed values, if the parameter is type 4 (list of values ​​of your choice)</p>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["shipments","carriers","{{idCarrier}}","configs"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"6b5a9e29-d8cd-433f-aeed-b7001a74ba4c","name":"Get Carrier Configs","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/shipments/carriers/1/configs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Thu, 03 Mar 2022 14:27:46 GMT"},{"key":"Content-Length","value":"1973"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"IsRequired\": true,\n        \"Overridable\": false,\n        \"Name\": \"Username\",\n        \"DefaultValue\": null,\n        \"Type\": 0,\n        \"Values\": null\n    },\n    {\n        \"IsRequired\": true,\n        \"Overridable\": false,\n        \"Name\": \"Password\",\n        \"DefaultValue\": null,\n        \"Type\": 3,\n        \"Values\": null\n    },\n    {\n        \"IsRequired\": true,\n        \"Overridable\": true,\n        \"Name\": \"SenderCustomerCode\",\n        \"DefaultValue\": null,\n        \"Type\": 0,\n        \"Values\": null\n    },\n    {\n        \"IsRequired\": true,\n        \"Overridable\": true,\n        \"Name\": \"DepartureDepot\",\n        \"DefaultValue\": null,\n        \"Type\": 0,\n        \"Values\": null\n    },\n    {\n        \"IsRequired\": true,\n        \"Overridable\": true,\n        \"Name\": \"Network\",\n        \"DefaultValue\": \" \",\n        \"Type\": 4,\n        \"Values\": [\n            {\n                \"Key\": \" \",\n                \"Value\": \"Italia\"\n            },\n            {\n                \"Key\": \"D\",\n                \"Value\": \"DPD\"\n            },\n            {\n                \"Key\": \"E\",\n                \"Value\": \"EuroExpress\"\n            },\n            {\n                \"Key\": \"S\",\n                \"Value\": \"Fedex\"\n            }\n        ]\n    },\n    {\n        \"IsRequired\": true,\n        \"Overridable\": true,\n        \"Name\": \"ServiceType\",\n        \"DefaultValue\": \" \",\n        \"Type\": 4,\n        \"Values\": [\n            {\n                \"Key\": \" \",\n                \"Value\": \"Servizio Standard\"\n            },\n            {\n                \"Key\": \"E\",\n                \"Value\": \"Servizio Priority\"\n            },\n            {\n                \"Key\": \"H\",\n                \"Value\": \"Servizio 10:30\"\n            },\n            {\n                \"Key\": \"D\",\n                \"Value\": \"Servizio Distribuzione\"\n            }\n        ]\n    },\n    {\n        \"IsRequired\": false,\n        \"Overridable\": true,\n        \"Name\": \"PricingConditionCode\",\n        \"DefaultValue\": null,\n        \"Type\": 0,\n        \"Values\": null\n    },\n    {\n        \"IsRequired\": true,\n        \"Overridable\": true,\n        \"Name\": \"DeliveryFreightTypeCode\",\n        \"DefaultValue\": \" \",\n        \"Type\": 4,\n        \"Values\": [\n            {\n                \"Key\": \"DAP\",\n                \"Value\": \"Porto franco\"\n            },\n            {\n                \"Key\": \"EXW\",\n                \"Value\": \"Porto assegnato\"\n            }\n        ]\n    },\n    {\n        \"IsRequired\": false,\n        \"Overridable\": true,\n        \"Name\": \"ParcelsHandlingCode\",\n        \"DefaultValue\": null,\n        \"Type\": 0,\n        \"Values\": null\n    },\n    {\n        \"IsRequired\": false,\n        \"Overridable\": true,\n        \"Name\": \"ParticularitiesDeliveryManagementCode\",\n        \"DefaultValue\": null,\n        \"Type\": 0,\n        \"Values\": null\n    },\n    {\n        \"IsRequired\": false,\n        \"Overridable\": true,\n        \"Name\": \"IsAlertRequired\",\n        \"DefaultValue\": null,\n        \"Type\": 5,\n        \"Values\": null\n    },\n    {\n        \"IsRequired\": true,\n        \"Overridable\": true,\n        \"Name\": \"LabelOutputFormat\",\n        \"DefaultValue\": \"PDF\",\n        \"Type\": 4,\n        \"Values\": [\n            {\n                \"Key\": \"PDF\",\n                \"Value\": \"PDF\"\n            },\n            {\n                \"Key\": \"ZPL\",\n                \"Value\": \"ZPL\"\n            }\n        ]\n    },\n    {\n        \"IsRequired\": false,\n        \"Overridable\": true,\n        \"Name\": \"IsLabelDP5\",\n        \"DefaultValue\": null,\n        \"Type\": 5,\n        \"Values\": null\n    },\n    {\n        \"IsRequired\": true,\n        \"Overridable\": false,\n        \"Name\": \"AutoConfirm\",\n        \"DefaultValue\": null,\n        \"Type\": 4,\n        \"Values\": [\n            {\n                \"Key\": \"1\",\n                \"Value\": \"Automatica\"\n            },\n            {\n                \"Key\": \"0\",\n                \"Value\": \"Manuale\"\n            }\n        ]\n    }\n]"}],"_postman_id":"e3177055-a162-4643-b640-598f51591783"}],"id":"3bd408db-d1bf-4f85-b4bf-70d28f47830e","description":"<p>These calls allow you to retrieve information about the carriers available on MarketRock and the configuration information that that carrier exposes for configuration.</p>\n","_postman_id":"3bd408db-d1bf-4f85-b4bf-70d28f47830e","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Shipments","item":[{"name":"Ship","id":"ee35b4aa-e856-432a-a550-9270717847e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"ShippingServiceConfigurationId\": 2,\r\n    \"From\": \r\n    {\r\n        \"Name\": \"Marco Tibaldeschi\",\r\n        \"Company\": \"DBN Communication srl\",\r\n        \"Address1\": \"Corso Acqui, 382\",\r\n        \"City\": \"Alessandria\",\r\n        \"ZipCode\": \"15121\",\r\n        \"County\": \"AL\",\r\n        \"CountryISOCode\": \"IT\",\r\n        \"Telephone1\": \"+390131251385\"\r\n    },\r\n    \"To\": {\r\n        \"Name\": \"Marco Tibaldeschi\",\r\n        \"Company\": \"DBN Communication srl\",\r\n        \"Address1\": \"Corso Acqui, 382\",\r\n        \"City\": \"Alessandria\",\r\n        \"ZipCode\": \"15121\",\r\n        \"County\": \"AL\",\r\n        \"CountryISOCode\": \"IT\",\r\n        \"Telephone1\": \"+390131251385\",\r\n        \"Email\": \"developer@edock.it\"\r\n    },\r\n    \"Packages\": \r\n    [\r\n        {\r\n            \"SizeUoM\": \"cm\",\r\n            \"Length\": 10,\r\n            \"Width\": 10,\r\n            \"Height\": 5,\r\n            \"Weight\": 1.5\r\n        }\r\n    ],\r\n    \"CarrierParameters\": [\r\n        { \"Name\": \"ProductCode\", \"Value\": \"I\" },\r\n        { \"Name\": \"LocalProductCode\", \"Value\": \"I\" }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/ship","description":"<p>Submit to MarketRock the request to generate a shipping label.</p>\n<p>The body of the request includes the passing of the following parameters:</p>\n<ul>\n<li><p><strong>ShippingServiceConfigurationId</strong>: ID of the shipping configuration, as defined on the MarketRock account.</p>\n</li>\n<li><p><strong>idOrder</strong>: MarketRock order ID that this shipment is associated with (optional).</p>\n</li>\n<li><p><strong>From</strong>: address of origin of the shipment (optional).</p>\n</li>\n<li><p><strong>To</strong>: destination address of the goods (required, unless a MarketRock idOrder is specified, from which the address is taken)</p>\n</li>\n<li><p><strong>Packages</strong>: array of packages to request shipping. For each package it is possible to specify its dimensions (<strong>Width</strong>, <strong>Length</strong> and <strong>Height</strong> parameters) and weight. The units of measurement must be specified, respectively, in the <strong>SizeUoM</strong> (unit of measurement of length) and <strong>WeighUoM</strong> (unit of measurement of weight) fields. If not specified, the units of measurement considered are cm for lengths and kg for weight.</p>\n</li>\n</ul>\n<p>Shipping will be requested to the shipping address associated with the MarketRock order. If you need to ship to a different address, you can pass a \"To\" parameter containing the shipping address (see \"Ship order to a different address\").</p>\n<p>If you need to pass different parameters into the request that MarketRock will make to the courier (which overwrite those of the configuration used), it is possible to use the \"CarrierParameters\" parameter.</p>\n<p><strong>Attention</strong>: remember that the passable parameters are those that have the \"Overridable\" flag set to true (see the \"Couriers &gt; Get Carrier Configs\" call)</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["shipments","ship"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"fe6d4d64-73ed-44c8-b736-acf2f0dc22a2","name":"Ship to a different address","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"ShippingServiceConfigurationId\": 2,\r\n    \"From\": \r\n    {\r\n        \"Name\": \"Marco Tibaldeschi\",\r\n        \"Company\": \"DBN Communication srl\",\r\n        \"Address1\": \"Corso Acqui, 382\",\r\n        \"City\": \"Alessandria\",\r\n        \"ZipCode\": \"15121\",\r\n        \"County\": \"AL\",\r\n        \"CountryISOCode\": \"IT\",\r\n        \"Telephone1\": \"+390131251385\"\r\n    },\r\n    \"To\": {\r\n        \"Name\": \"Marco Tibaldeschi\",\r\n        \"Company\": \"DBN Communication srl\",\r\n        \"Address1\": \"Corso Acqui, 382\",\r\n        \"City\": \"Alessandria\",\r\n        \"ZipCode\": \"15121\",\r\n        \"County\": \"AL\",\r\n        \"CountryISOCode\": \"IT\",\r\n        \"Telephone1\": \"+390131251385\",\r\n        \"Email\": \"developer@edock.it\"\r\n    },\r\n    \"Packages\": \r\n    [\r\n        {\r\n            \"SizeUoM\": \"cm\",\r\n            \"Length\": 10,\r\n            \"Width\": 10,\r\n            \"Height\": 5,\r\n            \"Weight\": 1.5\r\n        }\r\n    ],\r\n    \"CarrierParameters\": [\r\n        { \"Name\": \"ProductCode\", \"Value\": \"I\" },\r\n        { \"Name\": \"LocalProductCode\", \"Value\": \"I\" }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/ship"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 15 Mar 2022 16:02:57 GMT"},{"key":"Content-Length","value":"622"}],"cookie":[],"responseTime":null,"body":"{\n    \"idShipping\": 249,\n    \"CreatedOn\": \"2022-03-15T16:02:55.467Z\",\n    \"UpdatedOn\": null,\n    \"Status\": 1,\n    \"CarrierResponse\": {\n        \"Succesful\": true,\n        \"Confirmed\": false,\n        \"CarrierShippingNumber\": \"102039160006354\",\n        \"ResponseMessage\": \"BRT has received shipment information properly\",\n        \"Error\": {\n            \"Code\": null,\n            \"Message\": null\n        },\n        \"Warning\": {\n            \"Code\": null,\n            \"Message\": null\n        },\n        \"Labels\": [\n            {\n                \"LabelFormat\": 0,\n                \"LabelType\": 0,\n                \"TrackingCode\": \"102039160006354\",\n                \"TrackingURL\": null,\n                \"LabelURL\": \"https://files.edock.it/users/2642/private/shipment/labels/2022/1/102039160006354.pdf\"\n            }\n        ],\n        \"AdditionalParameters\": [\n            {\n                \"Name\": \"ArrivalDepot\",\n                \"Value\": \"039\"\n            },\n            {\n                \"Name\": \"ArrivalTerminal\",\n                \"Value\": \"166\"\n            }\n        ]\n    }\n}"},{"id":"7c9ed6f2-9221-44d7-911d-fe0769f4f512","name":"Ship a MarketRock order","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"ShippingServiceConfigurationId\": 2,\r\n    \"idOrder\": 391,\r\n    \"Packages\": \r\n    [\r\n        {\r\n            \"SizeUoM\": \"cm\",\r\n            \"Length\": 10,\r\n            \"Width\": 10,\r\n            \"Height\": 5,\r\n            \"Weight\": 1.5\r\n        }\r\n    ],\r\n    \"CarrierParameters\": [\r\n        { \"Name\": \"ProductCode\", \"Value\": \"I\" },\r\n        { \"Name\": \"LocalProductCode\", \"Value\": \"I\" }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/ship"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 15 Mar 2022 16:07:42 GMT"},{"key":"Content-Length","value":"622"}],"cookie":[],"responseTime":null,"body":"{\n    \"idShipping\": 253,\n    \"CreatedOn\": \"2022-03-15T16:07:34.357Z\",\n    \"UpdatedOn\": null,\n    \"Status\": 1,\n    \"CarrierResponse\": {\n        \"Succesful\": true,\n        \"Confirmed\": false,\n        \"CarrierShippingNumber\": \"102039160006355\",\n        \"ResponseMessage\": \"BRT has received shipment information properly\",\n        \"Error\": {\n            \"Code\": null,\n            \"Message\": null\n        },\n        \"Warning\": {\n            \"Code\": null,\n            \"Message\": null\n        },\n        \"Labels\": [\n            {\n                \"LabelFormat\": 0,\n                \"LabelType\": 0,\n                \"TrackingCode\": \"102039160006355\",\n                \"TrackingURL\": null,\n                \"LabelURL\": \"https://files.edock.it/users/2642/private/shipment/labels/2022/1/102039160006355.pdf\"\n            }\n        ],\n        \"AdditionalParameters\": [\n            {\n                \"Name\": \"ArrivalDepot\",\n                \"Value\": \"039\"\n            },\n            {\n                \"Name\": \"ArrivalTerminal\",\n                \"Value\": \"166\"\n            }\n        ]\n    }\n}"},{"id":"74d28b75-b333-420d-8449-599f2db98ce8","name":"Ship with COD","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"ShippingServiceConfigurationId\": 2,\r\n    \"From\": \r\n    {\r\n        \"Name\": \"Marco Tibaldeschi\",\r\n        \"Company\": \"DBN Communication srl\",\r\n        \"Address1\": \"Corso Acqui, 382\",\r\n        \"City\": \"Alessandria\",\r\n        \"ZipCode\": \"15121\",\r\n        \"County\": \"AL\",\r\n        \"CountryISOCode\": \"IT\",\r\n        \"Telephone1\": \"+390131251385\"\r\n    },\r\n    \"To\": {\r\n        \"Name\": \"Marco Tibaldeschi\",\r\n        \"Company\": \"DBN Communication srl\",\r\n        \"Address1\": \"Corso Acqui, 382\",\r\n        \"City\": \"Alessandria\",\r\n        \"ZipCode\": \"15121\",\r\n        \"County\": \"AL\",\r\n        \"CountryISOCode\": \"IT\",\r\n        \"Telephone1\": \"+390131251385\",\r\n        \"Email\": \"developer@edock.it\"\r\n    },\r\n    \"CODValue\": 50,         //Cash on delivery amount\r\n    \"CODCurrency\": \"EUR\",   //Cash on delivery currency\r\n    \"CODType\": 3,           //0 = Cash, 1 = Cashier's check, 2 = Check, 3 = Any\r\n    \"Packages\": \r\n    [\r\n        {\r\n            \"SizeUoM\": \"cm\",\r\n            \"Length\": 10,\r\n            \"Width\": 10,\r\n            \"Height\": 5,\r\n            \"Weight\": 1.5\r\n        }\r\n    ],\r\n    \"CarrierParameters\": [\r\n        { \"Name\": \"ProductCode\", \"Value\": \"I\" },\r\n        { \"Name\": \"LocalProductCode\", \"Value\": \"I\" }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/ship"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 15 Mar 2022 16:02:57 GMT"},{"key":"Content-Length","value":"622"}],"cookie":[],"responseTime":null,"body":"{\n    \"idShipping\": 401081,\n    \"CreatedOn\": \"2024-05-31T10:01:08.157Z\",\n    \"UpdatedOn\": null,\n    \"Status\": 2,\n    \"CarrierResponse\": {\n        \"Succesful\": true,\n        \"Confirmed\": true,\n        \"CarrierShippingNumber\": \"102039160016275\",\n        \"ResponseMessage\": \"BRT has received shipment information properly\",\n        \"Error\": {\n            \"Code\": null,\n            \"Message\": null\n        },\n        \"Warning\": {\n            \"Code\": null,\n            \"Message\": null\n        },\n        \"Labels\": [\n            {\n                \"LabelFormat\": 0,\n                \"LabelType\": 0,\n                \"TrackingCode\": \"102039160016275\",\n                \"TrackingURL\": null,\n                \"LabelURL\": \"https://files.edock.it/users/2642/private/shipment/labels/2024/1/102039160016275.pdf\"\n            }\n        ],\n        \"AdditionalParameters\": [\n            {\n                \"Name\": \"ArrivalDepot\",\n                \"Value\": \"039\"\n            },\n            {\n                \"Name\": \"ArrivalTerminal\",\n                \"Value\": \"166\"\n            },\n            {\n                \"Name\": \"NumericShippingReference\",\n                \"Value\": \"401081\"\n            },\n            {\n                \"Name\": \"AlphanumericShippingReference\",\n                \"Value\": null\n            },\n            {\n                \"Name\": \"ParcelId\",\n                \"Value\": \"102039160016275399\"\n            }\n        ]\n    }\n}"},{"id":"5f779279-3df4-4d37-b766-da750deadf72","name":"Ship with insurance","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"ShippingServiceConfigurationId\": 2,\r\n    \"From\": \r\n    {\r\n        \"Name\": \"Marco Tibaldeschi\",\r\n        \"Company\": \"DBN Communication srl\",\r\n        \"Address1\": \"Corso Acqui, 382\",\r\n        \"City\": \"Alessandria\",\r\n        \"ZipCode\": \"15121\",\r\n        \"County\": \"AL\",\r\n        \"CountryISOCode\": \"IT\",\r\n        \"Telephone1\": \"+390131251385\"\r\n    },\r\n    \"To\": {\r\n        \"Name\": \"Marco Tibaldeschi\",\r\n        \"Company\": \"DBN Communication srl\",\r\n        \"Address1\": \"Corso Acqui, 382\",\r\n        \"City\": \"Alessandria\",\r\n        \"ZipCode\": \"15121\",\r\n        \"County\": \"AL\",\r\n        \"CountryISOCode\": \"IT\",\r\n        \"Telephone1\": \"+390131251385\",\r\n        \"Email\": \"developer@edock.it\"\r\n    },\r\n    \"InsuredValue\": 50,         //Insured value\r\n    \"InsuredCurrency\": \"EUR\",   //Insured currency\r\n    \"Packages\": \r\n    [\r\n        {\r\n            \"SizeUoM\": \"cm\",\r\n            \"Length\": 10,\r\n            \"Width\": 10,\r\n            \"Height\": 5,\r\n            \"Weight\": 1.5\r\n        }\r\n    ],\r\n    \"CarrierParameters\": [\r\n        { \"Name\": \"ProductCode\", \"Value\": \"I\" },\r\n        { \"Name\": \"LocalProductCode\", \"Value\": \"I\" }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/ship"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 15 Mar 2022 16:02:57 GMT"},{"key":"Content-Length","value":"622"}],"cookie":[],"responseTime":null,"body":"{\n    \"idShipping\": 401081,\n    \"CreatedOn\": \"2024-05-31T10:01:08.157Z\",\n    \"UpdatedOn\": null,\n    \"Status\": 2,\n    \"CarrierResponse\": {\n        \"Succesful\": true,\n        \"Confirmed\": true,\n        \"CarrierShippingNumber\": \"102039160016275\",\n        \"ResponseMessage\": \"BRT has received shipment information properly\",\n        \"Error\": {\n            \"Code\": null,\n            \"Message\": null\n        },\n        \"Warning\": {\n            \"Code\": null,\n            \"Message\": null\n        },\n        \"Labels\": [\n            {\n                \"LabelFormat\": 0,\n                \"LabelType\": 0,\n                \"TrackingCode\": \"102039160016275\",\n                \"TrackingURL\": null,\n                \"LabelURL\": \"https://files.edock.it/users/2642/private/shipment/labels/2024/1/102039160016275.pdf\"\n            }\n        ],\n        \"AdditionalParameters\": [\n            {\n                \"Name\": \"ArrivalDepot\",\n                \"Value\": \"039\"\n            },\n            {\n                \"Name\": \"ArrivalTerminal\",\n                \"Value\": \"166\"\n            },\n            {\n                \"Name\": \"NumericShippingReference\",\n                \"Value\": \"401081\"\n            },\n            {\n                \"Name\": \"AlphanumericShippingReference\",\n                \"Value\": null\n            },\n            {\n                \"Name\": \"ParcelId\",\n                \"Value\": \"102039160016275399\"\n            }\n        ]\n    }\n}"},{"id":"ef545c94-d7d1-4b97-85de-4683c99b0366","name":"Ship to PUDO","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"ShippingServiceConfigurationId\": 2,\r\n    \"From\": \r\n    {\r\n        \"Name\": \"Marco Tibaldeschi\",\r\n        \"Company\": \"DBN Communication srl\",\r\n        \"Address1\": \"Corso Acqui, 382\",\r\n        \"City\": \"Alessandria\",\r\n        \"ZipCode\": \"15121\",\r\n        \"County\": \"AL\",\r\n        \"CountryISOCode\": \"IT\",\r\n        \"Telephone1\": \"+390131251385\"\r\n    },\r\n    \"To\": {\r\n        \"Name\": \"Marco Tibaldeschi\",\r\n        \"Company\": \"DBN Communication srl\",\r\n        \"Address1\": \"Corso Acqui, 382\",\r\n        \"City\": \"Alessandria\",\r\n        \"ZipCode\": \"15121\",\r\n        \"County\": \"AL\",\r\n        \"CountryISOCode\": \"IT\",\r\n        \"Telephone1\": \"+390131251385\",\r\n        \"Email\": \"developer@edock.it\"\r\n    },\r\n    \"Packages\": \r\n    [\r\n        {\r\n            \"SizeUoM\": \"cm\",\r\n            \"Length\": 10,\r\n            \"Width\": 10,\r\n            \"Height\": 5,\r\n            \"Weight\": 1.5\r\n        }\r\n    ],\r\n    \"Pudo\": {\r\n        \"Enabled\": true,\r\n        \"PudoId\": \"IT23316\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/ship"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 15 Mar 2022 16:02:57 GMT"},{"key":"Content-Length","value":"622"}],"cookie":[],"responseTime":null,"body":"{\n    \"idShipping\": 249,\n    \"CreatedOn\": \"2022-03-15T16:02:55.467Z\",\n    \"UpdatedOn\": null,\n    \"Status\": 1,\n    \"CarrierResponse\": {\n        \"Succesful\": true,\n        \"Confirmed\": false,\n        \"CarrierShippingNumber\": \"102039160006354\",\n        \"ResponseMessage\": \"BRT has received shipment information properly\",\n        \"Error\": {\n            \"Code\": null,\n            \"Message\": null\n        },\n        \"Warning\": {\n            \"Code\": null,\n            \"Message\": null\n        },\n        \"Labels\": [\n            {\n                \"LabelFormat\": 0,\n                \"LabelType\": 0,\n                \"TrackingCode\": \"102039160006354\",\n                \"TrackingURL\": null,\n                \"LabelURL\": \"https://files.edock.it/users/2642/private/shipment/labels/2022/1/102039160006354.pdf\"\n            }\n        ],\n        \"AdditionalParameters\": [\n            {\n                \"Name\": \"ArrivalDepot\",\n                \"Value\": \"039\"\n            },\n            {\n                \"Name\": \"ArrivalTerminal\",\n                \"Value\": \"166\"\n            }\n        ]\n    }\n}"},{"id":"d40badd8-17d2-4e61-b39e-2511248e2202","name":"Ship with ETD","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"ShippingServiceConfigurationId\": 2,\r\n    \"From\": {\r\n        \"Name\": \"Marco Tibaldeschi\",\r\n        \"Company\": \"DBN Communication srl\",\r\n        \"Address1\": \"Corso Acqui, 382\",\r\n        \"City\": \"Alessandria\",\r\n        \"ZipCode\": \"15121\",\r\n        \"County\": \"AL\",\r\n        \"CountryISOCode\": \"IT\",\r\n        \"Telephone1\": \"+390131251385\"\r\n    },\r\n    \"To\": {\r\n        \"Name\": \"Marco Tibaldeschi\",\r\n        \"Company\": \"DBN Communication srl\",\r\n        \"Address1\": \"Corso Acqui, 382\",\r\n        \"City\": \"Alessandria\",\r\n        \"ZipCode\": \"15121\",\r\n        \"County\": \"AL\",\r\n        \"CountryISOCode\": \"IT\",\r\n        \"Telephone1\": \"+390131251385\",\r\n        \"Email\": \"developer@edock.it\"\r\n    },\r\n    \"Packages\": [\r\n        {\r\n            \"SizeUoM\": \"cm\",\r\n            \"Length\": 10,\r\n            \"Width\": 10,\r\n            \"Height\": 5,\r\n            \"Weight\": 1.5\r\n        }\r\n    ],\r\n    \"CarrierParameters\": [\r\n        {\r\n            \"Name\": \"ProductCode\",\r\n            \"Value\": \"I\"\r\n        },\r\n        {\r\n            \"Name\": \"LocalProductCode\",\r\n            \"Value\": \"I\"\r\n        }\r\n    ],\r\n    \"Attachments\": [\r\n        {\r\n            \"AttachmentType\": 1, \r\n            \"Path\": \"dda7cf68-7334-4937-b0a8-407e133ceee2.pdf\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/ship"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 15 Mar 2022 16:02:57 GMT"},{"key":"Content-Length","value":"622"}],"cookie":[],"responseTime":null,"body":"{\n    \"idShipping\": 249,\n    \"CreatedOn\": \"2022-03-15T16:02:55.467Z\",\n    \"UpdatedOn\": null,\n    \"Status\": 1,\n    \"CarrierResponse\": {\n        \"Succesful\": true,\n        \"Confirmed\": false,\n        \"CarrierShippingNumber\": \"102039160006354\",\n        \"ResponseMessage\": \"BRT has received shipment information properly\",\n        \"Error\": {\n            \"Code\": null,\n            \"Message\": null\n        },\n        \"Warning\": {\n            \"Code\": null,\n            \"Message\": null\n        },\n        \"Labels\": [\n            {\n                \"LabelFormat\": 0,\n                \"LabelType\": 0,\n                \"TrackingCode\": \"102039160006354\",\n                \"TrackingURL\": null,\n                \"LabelURL\": \"https://files.edock.it/users/2642/private/shipment/labels/2022/1/102039160006354.pdf\"\n            }\n        ],\n        \"AdditionalParameters\": [\n            {\n                \"Name\": \"ArrivalDepot\",\n                \"Value\": \"039\"\n            },\n            {\n                \"Name\": \"ArrivalTerminal\",\n                \"Value\": \"166\"\n            }\n        ]\n    }\n}"},{"id":"da9284d1-2b29-4458-a13b-b873889928a1","name":"Ship specifying contents","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"ShippingServiceConfigurationId\": 2,\r\n    \"From\": \r\n    {\r\n        \"Name\": \"Marco Tibaldeschi\",\r\n        \"Company\": \"DBN Communication srl\",\r\n        \"Address1\": \"Corso Acqui, 382\",\r\n        \"City\": \"Alessandria\",\r\n        \"ZipCode\": \"15121\",\r\n        \"County\": \"AL\",\r\n        \"CountryISOCode\": \"IT\",\r\n        \"Telephone1\": \"+390131251385\"\r\n    },\r\n    \"To\": {\r\n        \"Name\": \"Marco Tibaldeschi\",\r\n        \"Address1\": \"Heinrich-hertz-str. 5\",\r\n        \"City\": \"Bremen\",\r\n        \"ZipCode\": \"28211\",\r\n        \"CountryISOCode\": \"DE\",\r\n        \"Telephone1\": \"+390131251385\",\r\n        \"Email\": \"developer@edock.it\"\r\n    },\r\n    \"Packages\": \r\n    [\r\n        {\r\n            \"SizeUoM\": \"cm\",\r\n            \"Length\": 10,\r\n            \"Width\": 10,\r\n            \"Height\": 5,\r\n            \"Weight\": 1.5\r\n        }\r\n    ],\r\n    \"TotalValue\": 75,\r\n    \"Currency\": \"EUR\",\r\n    \"Content\": [\r\n        {\r\n            \"Description\": \"Nike Sneakers\",\r\n            \"Quantity\": 1,\r\n            \"Weight\": 1.5,\r\n            \"UnitValue\": 75,\r\n            \"HSCode\": \"640411\",\r\n            \"CountryOfOriginISOCode\": \"CN\",\r\n            \"IsDangerousGood\": false\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/ship"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 15 Mar 2022 16:02:57 GMT"},{"key":"Content-Length","value":"622"}],"cookie":[],"responseTime":null,"body":"{\n    \"idShipping\": 249,\n    \"CreatedOn\": \"2022-03-15T16:02:55.467Z\",\n    \"UpdatedOn\": null,\n    \"Status\": 1,\n    \"CarrierResponse\": {\n        \"Succesful\": true,\n        \"Confirmed\": false,\n        \"CarrierShippingNumber\": \"102039160006354\",\n        \"ResponseMessage\": \"BRT has received shipment information properly\",\n        \"Error\": {\n            \"Code\": null,\n            \"Message\": null\n        },\n        \"Warning\": {\n            \"Code\": null,\n            \"Message\": null\n        },\n        \"Labels\": [\n            {\n                \"LabelFormat\": 0,\n                \"LabelType\": 0,\n                \"TrackingCode\": \"102039160006354\",\n                \"TrackingURL\": null,\n                \"LabelURL\": \"https://files.edock.it/users/2642/private/shipment/labels/2022/1/102039160006354.pdf\"\n            }\n        ],\n        \"AdditionalParameters\": [\n            {\n                \"Name\": \"ArrivalDepot\",\n                \"Value\": \"039\"\n            },\n            {\n                \"Name\": \"ArrivalTerminal\",\n                \"Value\": \"166\"\n            }\n        ]\n    }\n}"}],"_postman_id":"ee35b4aa-e856-432a-a550-9270717847e0"},{"name":"Rate","id":"11d3f501-be6d-4cbf-bb6f-cc0243909d50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":" {\r\n  \"idOrder\": 1539,\r\n  \"To\": {\r\n    \"Name\": \" RXXXXXXXXXXX\",\r\n    \"Company\": \" RXXXXXXXXXXX\",\r\n    \"Address1\": \"VXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\",\r\n    \"City\": \"RXXX\",\r\n    \"ZipCode\": \"0XXXX\",\r\n    \"County\": null,\r\n    \"CountryISOCode\": \"IX\",\r\n    \"Telephone1\": \"\",\r\n    \"Email\": \"notifiche@artware.it\"\r\n  },\r\n  \"Packages\": [\r\n    {\r\n      \"Length\": 1,\r\n      \"Width\": 1,\r\n      \"Height\": 1,\r\n      \"Weight\": 1.0\r\n    }\r\n  ]\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/rate","description":"<p>Inoltra a MarketRock la richiesta di preventivo per una particolare spedizione.</p>\n<p>Il corpo della richiesta permette il passaggio dei seguenti parametri:</p>\n<ul>\n<li><p><em>idOrder</em>: ID ordine MarketRock a cui questa spedizione è associata (opzionale).</p>\n</li>\n<li><p><em>From</em>: indirizzo di provenienza della spedizione (opzionale).</p>\n</li>\n<li><p><em>To</em>: indirizzo di destinazione della merce (obbligatorio, a meno che non venga specificato un idOrder MarketRock , da cui viene preso l'indirizzo)</p>\n</li>\n<li><p><em>Packages</em>: array di colli di cui chiedere la spedizione. Per ogni collo è possibile specificarne le dimensioni (parametri Width, Length e Height) e il peso (Weight). Le unità di misura sono da specificare, rispettivamente, nei campi SizeUoM (unità di misura delle lunghezze) e WeighUoM (unità di misura del peso). Se non specificate, le unità di misura considerate sono cm per le lunghezze e kg per il peso.</p>\n</li>\n</ul>\n<p>La spedizione verrà richiesta verso l'indirizzo di spedizione associato all'ordine MarketRock . Se si ha necessità di spedire ad un indirizzo diverso, è possibile passare un parametro \"To\" contenente l'indirizzo di spedizione (si veda \"Ship order to a different address\").</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["shipments","rate"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"647d9622-9152-4282-be5a-8e33b1f63f43","name":"Rate - an order + package, using all configurations","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":" {\r\n  \"idOrder\": 1539,\r\n  \"Packages\": [\r\n    {\r\n      \"Length\": 1,\r\n      \"Width\": 1,\r\n      \"Height\": 1,\r\n      \"Weight\": 1.0\r\n    }\r\n  ]\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/rate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 30 Aug 2024 09:13:01 GMT"},{"key":"Content-Length","value":"448"}],"cookie":[],"responseTime":null,"body":"{\n    \"idOrder\": 1539,\n    \"AdditionalOrderIds\": [],\n    \"CarrierResponses\": [\n        {\n            \"RequestId\": \"6351e3aa-7c64-429f-9c1c-3779fe023da6\",\n            \"idShippingConfiguration\": 228,\n            \"idCarrier\": 14,\n            \"CarrierName\": \"Generic\",\n            \"Name\": \"TEST\",\n            \"Succesful\": false,\n            \"ResponseMessage\": null,\n            \"Error\": {\n                \"Message\": null,\n                \"Code\": null\n            },\n            \"Warning\": {\n                \"Message\": null,\n                \"Code\": null\n            },\n            \"Rates\": [\n                {\n                    \"ServiceDisplayName\": null,\n                    \"ServiceCode\": null,\n                    \"Amount\": {\n                        \"Value\": 1.00,\n                        \"Currency\": \"EUR\"\n                    },\n                    \"MinFulfillmentDays\": null,\n                    \"MaxFulfillmentDays\": null,\n                    \"RateEntryParameters\": null\n                }\n            ],\n            \"RateParameters\": null,\n            \"ComputationTime\": \"00:00:00.2353797\"\n        }\n    ]\n}"},{"id":"642a9981-5e80-49cc-8029-f478cb7adf36","name":"Rate - an order + package, using particular configurations","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":" {\r\n  \"idOrder\": 1539,\r\n  \"ShippingServiceConfigurationIds\": [228],\r\n  \"Packages\": [\r\n    {\r\n      \"Length\": 1,\r\n      \"Width\": 1,\r\n      \"Height\": 1,\r\n      \"Weight\": 1.0\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/rate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 30 Aug 2024 09:13:01 GMT"},{"key":"Content-Length","value":"448"}],"cookie":[],"responseTime":null,"body":"{\n    \"idOrder\": 1539,\n    \"AdditionalOrderIds\": [],\n    \"CarrierResponses\": [\n        {\n            \"RequestId\": \"6351e3aa-7c64-429f-9c1c-3779fe023da6\",\n            \"idShippingConfiguration\": 228,\n            \"idCarrier\": 14,\n            \"CarrierName\": \"Generic\",\n            \"Name\": \"TEST\",\n            \"Succesful\": false,\n            \"ResponseMessage\": null,\n            \"Error\": {\n                \"Message\": null,\n                \"Code\": null\n            },\n            \"Warning\": {\n                \"Message\": null,\n                \"Code\": null\n            },\n            \"Rates\": [\n                {\n                    \"ServiceDisplayName\": null,\n                    \"ServiceCode\": null,\n                    \"Amount\": {\n                        \"Value\": 1.00,\n                        \"Currency\": \"EUR\"\n                    },\n                    \"MinFulfillmentDays\": null,\n                    \"MaxFulfillmentDays\": null,\n                    \"RateEntryParameters\": null\n                }\n            ],\n            \"RateParameters\": null,\n            \"ComputationTime\": \"00:00:00.2353797\"\n        }\n    ]\n}"},{"id":"666cb687-9650-4d0d-9345-d5811b3e10f3","name":"Rate - package, using particular configurations","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":" {\r\n  \"To\": {\r\n    \"Name\": \" Marco\",\r\n    \"Company\": \" Tibaldeschi\",\r\n    \"Address1\": \"Corso Acqui, 382\",\r\n    \"City\": \"Alessandria\",\r\n    \"ZipCode\": \"15121\",\r\n    \"County\": \"AL\",\r\n    \"CountryISOCode\": \"IT\",\r\n    \"Telephone1\": \"\",\r\n    \"Email\": \"developer@marketrock.it\"\r\n  },\r\n  \"Packages\": [\r\n    {\r\n      \"Length\": 1,\r\n      \"Width\": 1,\r\n      \"Height\": 1,\r\n      \"Weight\": 1.0\r\n    }\r\n  ]\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/rate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 30 Aug 2024 09:13:01 GMT"},{"key":"Content-Length","value":"448"}],"cookie":[],"responseTime":null,"body":"{\n    \"idOrder\": null,\n    \"AdditionalOrderIds\": [],\n    \"CarrierResponses\": [\n        {\n            \"RequestId\": \"4e791c76-b6c1-421a-afb7-765c5e491a39\",\n            \"idShippingConfiguration\": 209,\n            \"idCarrier\": 7,\n            \"CarrierName\": \"Amazon\",\n            \"Name\": \"Amazon 1\",\n            \"Succesful\": false,\n            \"ResponseMessage\": null,\n            \"Error\": {\n                \"Message\": \"Invalid shipping. No order has been specified.\",\n                \"Code\": null\n            },\n            \"Warning\": {\n                \"Message\": null,\n                \"Code\": null\n            },\n            \"Rates\": [],\n            \"RateParameters\": null,\n            \"ComputationTime\": \"00:00:00.0000061\"\n        },\n        {\n            \"RequestId\": \"6f5d4dcf-07bc-4a28-ae73-20e92b40c62f\",\n            \"idShippingConfiguration\": 228,\n            \"idCarrier\": 14,\n            \"CarrierName\": \"Generic\",\n            \"Name\": \"TEST\",\n            \"Succesful\": false,\n            \"ResponseMessage\": null,\n            \"Error\": {\n                \"Message\": null,\n                \"Code\": null\n            },\n            \"Warning\": {\n                \"Message\": null,\n                \"Code\": null\n            },\n            \"Rates\": [\n                {\n                    \"ServiceDisplayName\": null,\n                    \"ServiceCode\": null,\n                    \"Amount\": {\n                        \"Value\": 1.00,\n                        \"Currency\": \"EUR\"\n                    },\n                    \"MinFulfillmentDays\": null,\n                    \"MaxFulfillmentDays\": null,\n                    \"RateEntryParameters\": null\n                }\n            ],\n            \"RateParameters\": null,\n            \"ComputationTime\": \"00:00:00.0616969\"\n        }\n    ]\n}"}],"_postman_id":"11d3f501-be6d-4cbf-bb6f-cc0243909d50"},{"name":"Return","id":"5122f875-b812-47b9-8a7d-0eb99300e080","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"ShippingServiceConfigurationId\": 2,\r\n    \"From\": \r\n    {\r\n        \"Name\": \"XYZ\",\r\n        \"Company\": \"Company srl\",\r\n        \"Address1\": \"Corso Acqui, 382\",\r\n        \"City\": \"Alessandria\",\r\n        \"ZipCode\": \"15121\",\r\n        \"County\": \"AL\",\r\n        \"CountryISOCode\": \"IT\",\r\n        \"Email\": \"developer@edock.it\",\r\n        \"Telephone1\": \"+390131251385\"\r\n    },\r\n    \"To\": \r\n    {\r\n        \"Name\": \"Marco Tibaldeschi\",\r\n        \"Company\": \"DBN Communication srl\",\r\n        \"Address1\": \"Corso Acqui, 382\",\r\n        \"City\": \"Alessandria\",\r\n        \"ZipCode\": \"15121\",\r\n        \"County\": \"AL\",\r\n        \"CountryISOCode\": \"IT\",\r\n        \"Email\": \"developer@edock.it\",\r\n        \"Telephone1\": \"+390131251385\"\r\n    },\r\n    \"Packages\": \r\n    [\r\n        {\r\n            \"SizeUoM\": \"cm\",\r\n            \"Length\": 10,\r\n            \"Width\": 10,\r\n            \"Height\": 5,\r\n            \"WeightUoM\": \"g\",\r\n            \"Weight\": 1500\r\n        }\r\n    ],\r\n    \"CarrierParameters\": \r\n    [\r\n        {\r\n            \"Name\": \"DepartureDepot\",\r\n            \"Value\": \"039\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/return","description":"<p>Inoltra ad MarketRock la richiesta di generazione di una etichetta di reso (pickup).</p>\n<p>Il corpo della richiesta prevede il passaggio dei seguenti parametri:</p>\n<ul>\n<li><p><em>ShippingServiceConfigurationId</em>: ID della configurazione di spedizione, così come definita sull'account MarketRock .</p>\n</li>\n<li><p><em>idOrder</em>: ID ordine eDock a cui questa spedizione di reso è associata.</p>\n</li>\n<li><p><em>To</em>: indirizzo di destinazione della spedizione.</p>\n</li>\n<li><p><em>Packages</em>: array di colli di cui chiedere la spedizione. Per ogni collo è possibile specificarne le dimensioni (parametri Width, Length e Height) e il peso (Weight). Le unità di misura sono da specificare, rispettivamente, nei campi SizeUoM (unità di misura delle lunghezze) e WeighUoM (unità di misura del peso). Se non specificate, le unità di misura considerate sono cm per le lunghezze e kg per il peso.</p>\n</li>\n</ul>\n<p>Il pick-up verrà richiesto presso l'indirizzo di spedizione associato all'ordine MarketRock . Se si ha necessità di far ritirare presso un indirizzo diverso, è possibile passare un parametro \"From\" contenente l'indirizzo di spedizione.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["shipments","return"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"b0e0fd77-9088-4a82-bbc4-5fd0a6ab877e","name":"Return","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"ShippingServiceConfigurationId\": 2,\r\n    \"idOrder\": 391,\r\n    \"To\": \r\n    {\r\n        \"Name\": \"Marco Tibaldeschi\",\r\n        \"Company\": \"DBN Communication srl\",\r\n        \"Address1\": \"Corso Acqui, 382\",\r\n        \"City\": \"Alessandria\",\r\n        \"ZipCode\": \"15121\",\r\n        \"County\": \"AL\",\r\n        \"CountryISOCode\": \"IT\",\r\n        \"Email\": \"developer@edock.it\"\r\n    },\r\n    \"Packages\": \r\n    [\r\n        {\r\n            \"SizeUoM\": \"cm\",\r\n            \"Length\": 10,\r\n            \"Width\": 10,\r\n            \"Height\": 5,\r\n            \"WeightUoM\": \"g\",\r\n            \"Weight\": 1500\r\n        }\r\n    ],\r\n    \"CarrierParameters\": \r\n    [\r\n        {\r\n            \"Name\": \"DepartureDepot\",\r\n            \"Value\": \"039\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/return"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 15 Mar 2022 16:09:18 GMT"},{"key":"Content-Length","value":"621"}],"cookie":[],"responseTime":null,"body":"{\n    \"idShipment\": 254,\n    \"CreatedOn\": \"2022-03-15T16:09:17.62Z\",\n    \"UpdatedOn\": null,\n    \"Status\": 1,\n    \"CarrierResponse\": {\n        \"Succesful\": true,\n        \"Confirmed\": false,\n        \"CarrierShippingNumber\": \"102039160006356\",\n        \"ResponseMessage\": \"BRT has received shipment information properly\",\n        \"Error\": {\n            \"Code\": null,\n            \"Message\": null\n        },\n        \"Warning\": {\n            \"Code\": null,\n            \"Message\": null\n        },\n        \"Labels\": [\n            {\n                \"LabelFormat\": 0,\n                \"LabelType\": 0,\n                \"TrackingCode\": \"102039160006356\",\n                \"TrackingURL\": null,\n                \"LabelURL\": \"https://files.edock.it/users/2642/private/shipment/labels/2022/1/102039160006356.pdf\"\n            }\n        ],\n        \"AdditionalParameters\": [\n            {\n                \"Name\": \"ArrivalDepot\",\n                \"Value\": \"039\"\n            },\n            {\n                \"Name\": \"ArrivalTerminal\",\n                \"Value\": \"166\"\n            }\n        ]\n    }\n}"},{"id":"110f7f7d-486e-4e62-90d5-c83853cb6584","name":"Return without MarketRock order","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"ShippingServiceConfigurationId\": 2,\r\n    \"From\": \r\n    {\r\n        \"Name\": \"XYZ\",\r\n        \"Company\": \"Company srl\",\r\n        \"Address1\": \"Corso Acqui, 382\",\r\n        \"City\": \"Alessandria\",\r\n        \"ZipCode\": \"15121\",\r\n        \"County\": \"AL\",\r\n        \"CountryISOCode\": \"IT\",\r\n        \"Email\": \"developer@edock.it\"\r\n    },\r\n    \"To\": \r\n    {\r\n        \"Name\": \"Marco Tibaldeschi\",\r\n        \"Company\": \"DBN Communication srl\",\r\n        \"Address1\": \"Corso Acqui, 382\",\r\n        \"City\": \"Alessandria\",\r\n        \"ZipCode\": \"15121\",\r\n        \"County\": \"AL\",\r\n        \"CountryISOCode\": \"IT\",\r\n        \"Email\": \"developer@edock.it\"\r\n    },\r\n    \"Packages\": \r\n    [\r\n        {\r\n            \"SizeUoM\": \"cm\",\r\n            \"Length\": 10,\r\n            \"Width\": 10,\r\n            \"Height\": 5,\r\n            \"WeightUoM\": \"g\",\r\n            \"Weight\": 1500\r\n        }\r\n    ],\r\n    \"ExternalShippingId\": \"Riferimeto spedizione\",\r\n    \"ContentDescription\": \"Descrizione contenuto\",\r\n    \"Notes\": \"Note\",\r\n    \"Total\": \r\n    {\r\n        \"Currency\": \"EUR\",\r\n        \"Value\": 100\r\n    },\r\n    \"CarrierParameters\": \r\n    [\r\n        {\r\n            \"Name\": \"DepartureDepot\",\r\n            \"Value\": \"039\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/return"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"548"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 09 Nov 2022 16:14:25 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"idShipping\": 35597,\n    \"CreatedOn\": \"2022-11-09T16:14:20.37Z\",\n    \"UpdatedOn\": null,\n    \"Status\": 2,\n    \"CarrierResponse\": {\n        \"Succesful\": true,\n        \"Confirmed\": true,\n        \"CarrierShippingNumber\": \"102039160015059\",\n        \"ResponseMessage\": \"BRT has received shipment information properly\",\n        \"Error\": {\n            \"Code\": null,\n            \"Message\": null\n        },\n        \"Warning\": {\n            \"Code\": null,\n            \"Message\": null\n        },\n        \"Labels\": [\n            {\n                \"LabelFormat\": 0,\n                \"LabelType\": 0,\n                \"TrackingCode\": \"102039160015059\",\n                \"TrackingURL\": null,\n                \"LabelURL\": \"https://files.edock.it/users/2642/private/shipment/labels/2022/1/102039160015059.pdf\"\n            }\n        ],\n        \"AdditionalParameters\": [\n            {\n                \"Name\": \"ArrivalDepot\",\n                \"Value\": \"039\"\n            },\n            {\n                \"Name\": \"ArrivalTerminal\",\n                \"Value\": \"166\"\n            },\n            {\n                \"Name\": \"NumericShippingReference\",\n                \"Value\": \"35597\"\n            },\n            {\n                \"Name\": \"AlphanumericShippingReference\",\n                \"Value\": null\n            }\n        ]\n    }\n}"},{"id":"b0e77a77-4da8-4b0c-a883-358aa68c702f","name":"Return from PUDO","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"ShippingServiceConfigurationId\": 229,\r\n    \"From\": {\r\n        \"Name\": \"Marco Tibaldeschi\",\r\n        \"Company\": \"DBN Communication srl\",\r\n        \"Address1\": \"Corso Acqui, 382\",\r\n        \"City\": \"Alessandria\",\r\n        \"ZipCode\": \"15121\",\r\n        \"County\": \"AL\",\r\n        \"CountryISOCode\": \"IT\",\r\n        \"Telephone1\": \"+390131251385\"\r\n    },\r\n    \"To\": {\r\n        \"Name\": \"Marco Tibaldeschi\",\r\n        \"Company\": \"DBN Communication srl\",\r\n        \"Address1\": \"Corso Acqui, 382\",\r\n        \"City\": \"Alessandria\",\r\n        \"ZipCode\": \"15121\",\r\n        \"County\": \"AL\",\r\n        \"CountryISOCode\": \"IT\",\r\n        \"Email\": \"developer@edock.it\"\r\n    },\r\n    \"Packages\": [\r\n        {\r\n            \"SizeUoM\": \"cm\",\r\n            \"Length\": 10,\r\n            \"Width\": 10,\r\n            \"Height\": 5,\r\n            \"Weight\": 1.5\r\n        }\r\n    ],\r\n    \"Pudo\": {\r\n        \"Enabled\": true\r\n    },\r\n    \"CarrierParameters\": [\r\n        {\r\n            \"Name\": \"ReturnDepot\",\r\n            \"Value\": \"1020132001\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/return"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 15 Mar 2022 16:09:18 GMT"},{"key":"Content-Length","value":"621"}],"cookie":[],"responseTime":null,"body":"{\n    \"idShipment\": 254,\n    \"CreatedOn\": \"2022-03-15T16:09:17.62Z\",\n    \"UpdatedOn\": null,\n    \"Status\": 1,\n    \"CarrierResponse\": {\n        \"Succesful\": true,\n        \"Confirmed\": false,\n        \"CarrierShippingNumber\": \"102039160006356\",\n        \"ResponseMessage\": \"BRT has received shipment information properly\",\n        \"Error\": {\n            \"Code\": null,\n            \"Message\": null\n        },\n        \"Warning\": {\n            \"Code\": null,\n            \"Message\": null\n        },\n        \"Labels\": [\n            {\n                \"LabelFormat\": 0,\n                \"LabelType\": 0,\n                \"TrackingCode\": \"102039160006356\",\n                \"TrackingURL\": null,\n                \"LabelURL\": \"https://files.edock.it/users/2642/private/shipment/labels/2022/1/102039160006356.pdf\"\n            }\n        ],\n        \"AdditionalParameters\": [\n            {\n                \"Name\": \"ArrivalDepot\",\n                \"Value\": \"039\"\n            },\n            {\n                \"Name\": \"ArrivalTerminal\",\n                \"Value\": \"166\"\n            }\n        ]\n    }\n}"}],"_postman_id":"5122f875-b812-47b9-8a7d-0eb99300e080"},{"name":"Confirm","id":"ba17bf08-bbf1-46a3-81aa-71dfdad70fa1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{endpoint}}/shipments/{{idShipment}}/confirm","description":"<p>Expressly confirm the shipment to the courier, if the courier requests it.<br />Confirmation, if requested by the courier, may also be required for return shipments (pick-ups).<br />Specifically, the couriers that require it are:</p>\n<ul>\n<li><p>BRT, only if your account is <strong>NOT</strong> configured for automatic shipment confirmation.</p>\n</li>\n<li><p>GLS, for every shipment</p>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["shipments","{{idShipment}}","confirm"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"a83f6ef1-eb44-4b9c-b912-3703d08c8e42","name":"Confirm","originalRequest":{"method":"POST","header":[],"url":"{{endpoint}}/shipments/254/confirm"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 15 Mar 2022 16:18:44 GMT"},{"key":"Content-Length","value":"189"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"idShipping\": 254,\n    \"Status\": 2,\n    \"CarrierResponse\": {\n        \"Succesful\": true,\n        \"ResponseMessage\": \"\",\n        \"Error\": {\n            \"Code\": null,\n            \"Message\": null\n        },\n        \"Warning\": {\n            \"Code\": null,\n            \"Message\": null\n        },\n        \"AdditionalParameters\": []\n    }\n}"}],"_postman_id":"ba17bf08-bbf1-46a3-81aa-71dfdad70fa1"},{"name":"Get","id":"0d1fdbd2-753c-47d0-a22f-716739e38f6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/shipments/{{idShipment}}","description":"<p>Recupera le informazioni su una spedizione precedentemente creata, dato il suo ID.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["shipments","{{idShipment}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"a26395a8-3c43-4127-abeb-f001596c4aa8","name":"Get shipment","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/shipments/250"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 15 Mar 2022 16:08:12 GMT"},{"key":"Content-Length","value":"1081"}],"cookie":[],"responseTime":null,"body":"{\n    \"idShipping\": 250,\n    \"IsReturn\": false,\n    \"CreatedOn\": \"2022-03-15T16:05:03.713Z\",\n    \"UpdatedOn\": null,\n    \"From\": null,\n    \"To\": {\n        \"idShippingAddress\": 229,\n        \"idCounty\": null,\n        \"idCountry\": 233,\n        \"Name\": \"Marco Tibaldeschi \",\n        \"Company\": null,\n        \"Address1\": \"Corso Acqui, 382\",\n        \"City\": \"Alessandria\",\n        \"County\": null,\n        \"ZipCode\": \"15121\",\n        \"CountryAbbreviation\": \"US\",\n        \"Telephone1\": \"01312513185\",\n        \"Email\": null,\n        \"VatCode\": null,\n        \"FiscalCode\": null\n    },\n    \"Packages\": [\n        {\n            \"idShippingPackage\": 234,\n            \"idSizeUoM\": 32,\n            \"idWeightUoM\": 2,\n            \"OrderIndex\": 0,\n            \"Width\": 10,\n            \"Height\": 5,\n            \"Length\": 10,\n            \"Weight\": 1.5,\n            \"SizeUoM\": \"cm\",\n            \"WeightUoM\": \"kg\"\n        }\n    ],\n    \"CarrierResponseParameters\": [],\n    \"Labels\": [],\n    \"idShippingConfiguration\": 2,\n    \"idOrder\": 11,\n    \"Status\": 4,\n    \"ExternalShippingId\": null,\n    \"ExternalNumericShippingId\": null,\n    \"ContentDescription\": null,\n    \"Currency\": null,\n    \"TotalValue\": 26,\n    \"IsCOD\": false,\n    \"CODType\": null,\n    \"CODCurrency\": null,\n    \"CODValue\": null,\n    \"IsInsured\": false,\n    \"InsuredCurrency\": null,\n    \"InsuredValue\": null,\n    \"Notes\": null,\n    \"CarrierNotes\": null,\n    \"Incoterm\": null,\n    \"CarrierShippingNumber\": null,\n    \"CarrierParameters\": [\n        {\n            \"Name\": \"ProductCode\",\n            \"Value\": \"I\"\n        },\n        {\n            \"Name\": \"LocalProductCode\",\n            \"Value\": \"I\"\n        }\n    ]\n}"}],"_postman_id":"0d1fdbd2-753c-47d0-a22f-716739e38f6c"},{"name":"Labels","id":"b6ba4aad-d3fa-4008-b333-0b9ff8bbb8f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/shipments/{{idShipment}}/labels","description":"<p>Recupera le etichette di una spedizione, dato il suo ID.</p>\n<p>Ogni etichetta è composta dai seguenti campi:</p>\n<ul>\n<li><strong>LabelFormat</strong>: 0 = PDF, 1 = ZPL</li>\n<li><strong>LabelType</strong>: 0 = Outbound (etichetta di spedizione in uscita), 1 = Inbound (etichetta di reso, spedizione in ingresso)</li>\n<li><strong>TrackingCode</strong>: numero della spedizione, così come generato dal corriere</li>\n<li><strong>LabelURL</strong>: URL, ospitato da MarketRock , da cui è possibile recuperare il file contenente l'etichetta. Attenzione, la richiesta a questo endpoint deve essere autenticata.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["shipments","{{idShipment}}","labels"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"ace6268a-2330-46cb-88ea-ea62eebdf40b","name":"Labels","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/shipments/118/labels"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 04 Mar 2022 08:02:28 GMT"},{"key":"Content-Length","value":"170"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"LabelFormat\": 0,\n        \"LabelType\": 0,\n        \"TrackingCode\": \"102150160005874106\",\n        \"LabelURL\": \"https://files.edock.it/users/2642/private/shipment/labels/2022/1/102150160005874106.pdf\"\n    }\n]"}],"_postman_id":"b6ba4aad-d3fa-4008-b333-0b9ff8bbb8f4"},{"name":"History (Track and Trace)","id":"3db54774-e0b0-410c-848f-54c1258a8c93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/shipments/{{idShipment}}/history","description":"<p>Recupera la storia della spedizione, dopo che è stata affidata al corriere.</p>\n<p>Ogni elemento contiene:</p>\n<ul>\n<li><strong>Status</strong>: lo stato associato</li>\n<li><strong>EventDate</strong>: la data in cui si è verificato l'evento, così come trasmesso dal corriere</li>\n<li><strong>Notes</strong>: le note eventualmente trasmesse dal corriere</li>\n<li><strong>LoggedOn</strong>: la data in cui MarketRock ha ricevuto l'aggiornamento</li>\n</ul>\n<p>Gli stati possibili sono:</p>\n<ul>\n<li><strong>InTransit</strong> = 7, la spedizione è in transito, ovvero è in elaborazione da parte del corriere</li>\n<li><strong>OutForDelivery</strong> = 8, la spedizione è in consegna</li>\n<li><strong>MissedDelivery</strong> = 9, la spedizione non è stata consegnata perché il destinatario era assente</li>\n<li><strong>Exception</strong> = 10, la spedizione è in uno stato di anomalia, la cui ragione è generalmente espressa nelle note</li>\n<li><strong>Delivered</strong> = 11, la spedizione è stata consegnata con successo o è stata ritirata da un punto di consegna</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["shipments","{{idShipment}}","history"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"e07fdb79-5e9c-492f-83f8-633fb7951a1c","name":"Spedizione consegnata","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/shipments/{{idShipment}}/history"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"208"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 12 Jan 2023 13:07:17 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"Status\": 11,\n        \"EventDate\": \"2023-01-11T00:00:00Z\",\n        \"Notes\": null,\n        \"LoggedOn\": \"2023-01-12T08:53:32.217Z\"\n    }\n]"},{"id":"6467c193-1498-4cb8-8c02-ba326c9294ff","name":"Spedizione in anomalia","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/shipments/{{idShipment}}/history"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"262"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 12 Jan 2023 13:12:59 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"Status\": 9,\n        \"EventDate\": \"2023-01-02T00:00:00Z\",\n        \"Notes\": null,\n        \"LoggedOn\": \"2023-01-10T09:04:04.087Z\"\n    },\n    {\n        \"Status\": 9,\n        \"EventDate\": \"2023-01-03T00:00:00Z\",\n        \"Notes\": null,\n        \"LoggedOn\": \"2023-01-10T09:04:48.15Z\"\n    },\n    {\n        \"Status\": 10,\n        \"EventDate\": \"2023-01-03T00:00:00Z\",\n        \"Notes\": \"GIACENZA\",\n        \"LoggedOn\": \"2023-01-10T09:04:48.9Z\"\n    },\n    {\n        \"Status\": 11,\n        \"EventDate\": \"2023-01-05T00:00:00Z\",\n        \"Notes\": \"GIACENZA\",\n        \"LoggedOn\": \"2023-01-10T09:10:33.193Z\"\n    }\n]"}],"_postman_id":"3db54774-e0b0-410c-848f-54c1258a8c93"},{"name":"Get status","id":"dc1861a1-5135-4e96-a774-edc440a7e4f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/shipments/status","description":"<p>Recupera gli stati che una spedizione può assumere su MarketRock .</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["shipments","status"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"9dfb1cf0-7426-4bcd-b42b-151b35e5fac2","name":"Get status","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/shipments/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 21 Mar 2022 15:25:03 GMT"},{"key":"Content-Length","value":"179"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"idStatus\": 0,\n        \"Name\": \"Inserita\"\n    },\n    {\n        \"idStatus\": 1,\n        \"Name\": \"Inviata al corriere\"\n    },\n    {\n        \"idStatus\": 2,\n        \"Name\": \"Confermata\"\n    },\n    {\n        \"idStatus\": 3,\n        \"Name\": \"Annullata\"\n    },\n    {\n        \"idStatus\": 4,\n        \"Name\": \"Fallita\"\n    }\n]"}],"_postman_id":"dc1861a1-5135-4e96-a774-edc440a7e4f3"},{"name":"Search","id":"d5750356-4729-42e4-9236-083809992033","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"page\": 0,\r\n    \"pageSize\": 50,\r\n    \"filters\": [\r\n        {\r\n            \"field\": \"ExternalShippingIds\",\r\n            \"values\": [\r\n                \"TEST-1234\"\r\n            ]\r\n        }\r\n    ],\r\n    \"details\": [\r\n        {\r\n            \"Field\": \"To\"\r\n        },\r\n        {\r\n            \"Field\": \"Labels\"\r\n        },\r\n        {\r\n            \"Field\": \"Packages\"\r\n        },\r\n        {\r\n            \"Field\": \"Contents\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/search","description":"<p>Cerca le spedizioni all'interno delle spedizioni gestite.</p>\n<p>È possibile passare i seguenti elementi:</p>\n<ul>\n<li><p><strong>page</strong>: indica la pagina di risultati da recuperare</p>\n</li>\n<li><p><strong>pageSize</strong>: indica la dimensione della pagina da recuperare</p>\n</li>\n<li><p><strong>filters</strong>: per filtrare i risultati</p>\n</li>\n<li><p><strong>details</strong>: per ritornare più o meno dettagli sui risultati</p>\n</li>\n</ul>\n<p><strong>filters</strong><br />Parametri utilizzabili per la ricerca:</p>\n<ul>\n<li><p><strong>idShippings</strong>: array contenente gli ID delle spedizioni</p>\n</li>\n<li><p><strong>idOrder</strong>: ID ordine MarketRock</p>\n</li>\n<li><p><strong>idCarriers</strong>: ID dei corrieri</p>\n</li>\n<li><p><strong>ShippingConfigurationId</strong>: ID della configurazione di spedizione</p>\n</li>\n<li><p><strong>IsReturnShipments</strong>: boolean (true / false) che indica se le spedizioni ritornate devono essere di reso</p>\n</li>\n<li><p><strong>CreatedOnStart</strong>: data di inizio della creazione di spedizione</p>\n</li>\n<li><p><strong>CreatedOnEnd</strong>: data di fine della creazione di spedizione</p>\n</li>\n<li><p><strong>Status</strong>: stato della spedizione (0 = inserita, 1 = inoltrata al corriere, 2 = confermata, 3 = annullata, 4 = fallita, 5 = consegnata al corriere, 6 = in fase di definizione da parte del corriere)</p>\n</li>\n<li><p><strong>ExternalShippingIds</strong>: array contenente i riferimenti alfanumerici esterni delle spedizioni</p>\n</li>\n<li><p><strong>Manifest</strong>: boolean (true / false) che indica se la spedizione debba essere già stata inserita in un manifest / borderò</p>\n</li>\n<li><p><strong>Printed</strong>: boolean (true / false) che indica se la spedizione debba già essere stata stampata</p>\n</li>\n<li><p><strong>Archived</strong>: boolean (true / false) che indica se la spedizione debba essere archiviata. Per configurazione predefinita, nel caso in cui non venga passato questo flag, verranno recuperate le sole spedizioni non ancora archiviate</p>\n</li>\n</ul>\n<p><strong>ATTENZIONE</strong>: tutti i parametri sono facoltativi e possono essere passati più parametri contemporaneamente. Nel caso di passaggio di più parametri, questi sono relazionati in AND (ovvero vengono ritornate le spedizioni che rispettano <strong>tutti</strong> i parametri).</p>\n<p><strong>details</strong><br />È possibile richiedere i seguenti dettagli:</p>\n<ul>\n<li><p><strong>From</strong>: indirizzo mittente</p>\n</li>\n<li><p><strong>To</strong>: indirizzo destinatario</p>\n</li>\n<li><p><strong>Packages</strong>: informazioni sui colli</p>\n</li>\n<li><p><strong>Labels</strong>: informazioni sulle etichette</p>\n</li>\n<li><p><strong>Contents</strong>: informazioni sul contenuto delle spedizioni</p>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["shipments","search"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"95d2681b-7c2b-4c45-a550-93df0503584d","name":"Search","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"page\": 0,\r\n    \"pageSize\": 50,\r\n    \"filters\": [\r\n        {\r\n            \"field\": \"ExternalShippingIds\",\r\n            \"values\": [\r\n                \"TEST-001\"\r\n            ]\r\n        }\r\n    ],\r\n    \"details\": [\r\n        {\r\n            \"Field\": \"To\"\r\n        },\r\n        {\r\n            \"Field\": \"Labels\"\r\n        },\r\n        {\r\n            \"Field\": \"Packages\"\r\n        },\r\n        {\r\n            \"Field\": \"Contents\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 08 Mar 2022 11:25:38 GMT"},{"key":"Content-Length","value":"1549"}],"cookie":[],"responseTime":null,"body":"{\n    \"Results\": [\n        {\n            \"idShipping\": 118,\n            \"CreatedOn\": \"2022-03-03T16:28:11.347Z\",\n            \"UpdatedOn\": null,\n            \"From\": {\n                \"idShippingAddress\": 193,\n                \"idCounty\": null,\n                \"idCountry\": 108,\n                \"Name\": \"Marco Tibaldeschi\",\n                \"Company\": \"DBN Communication srl\",\n                \"Address1\": \"Corso Acqui, 382\",\n                \"City\": \"Alessandria\",\n                \"County\": null,\n                \"ZipCode\": \"15121\",\n                \"CountryAbbreviation\": \"IT\",\n                \"Telephone1\": null,\n                \"Email\": null,\n                \"VatCode\": null,\n                \"FiscalCode\": null\n            },\n            \"To\": {\n                \"idShippingAddress\": 194,\n                \"idCounty\": null,\n                \"idCountry\": 108,\n                \"Name\": \"Marco Tibaldeschi\",\n                \"Company\": null,\n                \"Address1\": \"Corso Acqui, 382\",\n                \"City\": \"Alessandria\",\n                \"County\": null,\n                \"ZipCode\": \"15121\",\n                \"CountryAbbreviation\": \"IT\",\n                \"Telephone1\": null,\n                \"Email\": \"test@test.it\",\n                \"VatCode\": null,\n                \"FiscalCode\": null\n            },\n            \"Packages\": [\n                {\n                    \"idShippingPackage\": 95,\n                    \"idSizeUoM\": 32,\n                    \"idWeightUoM\": 30,\n                    \"OrderIndex\": 0,\n                    \"Width\": 10,\n                    \"Height\": 5,\n                    \"Length\": 10,\n                    \"Weight\": 1500,\n                    \"SizeUoM\": \"cm\",\n                    \"WeightUoM\": \"g\"\n                }\n            ],\n            \"CarrierResponseParameters\": [\n                {\n                    \"Name\": \"ArrivalDepot\",\n                    \"Value\": \"150\"\n                },\n                {\n                    \"Name\": \"ArrivalTerminal\",\n                    \"Value\": \"049\"\n                }\n            ],\n            \"Labels\": [\n                {\n                    \"LabelFormat\": 0,\n                    \"LabelType\": 0,\n                    \"TrackingCode\": \"102150160005874106\",\n                    \"LabelURL\": \"https://files.edock.it/users/2642/private/shipment/labels/2022/1/102150160005874106.pdf\"\n                }\n            ],\n            \"idShippingConfiguration\": 2,\n            \"idOrder\": 445,\n            \"Status\": 2,\n            \"ExternalShippingId\": \"TEST-001\",\n            \"ExternalNumericShippingId\": null,\n            \"ContentDescription\": null,\n            \"Currency\": null,\n            \"TotalValue\": null,\n            \"IsCOD\": false,\n            \"CODType\": null,\n            \"CODCurrency\": null,\n            \"CODValue\": null,\n            \"IsInsured\": false,\n            \"InsuredCurrency\": null,\n            \"InsuredValue\": null,\n            \"Notes\": null,\n            \"TrackingCode\": null,\n            \"TrackingURL\": null,\n            \"CarrierParameters\": []\n        }\n    ],\n    \"TotalCount\": 1,\n    \"HasMore\": false\n}"}],"_postman_id":"d5750356-4729-42e4-9236-083809992033"},{"name":"Delete","id":"f6bc6a32-25c7-4a7c-90a5-6ceb26b07d06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{endpoint}}/shipments/{{idShipment}}","description":"<p>Richiede al corriere la cancellazione della spedizione. </p>\n<p><strong>Attenzione</strong>: è necessario verificare non solo che la chiamata abbia avuto esito positivo (HTTP 200 OK), ma anche che il corriere abbia confermato tale operazione.\nÈ infatti possibile che il corriere, per qualche ragione (esempio: spedizione non trovata oppure spedizione già partita) non permetta la cancellazione della stessa.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["shipments","{{idShipment}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"4309d6c1-fa07-40c2-87f8-098862f87d0e","name":"Delete","originalRequest":{"method":"DELETE","header":[],"url":"{{endpoint}}/shipments/254"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 15 Mar 2022 16:19:18 GMT"},{"key":"Content-Length","value":"189"}],"cookie":[],"responseTime":null,"body":"{\n    \"idShipping\": 254,\n    \"Status\": 3,\n    \"CarrierResponse\": {\n        \"Succesful\": true,\n        \"ResponseMessage\": \"\",\n        \"Error\": {\n            \"Code\": null,\n            \"Message\": null\n        },\n        \"Warning\": {\n            \"Code\": null,\n            \"Message\": null\n        },\n        \"AdditionalParameters\": []\n    }\n}"}],"_postman_id":"f6bc6a32-25c7-4a7c-90a5-6ceb26b07d06"},{"name":"Link","id":"6b6eef61-35d1-4dc8-878d-ef8da2e29f3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"idOrder\": {{idOrder}}\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/{{idShipment}}/link","description":"<p>Collega una spedizione precedentemente creata ad un ordine.</p>\n<p>Attenzione:</p>\n<ul>\n<li>è necessario che la spedizione non sia già connessa ad un altro ordine</li>\n<li>se la spedizione risulta essere confermata, l'ordine verrà automaticamente segnalato come spedito, usando il codice di tracciamento - se esistente - associato alla spedizione.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["shipments","{{idShipment}}","link"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"5b25b4ac-bc13-484a-821a-6bec3409ef0c","name":"Link","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"idOrder\": 5\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/145/link"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Wed, 09 Mar 2022 13:56:24 GMT"},{"key":"Content-Length","value":"1004"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"idShipping\": 145,\n    \"IsReturn\": false,\n    \"CreatedOn\": \"2022-03-08T15:13:58.353Z\",\n    \"UpdatedOn\": null,\n    \"From\": null,\n    \"To\": {\n        \"idShippingAddress\": 223,\n        \"idCounty\": null,\n        \"idCountry\": 108,\n        \"Name\": null,\n        \"Company\": \"DBN Communication srl\",\n        \"Address1\": \"Corso Acqui, 382\",\n        \"City\": \"Alessandria\",\n        \"County\": null,\n        \"ZipCode\": \"15121\",\n        \"CountryAbbreviation\": \"IT\",\n        \"Telephone1\": null,\n        \"Email\": null,\n        \"VatCode\": null,\n        \"FiscalCode\": null\n    },\n    \"Packages\": [\n        {\n            \"idShippingPackage\": 125,\n            \"idSizeUoM\": null,\n            \"idWeightUoM\": 2,\n            \"OrderIndex\": 0,\n            \"Width\": null,\n            \"Height\": null,\n            \"Length\": null,\n            \"Weight\": 2,\n            \"SizeUoM\": null,\n            \"WeightUoM\": \"kg\"\n        }\n    ],\n    \"CarrierResponseParameters\": [],\n    \"Labels\": [],\n    \"idShippingConfiguration\": 2,\n    \"idOrder\": 5,\n    \"Status\": 2,\n    \"ExternalShippingId\": \"LETTORE\",\n    \"ExternalNumericShippingId\": 136405,\n    \"ContentDescription\": \"ABBIGLIAMENTO\",\n    \"Currency\": null,\n    \"TotalValue\": null,\n    \"IsCOD\": false,\n    \"CODType\": null,\n    \"CODCurrency\": null,\n    \"CODValue\": null,\n    \"IsInsured\": false,\n    \"InsuredCurrency\": null,\n    \"InsuredValue\": null,\n    \"Notes\": \"SI AUTORIZZANO PARZIALI\",\n    \"CarrierParameters\": []\n}"}],"_postman_id":"6b6eef61-35d1-4dc8-878d-ef8da2e29f3c"}],"id":"1233e818-5cd2-491f-9680-516cfbd73105","description":"<p>Con questo set di chiamate è possibile creare, confermare, cancellare e gestire tutto ciò che ha che fare con le spedizioni (in ingresso e in uscita).</p>\n","_postman_id":"1233e818-5cd2-491f-9680-516cfbd73105","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Pickups","item":[{"name":"Pickup","id":"263485a4-f44e-43d1-ba5c-5d473486c14c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"idShipping\": 228,\r\n    \"PlannedPickupDate\": \"2022-03-16\",\r\n    \"MorningIntervalFrom\": 8,\r\n    \"MorningIntervalTo\": 10,\r\n    \"AfternoonIntervalFrom\": 15,\r\n    \"AfternoonIntervalTo\": 17,\r\n    \"ExternalPickupId\": \"Reso-001\",\r\n    \"PickupNotes\": \"Suonare campanello 12\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/pickup","description":"<p>Effettua una richiesta di ritiro per una spedizione precedentemente creata.</p>\n<p><strong>Attenzione</strong>: la spedizione deve trovarsi in stato \"Inviata al corriere\" o \"Confermata\" per poter essere associata ad una richiesta di ritiro.</p>\n<p>Parametri della richiesta:</p>\n<ul>\n<li><strong>idShipping</strong>: ID della spedizione. L'indirizzo del ritiro è l'indirizzo mittente della spedizione. L'indirizzo a cui verrà effettuata la consegna, invece, è l'indirizzo del destinatario della spedizione.</li>\n<li><strong>PlannedPickupDate</strong>: data di ritiro. Deve essere una data nel futuro o, al limite, uguale a oggi.</li>\n<li><strong>MorningIntervalFrom</strong> e <strong>MorningIntervalTo</strong>: indicano gli intervalli orari della mattina in cui può avvenire il ritiro (facoltativi).</li>\n<li><strong>MorningAfternoonFrom</strong> e <strong>MorningAfternoonTo</strong>: indicano gli intervalli orari del pomeriggio in cui può avvenire il ritiro (facoltativi).</li>\n<li><strong>ExternalPickupId</strong>: identificativo alfanumerico del ritiro, a scelta.</li>\n<li><strong>PickupNotes</strong>: note per il ritiro.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["shipments","pickup"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"92d254cb-dde6-44a8-9acd-dc2ad35d062d","name":"Pickup","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"idShipping\": 254,\r\n    \"PlannedPickupDate\": \"2022-03-16\",\r\n    \"MorningIntervalFrom\": 8,\r\n    \"MorningIntervalTo\": 10,\r\n    \"AfternoonIntervalFrom\": 15,\r\n    \"AfternoonIntervalTo\": 17,\r\n    \"ExternalPickupId\": \"Reso-001\",\r\n    \"PickupNotes\": \"Suonare campanello 12\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/pickup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 15 Mar 2022 16:21:42 GMT"},{"key":"Content-Length","value":"373"}],"cookie":[],"responseTime":null,"body":"{\n    \"idPickup\": 33,\n    \"idShipping\": 254,\n    \"Status\": 2,\n    \"ShippingStatus\": 3,\n    \"CarrierPickupResponse\": {\n        \"Succesful\": true,\n        \"Confirmed\": false,\n        \"CarrierPickupNumber\": null,\n        \"ResponseMessage\": \"Richiesta di pickup accodata. eDock la invierà a BRT il prima possibile.\",\n        \"Error\": {\n            \"Code\": null,\n            \"Message\": null\n        },\n        \"Warning\": {\n            \"Code\": null,\n            \"Message\": null\n        },\n        \"AdditionalParameters\": []\n    },\n    \"CarrierShipResponse\": null\n}"}],"_postman_id":"263485a4-f44e-43d1-ba5c-5d473486c14c"},{"name":"Cancel pickup","id":"737163d4-4526-4856-a29a-8ae0511f9b9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{endpoint}}/shipments/pickup/{{idPickup}}","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["shipments","pickup","{{idPickup}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"3860f80a-1bce-4fb7-8dc4-20fa2eb49afa","name":"Cancel pickup","originalRequest":{"method":"DELETE","header":[],"url":"{{endpoint}}/shipments/pickup/34"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 15 Mar 2022 16:30:16 GMT"},{"key":"Content-Length","value":"254"}],"cookie":[],"responseTime":null,"body":"{\n    \"idPickup\": 34,\n    \"Status\": 0,\n    \"CarrierResponse\": {\n        \"Succesful\": false,\n        \"ResponseMessage\": null,\n        \"Error\": {\n            \"Code\": null,\n            \"Message\": \"I pickup BRT non possono essere cancellati. Contattare la sede BRT.\"\n        },\n        \"Warning\": {\n            \"Code\": null,\n            \"Message\": null\n        },\n        \"AdditionalParameters\": []\n    }\n}"}],"_postman_id":"737163d4-4526-4856-a29a-8ae0511f9b9f"}],"id":"c802b2f4-a008-4321-b606-203a878b745e","_postman_id":"c802b2f4-a008-4321-b606-203a878b745e","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Manifests","item":[{"name":"Create","id":"2c1e5aff-28aa-4f0a-ae89-9a5cf09ea448","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"idShippings\":[65397,65392,65391,65390]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/manifest","description":"<p>Avvia la creazione del borderò (manifest), ovvero la distinta di un particolare insieme di spedizioni, generalmente da far firmare al corriere per la presa in carico.</p>\n<p>La creazione può essere richiesta secondo diversi parametri, utilizzati in combinazione con <strong>CreatedFrom</strong> e <strong>CreatedTo</strong> (data a partire da cui sono state generare le spedizioni e data entro cui devono essere state generate le spedizioni):</p>\n<ul>\n<li><p><strong>idCarrier</strong>: id del corriere per il quale si vuole generare il borderò.</p>\n</li>\n<li><p><strong>idShippingConfiguration</strong>: id della configurazione di spedizione per le quali si vuole generare il borderò.</p>\n</li>\n</ul>\n<p>Le spedizioni presentate nel borderò sono esclusivamente le spedizioni nello stato <strong>confermato</strong> e <strong>in uscita</strong> (non spedizioni di reso).</p>\n<p>In alternativa, è possibile richiedere la creazione di un borderò contenente un elenco ben preciso di spedizioni, utilizzando il parametro <strong>idShippings</strong>. Tale parametro è un array contenente gli ID delle spedizioni di cui si vuole generare il borderò.</p>\n<p>In questo caso, passando gli ID delle spedizioni, è possibile far generare il borderò anche per le spedizioni in ingresso (resi) da fornire al cliente.</p>\n<p><strong>Attenzione</strong>: nel caso di richiesta di generazione di borderò utilizzando gli id di spedizione, è possibile che vengano generati più borderò, uno per ogni corriere a cui è stata affidata la spedizione.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["shipments","manifest"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"082abaf9-f568-4293-9ae1-07dc0a4aa29b","name":"By Shipping Configuration","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"idShippingConfiguration\": 2,\r\n    \"CreatedFrom\": \"2022-03-03\",\r\n    \"CreatedTo\": \"2022-03-04\",\r\n    \"HeaderAddress\": \r\n    {\r\n        \"Company\": \"DBN Communication srl\",\r\n        \"Address1\": \"Corso Acqui, 382\",\r\n        \"City\": \"Alessandria\",\r\n        \"ZipCode\": \"15121\",\r\n        \"Country\": \"IT\",\r\n        \"VatCode\": \"01989010069\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/manifest"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 04 Mar 2022 15:08:35 GMT"},{"key":"Content-Length","value":"247"}],"cookie":[],"responseTime":null,"body":"{\n    \"Manifests\": [\n        {\n            \"idManifest\": 4,\n            \"GeneratedOn\": \"2022-03-04T15:08:31.6896957Z\",\n            \"idCarrier\": 1,\n            \"idShippingConfiguration\": null,\n            \"ManifestURL\": \"https://files.edock.it/users/2642/private/shipment/manifests/2022/1/ab5f2c1b-eac1-4cc4-8ce5-f9633c871c3f.pdf\"\n        }\n    ]\n}"},{"id":"9032f6ca-6f07-4d4a-91fa-a0d47538a154","name":"By Carrier","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"idCarrier\": 1,\r\n    \"CreatedFrom\": \"2022-03-03\",\r\n    \"CreatedTo\": \"2022-03-04\",\r\n    \"HeaderAddress\": \r\n    {\r\n        \"Company\": \"DBN Communication srl\",\r\n        \"Address1\": \"Corso Acqui, 382\",\r\n        \"City\": \"Alessandria\",\r\n        \"ZipCode\": \"15121\",\r\n        \"Country\": \"IT\",\r\n        \"VatCode\": \"01989010069\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/manifest"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 04 Mar 2022 15:09:51 GMT"},{"key":"Content-Length","value":"247"}],"cookie":[],"responseTime":null,"body":"{\n    \"Manifests\": [\n        {\n            \"idManifest\": 5,\n            \"GeneratedOn\": \"2022-03-04T15:09:51.5770132Z\",\n            \"idCarrier\": 1,\n            \"idShippingConfiguration\": null,\n            \"ManifestURL\": \"https://files.edock.it/users/2642/private/shipment/manifests/2022/1/51e9e045-c5a5-4e8b-a172-10748426c6e2.pdf\"\n        }\n    ]\n}"},{"id":"782e8d8b-b73f-434f-a6f7-7f41ed5df1a8","name":"By Shippings","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"idShipments\": [118],\r\n    \"HeaderAddress\": \r\n    {\r\n        \"Company\": \"DBN Communication srl\",\r\n        \"Address1\": \"Corso Acqui, 382\",\r\n        \"City\": \"Alessandria\",\r\n        \"ZipCode\": \"15121\",\r\n        \"Country\": \"IT\",\r\n        \"VatCode\": \"01989010069\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/manifest"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 04 Mar 2022 15:11:55 GMT"},{"key":"Content-Length","value":"247"}],"cookie":[],"responseTime":null,"body":"{\n    \"Manifests\": [\n        {\n            \"idManifest\": 7,\n            \"GeneratedOn\": \"2022-03-04T15:11:55.2580702Z\",\n            \"idCarrier\": 1,\n            \"idShippingConfiguration\": null,\n            \"ManifestURL\": \"https://files.edock.it/users/2642/private/shipment/manifests/2022/1/99af5c89-b540-4db9-a95d-fe458f4d3929.pdf\"\n        }\n    ]\n}"}],"_postman_id":"2c1e5aff-28aa-4f0a-ae89-9a5cf09ea448"},{"name":"Get","id":"c5652fb6-6132-4964-b8d7-c4e420528e19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/shipments/manifest/{{idManifest}}","description":"<p>Recupera un manifest dato il suo ID.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["shipments","manifest","{{idManifest}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"7962c0f4-fcdd-447e-a413-4469decb1789","name":"Get","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/shipments/manifest/7"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 04 Mar 2022 15:39:18 GMT"},{"key":"Content-Length","value":"227"}],"cookie":[],"responseTime":null,"body":"{\n    \"idManifest\": 7,\n    \"GeneratedOn\": \"2022-03-04T15:11:55.257Z\",\n    \"idCarrier\": 1,\n    \"idShippingConfiguration\": null,\n    \"ManifestURL\": \"https://files.edock.it/users/2642/private/shipment/manifests/2022/1/99af5c89-b540-4db9-a95d-fe458f4d3929.pdf\"\n}"}],"_postman_id":"c5652fb6-6132-4964-b8d7-c4e420528e19"},{"name":"Delete","id":"83c927d1-5359-48da-a847-0215d720a724","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{endpoint}}/shipments/manifest/{{idManifest}}","description":"<p>Cancella un manifest precedentemente creato. L'operazione è irreversibile.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["shipments","manifest","{{idManifest}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"1a2bbd6f-68f1-43bd-9def-0f0d86e6d9ea","name":"Delete","originalRequest":{"method":"DELETE","header":[],"url":"{{endpoint}}/shipments/manifest/7"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 04 Mar 2022 15:40:04 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":""},{"id":"63534f66-0f10-4663-ab2a-dd5847a9857d","name":"Delete (not found)","originalRequest":{"method":"DELETE","header":[],"url":"{{endpoint}}/shipments/manifest/100"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 04 Mar 2022 15:40:16 GMT"},{"key":"Content-Length","value":"58"}],"cookie":[],"responseTime":null,"body":"{\n    \"Warnings\": [],\n    \"Errors\": [\n        \"Manifest not found\"\n    ],\n    \"Status\": 2\n}"}],"_postman_id":"83c927d1-5359-48da-a847-0215d720a724"}],"id":"98454b5b-2377-4a3b-966d-ccab37ef2afd","_postman_id":"98454b5b-2377-4a3b-966d-ccab37ef2afd","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Pudos","item":[{"name":"Search","id":"aa397f5d-73e3-4c10-b706-9303f7915a51","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"idShippingConfiguration\": 4,\r\n    \"Origin\": {\r\n        \"Address\": \"Corso Acqui, 382\",\r\n        \"City\": \"Alessandria\",\r\n        \"ZipCode\": \"15121\",\r\n        \"CountryISOCode\": \"IT\"\r\n    },\r\n    \"Range\": 10000\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/pudo","description":"<p>Retrieves all the PUDO (Pick-up / Drop off) points offered by a particular carrier.</p>\n<p>You must specify:</p>\n<ul>\n<li><p><strong>idShippingConfiguration</strong>: your shipping configuration ID as defined on your MarketRock account</p>\n</li>\n<li><p><strong>Origin</strong>: the address near which you want to search available PUDOs</p>\n</li>\n<li><p><strong>Range</strong>: the radius, in meter, where you want to perform the search, centered on the Origin address</p>\n</li>\n</ul>\n<p>For each available PUDO you are provided with:</p>\n<ul>\n<li><p>the <strong>idPUDO</strong>, which is the identifier that you must use to organize a shipment to a PUDO</p>\n</li>\n<li><p>the full address</p>\n</li>\n<li><p>the timetable, i.e. for each day of the week, the opening and closing times</p>\n</li>\n</ul>\n<p>This allows your to show these informations to your customers in order to let them select the preferred one.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["shipments","pudo"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"99941380-7c6b-4c5f-bba5-3e7ebbda075f","name":"Search","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"idShippingConfiguration\": 4,\r\n    \"Origin\": {\r\n        \"Address\": \"Corso Acqui, 382\",\r\n        \"City\": \"Alessandria\",\r\n        \"ZipCode\": \"15121\",\r\n        \"CountryISOCode\": \"IT\"\r\n    },\r\n    \"Range\": 10000\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/shipments/pudo"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 03 Sep 2024 13:09:10 GMT"},{"key":"Content-Length","value":"2648"}],"cookie":[],"responseTime":null,"body":"{\n    \"idCarrier\": 2,\n    \"PageSize\": 25,\n    \"Page\": 0,\n    \"TotalCount\": 3,\n    \"Content\": [\n        {\n            \"idPUDO\": \"QALAA0\",\n            \"Name\": \"DHL ALESSANDRIA\",\n            \"Latitude\": 44.889657,\n            \"Longitude\": 8.615624,\n            \"Address\": \"Via Dell'Artigianato, 46\",\n            \"ZipCode\": \"15121\",\n            \"City\": \"ALESSANDRIA\",\n            \"County\": null,\n            \"DistanceFromOrigin\": {\n                \"Value\": 1.9,\n                \"UOM\": {\n                    \"idUnitOfMeasure\": 33,\n                    \"Name\": \"chilometri\"\n                }\n            },\n            \"Phone\": \"199 199 345\",\n            \"TimeTable\": {\n                \"Days\": [\n                    {\n                        \"Day\": 1,\n                        \"Schedules\": [\n                            {\n                                \"OpenAt\": \"09:00\",\n                                \"ClosedAt\": \"12:30\"\n                            },\n                            {\n                                \"OpenAt\": \"14:30\",\n                                \"ClosedAt\": \"19:30\"\n                            }\n                        ]\n                    },\n                    {\n                        \"Day\": 2,\n                        \"Schedules\": [\n                            {\n                                \"OpenAt\": \"09:00\",\n                                \"ClosedAt\": \"12:30\"\n                            },\n                            {\n                                \"OpenAt\": \"14:30\",\n                                \"ClosedAt\": \"19:30\"\n                            }\n                        ]\n                    },\n                    {\n                        \"Day\": 3,\n                        \"Schedules\": [\n                            {\n                                \"OpenAt\": \"09:00\",\n                                \"ClosedAt\": \"12:30\"\n                            },\n                            {\n                                \"OpenAt\": \"14:30\",\n                                \"ClosedAt\": \"19:30\"\n                            }\n                        ]\n                    },\n                    {\n                        \"Day\": 4,\n                        \"Schedules\": [\n                            {\n                                \"OpenAt\": \"09:00\",\n                                \"ClosedAt\": \"12:30\"\n                            },\n                            {\n                                \"OpenAt\": \"14:30\",\n                                \"ClosedAt\": \"19:30\"\n                            }\n                        ]\n                    },\n                    {\n                        \"Day\": 5,\n                        \"Schedules\": [\n                            {\n                                \"OpenAt\": \"09:00\",\n                                \"ClosedAt\": \"12:30\"\n                            },\n                            {\n                                \"OpenAt\": \"14:30\",\n                                \"ClosedAt\": \"19:30\"\n                            }\n                        ]\n                    }\n                ]\n            },\n            \"AdditionalInformations\": null\n        },\n        {\n            \"idPUDO\": \"QAL1D1\",\n            \"Name\": \"DHL STORE ALESSANDRIA\",\n            \"Latitude\": 44.908587,\n            \"Longitude\": 8.612301,\n            \"Address\": \"Piazza Garibaldi, 51\",\n            \"ZipCode\": \"15121\",\n            \"City\": \"ALESSANDRIA\",\n            \"County\": null,\n            \"DistanceFromOrigin\": {\n                \"Value\": 2.34,\n                \"UOM\": {\n                    \"idUnitOfMeasure\": 33,\n                    \"Name\": \"chilometri\"\n                }\n            },\n            \"Phone\": \"+39 0131 1712987\",\n            \"TimeTable\": {\n                \"Days\": [\n                    {\n                        \"Day\": 1,\n                        \"Schedules\": [\n                            {\n                                \"OpenAt\": \"09:00\",\n                                \"ClosedAt\": \"12:30\"\n                            },\n                            {\n                                \"OpenAt\": \"14:15\",\n                                \"ClosedAt\": \"18:00\"\n                            }\n                        ]\n                    },\n                    {\n                        \"Day\": 2,\n                        \"Schedules\": [\n                            {\n                                \"OpenAt\": \"09:00\",\n                                \"ClosedAt\": \"12:30\"\n                            },\n                            {\n                                \"OpenAt\": \"14:15\",\n                                \"ClosedAt\": \"18:00\"\n                            }\n                        ]\n                    },\n                    {\n                        \"Day\": 3,\n                        \"Schedules\": [\n                            {\n                                \"OpenAt\": \"09:00\",\n                                \"ClosedAt\": \"12:30\"\n                            },\n                            {\n                                \"OpenAt\": \"14:15\",\n                                \"ClosedAt\": \"18:00\"\n                            }\n                        ]\n                    },\n                    {\n                        \"Day\": 4,\n                        \"Schedules\": [\n                            {\n                                \"OpenAt\": \"09:00\",\n                                \"ClosedAt\": \"12:30\"\n                            },\n                            {\n                                \"OpenAt\": \"14:15\",\n                                \"ClosedAt\": \"18:00\"\n                            }\n                        ]\n                    },\n                    {\n                        \"Day\": 5,\n                        \"Schedules\": [\n                            {\n                                \"OpenAt\": \"09:00\",\n                                \"ClosedAt\": \"12:30\"\n                            },\n                            {\n                                \"OpenAt\": \"14:15\",\n                                \"ClosedAt\": \"18:00\"\n                            }\n                        ]\n                    },\n                    {\n                        \"Day\": 6,\n                        \"Schedules\": [\n                            {\n                                \"OpenAt\": \"09:00\",\n                                \"ClosedAt\": \"12:00\"\n                            }\n                        ]\n                    }\n                ]\n            },\n            \"AdditionalInformations\": null\n        },\n        {\n            \"idPUDO\": \"QAL1D6\",\n            \"Name\": \"L'OBLO' AGENZIA VIAGGI\",\n            \"Latitude\": 44.8824825,\n            \"Longitude\": 8.6820549,\n            \"Address\": \"Via Genova 128\",\n            \"ZipCode\": \"15122\",\n            \"City\": \"SPINETTA MARENGO\",\n            \"County\": null,\n            \"DistanceFromOrigin\": {\n                \"Value\": 7.19,\n                \"UOM\": {\n                    \"idUnitOfMeasure\": 33,\n                    \"Name\": \"chilometri\"\n                }\n            },\n            \"Phone\": \"199 199 345\",\n            \"TimeTable\": {\n                \"Days\": [\n                    {\n                        \"Day\": 1,\n                        \"Schedules\": [\n                            {\n                                \"OpenAt\": \"10:00\",\n                                \"ClosedAt\": \"12:30\"\n                            },\n                            {\n                                \"OpenAt\": \"15:30\",\n                                \"ClosedAt\": \"18:30\"\n                            }\n                        ]\n                    },\n                    {\n                        \"Day\": 2,\n                        \"Schedules\": [\n                            {\n                                \"OpenAt\": \"10:00\",\n                                \"ClosedAt\": \"12:30\"\n                            },\n                            {\n                                \"OpenAt\": \"15:30\",\n                                \"ClosedAt\": \"18:30\"\n                            }\n                        ]\n                    },\n                    {\n                        \"Day\": 3,\n                        \"Schedules\": [\n                            {\n                                \"OpenAt\": \"10:00\",\n                                \"ClosedAt\": \"12:30\"\n                            },\n                            {\n                                \"OpenAt\": \"15:30\",\n                                \"ClosedAt\": \"18:30\"\n                            }\n                        ]\n                    },\n                    {\n                        \"Day\": 4,\n                        \"Schedules\": [\n                            {\n                                \"OpenAt\": \"10:00\",\n                                \"ClosedAt\": \"12:30\"\n                            },\n                            {\n                                \"OpenAt\": \"15:30\",\n                                \"ClosedAt\": \"18:30\"\n                            }\n                        ]\n                    },\n                    {\n                        \"Day\": 5,\n                        \"Schedules\": [\n                            {\n                                \"OpenAt\": \"10:00\",\n                                \"ClosedAt\": \"12:30\"\n                            },\n                            {\n                                \"OpenAt\": \"15:30\",\n                                \"ClosedAt\": \"18:30\"\n                            }\n                        ]\n                    }\n                ]\n            },\n            \"AdditionalInformations\": null\n        }\n    ]\n}"}],"_postman_id":"aa397f5d-73e3-4c10-b706-9303f7915a51"}],"id":"6245eb49-544f-4d0f-9dad-2520d701c66e","description":"<p>PUDOs (Pick-up / Drop-off points) offer your customer the opportunity to delivery your goods or return them to a shop / locker.</p>\n<p>It's a convenient and secure way for customers, since they don't have to wait for the delivery at home, hence they reduce the risk of missed deliveries.</p>\n","_postman_id":"6245eb49-544f-4d0f-9dad-2520d701c66e","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Paperless","item":[{"name":"Get attachment types","id":"cab234f4-35cb-474a-900c-af51b2f3b135","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"description":"<p>Retrieves all the supported attachment types for ETD (Electronic Trade Documents)</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"query":[],"variable":[]},"url":""},"response":[{"id":"585c8986-16a2-4169-ae5c-7413fd22d2a5","name":"Get attachment types","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/shipments/paperless/documents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"3309"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 12 May 2025 13:56:45 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"idAttachmentType\": 0,\n        \"Name\": \"Certificato d'origine\"\n    },\n    {\n        \"idAttachmentType\": 1,\n        \"Name\": \"Fattura commerciale\"\n    },\n    {\n        \"idAttachmentType\": 2,\n        \"Name\": \"Etichetta ETD\"\n    },\n    {\n        \"idAttachmentType\": 3,\n        \"Name\": \"Fattura proforma\"\n    },\n    {\n        \"idAttachmentType\": 4,\n        \"Name\": \"Certificato d'origine USMCA\"\n    },\n    {\n        \"idAttachmentType\": 5,\n        \"Name\": \"Fattura commerciale e certificato d'origine USMCA\"\n    },\n    {\n        \"idAttachmentType\": 6,\n        \"Name\": \"Aggiunta alla Dichiarazione tessile\"\n    },\n    {\n        \"idAttachmentType\": 7,\n        \"Name\": \"Dichiarazione oggetto d'antiquariato\"\n    },\n    {\n        \"idAttachmentType\": 8,\n        \"Name\": \"Dichiarazione dell'assemblatore\"\n    },\n    {\n        \"idAttachmentType\": 9,\n        \"Name\": \"B13A\"\n    },\n    {\n        \"idAttachmentType\": 10,\n        \"Name\": \"Scheda cuscinetti\"\n    },\n    {\n        \"idAttachmentType\": 11,\n        \"Name\": \"Scheda condensatori\"\n    },\n    {\n        \"idAttachmentType\": 12,\n        \"Name\": \"Certificazione relativa all'importazione di film e video\"\n    },\n    {\n        \"idAttachmentType\": 13,\n        \"Name\": \"Certificazione di spedizioni in Siria\"\n    },\n    {\n        \"idAttachmentType\": 14,\n        \"Name\": \"Lista di controllo per schede a circuito stampato vuote/piene\"\n    },\n    {\n        \"idAttachmentType\": 15,\n        \"Name\": \"Fattura commerciale per il Mercato comune dei Caraibi\"\n    },\n    {\n        \"idAttachmentType\": 16,\n        \"Name\": \"Imballaggi in legno di conifera per la Repubblica Popolare Cinese\"\n    },\n    {\n        \"idAttachmentType\": 17,\n        \"Name\": \"Elenco imballaggi consolidato\"\n    },\n    {\n        \"idAttachmentType\": 18,\n        \"Name\": \"Dichiarazione per prodotti elettronici importati soggetti agli standard di controllo delle radiazioni\"\n    },\n    {\n        \"idAttachmentType\": 19,\n        \"Name\": \"Dichiarazione per spedizione materiale biologico\"\n    },\n    {\n        \"idAttachmentType\": 20,\n        \"Name\": \"Fattura commerciale/dichiarazione per tutti i tipi di orologi, loro componenti\"\n    },\n    {\n        \"idAttachmentType\": 21,\n        \"Name\": \"Scheda resistori elettrici\"\n    },\n    {\n        \"idAttachmentType\": 22,\n        \"Name\": \"Scheda circuiti integrati elettronici\"\n    },\n    {\n        \"idAttachmentType\": 23,\n        \"Name\": \"Presentazione nota previa FDA\"\n    },\n    {\n        \"idAttachmentType\": 24,\n        \"Name\": \"Esportazione dall'India - Allegato A\"\n    },\n    {\n        \"idAttachmentType\": 25,\n        \"Name\": \"Esportazione dall'India - Allegato B\"\n    },\n    {\n        \"idAttachmentType\": 26,\n        \"Name\": \"Esportazione dall'India - Allegato C\"\n    },\n    {\n        \"idAttachmentType\": 27,\n        \"Name\": \"Esportazione dall'India - Allegato D\"\n    },\n    {\n        \"idAttachmentType\": 28,\n        \"Name\": \"Esportazione dall'India - Allegato I\"\n    },\n    {\n        \"idAttachmentType\": 29,\n        \"Name\": \"Esportazione dall'India - Allegato II\"\n    },\n    {\n        \"idAttachmentType\": 30,\n        \"Name\": \"Esportazione dall'India - Allegato III\"\n    },\n    {\n        \"idAttachmentType\": 31,\n        \"Name\": \"Esportazione dall'India - Allegato IV\"\n    },\n    {\n        \"idAttachmentType\": 32,\n        \"Name\": \"Esportazione dall'India - Lettera d'istruzioni\"\n    },\n    {\n        \"idAttachmentType\": 33,\n        \"Name\": \"Fattura commerciale indiana\"\n    },\n    {\n        \"idAttachmentType\": 34,\n        \"Name\": \"Fattura provvisoria per calzature\"\n    },\n    {\n        \"idAttachmentType\": 35,\n        \"Name\": \"Elenco imballaggi\"\n    },\n    {\n        \"idAttachmentType\": 36,\n        \"Name\": \"Modulo informativo - (solo Regno Unito)\"\n    },\n    {\n        \"idAttachmentType\": 37,\n        \"Name\": \"Reso di prodotti americani (Forze armate)\"\n    },\n    {\n        \"idAttachmentType\": 38,\n        \"Name\": \"Reso di prodotti americani (normale)\"\n    },\n    {\n        \"idAttachmentType\": 39,\n        \"Name\": \"Certificato del mittente per Carico non pericoloso\"\n    },\n    {\n        \"idAttachmentType\": 40,\n        \"Name\": \"Dichiarazione relativa all'importazione di dispositivi a radiofrequenza\"\n    },\n    {\n        \"idAttachmentType\": 41,\n        \"Name\": \"Toxic Substance Control Act\"\n    },\n    {\n        \"idAttachmentType\": 42,\n        \"Name\": \"United States - Caribbean Basin Trade Partnership Act (CBTPA)\"\n    },\n    {\n        \"idAttachmentType\": 43,\n        \"Name\": \"Report manifesto VISA IPD/IED/IDF\"\n    },\n    {\n        \"idAttachmentType\": 44,\n        \"Name\": \"Informazioni orologi da polso\"\n    },\n    {\n        \"idAttachmentType\": 45,\n        \"Name\": \"Dichiarazione doganale di libera esportazione\"\n    }\n]"}],"_postman_id":"cab234f4-35cb-474a-900c-af51b2f3b135"},{"name":"Uploads an attachment","id":"29fdf64d-c752-452a-8efa-83d69849ed51","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"attachmentsUpload","type":"file","uuid":"4d8b7a29-cc9b-41ea-b169-eda097cbc63e","src":"/C:/Users/marco/Downloads/pdf/185725.pdf"}]},"url":"{{endpoint}}/uploads/private/attachments?rename={{rename}}","description":"<p>Uploads a file, optionally renaming it (use the <em><strong>rename</strong></em> parameter)</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["uploads","private","attachments"],"host":["{{endpoint}}"],"query":[{"key":"rename","value":"{{rename}}"},{"disabled":true,"key":"attachmentsUpload","value":null}],"variable":[]}},"response":[{"id":"1f3400bd-eebd-4ea1-80f4-5149dc504f2a","name":"Uploads an attachment","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"attachmentsUpload","type":"file","uuid":"4d8b7a29-cc9b-41ea-b169-eda097cbc63e","src":"/C:/Users/marco/Downloads/pdf/185725.pdf"}]},"url":{"raw":"{{endpoint}}/uploads/private/attachments?rename=true","host":["{{endpoint}}"],"path":["uploads","private","attachments"],"query":[{"key":"rename","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"111"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 12 May 2025 14:02:55 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"[\n    \"https://files.marketrock.it/private/users/2642/private/attachments/38225091-0742-4e9a-9366-278ee132bd43.pdf\"\n]"}],"_postman_id":"29fdf64d-c752-452a-8efa-83d69849ed51"}],"id":"ec481715-b281-48f4-b00d-fb730407eb40","description":"<p>Some carriers offer <strong>ETD</strong> - which stands for Electronic Trade Documents - and allows the shipper to avoid to print and attach paper documents to packages. This is why this process is also called <strong>paperless</strong>.</p>\n<p>In order to create a shipment with ETD, follow these steps:</p>\n<ol>\n<li><p>retrieve allowed attachment types, using the \"Get attachment types\" call</p>\n</li>\n<li><p>upload the file, using the \"Uploads an attachment\" call</p>\n</li>\n<li><p>create the shipment, passing in the <em><strong>Attachments</strong></em> element. Check \"Ship with ETD\" example</p>\n</li>\n</ol>\n","_postman_id":"ec481715-b281-48f4-b00d-fb730407eb40","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}}],"id":"3844b4a9-a9d8-4889-96a2-04b72df539ca","description":"<p>Through these API calls you can configure MarketRock to generate shipping labels directly from supported carriers.</p>\n<p>Shipments may be directly linked to MarketRock orders, but it is not mandatory (i.e. you can create a shipment without an existing order). Each order may have only one confirmed shipment.</p>\n","_postman_id":"3844b4a9-a9d8-4889-96a2-04b72df539ca","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Invoices","item":[{"name":"Search","id":"cea06d5f-2114-4481-970d-7f4d860fb389","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"page\": 0,\r\n    \"pageSize\": 10\r\n}"},"url":"{{endpoint}}/FiscalClasses","description":"<p>Recupera tutte le unità di misura definite su eDock, \nsecondo il sistema di misure scelto dall'utente eDock.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["FiscalClasses"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"26754348-0370-4a14-84fa-6824db814dbe","name":"Search","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"page\": 0,\r\n    \"pageSize\": 10\r\n}"},"url":"{{endpoint}}/FiscalClasses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 16 Feb 2024 14:49:36 GMT"},{"key":"Content-Length","value":"163"}],"cookie":[],"responseTime":null,"body":"{\n    \"PageSize\": 10,\n    \"Page\": 0,\n    \"TotalCount\": 2,\n    \"Content\": [\n        {\n            \"Id\": 4,\n            \"Name\": \"Italia\",\n            \"IsDefault\": false,\n            \"Rates\": []\n        },\n        {\n            \"Id\": 3870,\n            \"Name\": \"Standard\",\n            \"IsDefault\": true,\n            \"Rates\": []\n        }\n    ]\n}"}],"_postman_id":"cea06d5f-2114-4481-970d-7f4d860fb389"},{"name":"Get","id":"263a2611-db3a-4be0-8e3c-36fa465f3737","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/FiscalClasses/{{idFiscalClass}}","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["FiscalClasses","{{idFiscalClass}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"79b04c3e-9287-4d00-a4ac-ac002bbf4eb6","name":"Get","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/FiscalClasses/{{idFiscalClass}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 16 Feb 2024 14:51:45 GMT"},{"key":"Content-Length","value":"907"}],"cookie":[],"responseTime":null,"body":"{\n    \"Id\": 4,\n    \"Name\": \"Italia\",\n    \"IsDefault\": false,\n    \"Rates\": [\n        {\n            \"CountryId\": 15,\n            \"Rate\": 20\n        },\n        {\n            \"CountryId\": 22,\n            \"Rate\": 21\n        },\n        {\n            \"CountryId\": 34,\n            \"Rate\": 20\n        },\n        {\n            \"CountryId\": 55,\n            \"Rate\": 25\n        },\n        {\n            \"CountryId\": 57,\n            \"Rate\": 19\n        },\n        {\n            \"CountryId\": 58,\n            \"Rate\": 21\n        },\n        {\n            \"CountryId\": 59,\n            \"Rate\": 25\n        },\n        {\n            \"CountryId\": 68,\n            \"Rate\": 20\n        },\n        {\n            \"CountryId\": 73,\n            \"Rate\": 24\n        },\n        {\n            \"CountryId\": 74,\n            \"Rate\": 20\n        },\n        {\n            \"CountryId\": 81,\n            \"Rate\": 19\n        },\n        {\n            \"CountryId\": 84,\n            \"Rate\": 24\n        },\n        {\n            \"CountryId\": 99,\n            \"Rate\": 27\n        },\n        {\n            \"CountryId\": 105,\n            \"Rate\": 23\n        },\n        {\n            \"CountryId\": 108,\n            \"Rate\": 22\n        },\n        {\n            \"CountryId\": 121,\n            \"Rate\": 21\n        },\n        {\n            \"CountryId\": 127,\n            \"Rate\": 21\n        },\n        {\n            \"CountryId\": 128,\n            \"Rate\": 17\n        },\n        {\n            \"CountryId\": 136,\n            \"Rate\": 18\n        },\n        {\n            \"CountryId\": 155,\n            \"Rate\": 21\n        },\n        {\n            \"CountryId\": 176,\n            \"Rate\": 23\n        },\n        {\n            \"CountryId\": 177,\n            \"Rate\": 23\n        },\n        {\n            \"CountryId\": 181,\n            \"Rate\": 19\n        },\n        {\n            \"CountryId\": 200,\n            \"Rate\": 20\n        },\n        {\n            \"CountryId\": 201,\n            \"Rate\": 22\n        },\n        {\n            \"CountryId\": 206,\n            \"Rate\": 21\n        },\n        {\n            \"CountryId\": 212,\n            \"Rate\": 25\n        },\n        {\n            \"CountryId\": 232,\n            \"Rate\": 20\n        }\n    ]\n}"}],"_postman_id":"263a2611-db3a-4be0-8e3c-36fa465f3737"}],"id":"41b4cf27-b57b-4d40-97d3-146f88639f10","_postman_id":"41b4cf27-b57b-4d40-97d3-146f88639f10","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Marketplaces","item":[{"name":"Orders","item":[{"name":"Is Cancellation Enabled","id":"026aac8b-2e95-4336-b53d-d31c05be4702","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/marketplaces/{{idModule}}/orders/cancellations/enabled","description":"<p>Allows you to understand if the selected Marketplace supports seller-initiated orders cancellations.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["marketplaces","{{idModule}}","orders","cancellations","enabled"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"1ecb8c9a-c043-4a15-ac75-886e813527c8","name":"Amazon","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/marketplaces/{{idModule}}/orders/cancellations/enabled"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"16"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Tue, 12 Nov 2024 14:46:08 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"Enabled\": true\n}"}],"_postman_id":"026aac8b-2e95-4336-b53d-d31c05be4702"},{"name":"Get Cancellation Reasons","id":"0fc0824c-0fa6-46e1-b211-5538fd72acf7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/marketplaces/{{idModule}}/orders/cancellations/reasons","description":"<p>Allows you to retrieve Marketplace seller-initiated orders cancellation reasons.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["marketplaces","{{idModule}}","orders","cancellations","reasons"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"b8e56cd5-0b17-4dc7-9bd6-743dfd55e778","name":"Amazon","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/marketplaces/{{idModule}}/orders/cancellations/reasons"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"428"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Tue, 12 Nov 2024 14:46:18 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"Key\": \"NoInventory\",\n        \"Value\": \"amazon.cancelreason.NoInventory\"\n    },\n    {\n        \"Key\": \"ShippingAddressUndeliverable\",\n        \"Value\": \"amazon.cancelreason.ShippingAddressUndeliverable\"\n    },\n    {\n        \"Key\": \"CustomerExchange\",\n        \"Value\": \"amazon.cancelreason.CustomerExchange\"\n    },\n    {\n        \"Key\": \"BuyerCanceled\",\n        \"Value\": \"amazon.cancelreason.BuyerCanceled\"\n    },\n    {\n        \"Key\": \"GeneralAdjustment\",\n        \"Value\": \"amazon.cancelreason.GeneralAdjustment\"\n    },\n    {\n        \"Key\": \"CarrierCreditDecision\",\n        \"Value\": \"amazon.cancelreason.CarrierCreditDecision\"\n    },\n    {\n        \"Key\": \"RiskAssessmentInformationNotValid\",\n        \"Value\": \"amazon.cancelreason.RiskAssessmentInformationNotValid\"\n    },\n    {\n        \"Key\": \"CarrierCoverageFailure\",\n        \"Value\": \"amazon.cancelreason.CarrierCoverageFailure\"\n    },\n    {\n        \"Key\": \"CustomerReturn\",\n        \"Value\": \"amazon.cancelreason.CustomerReturn\"\n    },\n    {\n        \"Key\": \"MerchandiseNotReceived\",\n        \"Value\": \"amazon.cancelreason.MerchandiseNotReceived\"\n    },\n    {\n        \"Key\": \"CannotVerifyInformation\",\n        \"Value\": \"amazon.cancelreason.CannotVerifyInformation\"\n    },\n    {\n        \"Key\": \"PricingError\",\n        \"Value\": \"amazon.cancelreason.PricingError\"\n    },\n    {\n        \"Key\": \"RejectOrder\",\n        \"Value\": \"amazon.cancelreason.RejectOrder\"\n    },\n    {\n        \"Key\": \"WeatherDelay\",\n        \"Value\": \"amazon.cancelreason.WeatherDelay\"\n    }\n]"}],"_postman_id":"0fc0824c-0fa6-46e1-b211-5538fd72acf7"}],"id":"224d96e9-13d6-4b9e-8f65-a885f07a66a1","_postman_id":"224d96e9-13d6-4b9e-8f65-a885f07a66a1","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}}],"id":"4c3ce5d1-6eb0-45a0-bc64-6740ec907bb9","_postman_id":"4c3ce5d1-6eb0-45a0-bc64-6740ec907bb9","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Enumerators","item":[{"name":"Get Countries","id":"b7d5e397-8a34-4db0-bf02-c3e2cbf90c21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/country","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["country"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"5a6b958b-8dd6-499f-8fcc-6221cc66eaba","name":"Get Countries","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/country"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"4457"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 28 Mar 2025 11:45:32 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"idCountry\": 1,\n        \"Abbreviation\": null,\n        \"Description\": \"AFGHANISTAN\",\n        \"IsoName\": \"AF\"\n    },\n    {\n        \"idCountry\": 2,\n        \"Abbreviation\": null,\n        \"Description\": \"ÅLAND ISLANDS\",\n        \"IsoName\": \"AX\"\n    },\n    {\n        \"idCountry\": 3,\n        \"Abbreviation\": null,\n        \"Description\": \"ALBANIA\",\n        \"IsoName\": \"AL\"\n    },\n    {\n        \"idCountry\": 4,\n        \"Abbreviation\": null,\n        \"Description\": \"ALGERIA\",\n        \"IsoName\": \"DZ\"\n    },\n    {\n        \"idCountry\": 5,\n        \"Abbreviation\": null,\n        \"Description\": \"AMERICAN SAMOA \",\n        \"IsoName\": \"AS\"\n    },\n    {\n        \"idCountry\": 6,\n        \"Abbreviation\": null,\n        \"Description\": \"ANDORRA\",\n        \"IsoName\": \"AD\"\n    },\n    {\n        \"idCountry\": 7,\n        \"Abbreviation\": null,\n        \"Description\": \"ANGOLA\",\n        \"IsoName\": \"AO\"\n    },\n    {\n        \"idCountry\": 8,\n        \"Abbreviation\": null,\n        \"Description\": \"ANGUILLA\",\n        \"IsoName\": \"AI\"\n    },\n    {\n        \"idCountry\": 9,\n        \"Abbreviation\": null,\n        \"Description\": \"ANTARCTICA\",\n        \"IsoName\": \"AQ\"\n    },\n    {\n        \"idCountry\": 10,\n        \"Abbreviation\": null,\n        \"Description\": \"ANTIGUA AND BARBUDA\",\n        \"IsoName\": \"AG\"\n    },\n    {\n        \"idCountry\": 11,\n        \"Abbreviation\": null,\n        \"Description\": \"ARGENTINA\",\n        \"IsoName\": \"AR\"\n    },\n    {\n        \"idCountry\": 12,\n        \"Abbreviation\": null,\n        \"Description\": \"ARMENIA\",\n        \"IsoName\": \"AM\"\n    },\n    {\n        \"idCountry\": 13,\n        \"Abbreviation\": null,\n        \"Description\": \"ARUBA\",\n        \"IsoName\": \"AW\"\n    },\n    {\n        \"idCountry\": 14,\n        \"Abbreviation\": null,\n        \"Description\": \"AUSTRALIA\",\n        \"IsoName\": \"AU\"\n    },\n    {\n        \"idCountry\": 15,\n        \"Abbreviation\": null,\n        \"Description\": \"AUSTRIA\",\n        \"IsoName\": \"AT\"\n    },\n    {\n        \"idCountry\": 16,\n        \"Abbreviation\": null,\n        \"Description\": \"AZERBAIJAN\",\n        \"IsoName\": \"AZ\"\n    },\n    {\n        \"idCountry\": 17,\n        \"Abbreviation\": null,\n        \"Description\": \"BAHAMAS\",\n        \"IsoName\": \"BS\"\n    },\n    {\n        \"idCountry\": 18,\n        \"Abbreviation\": null,\n        \"Description\": \"BAHRAIN\",\n        \"IsoName\": \"BH\"\n    },\n    {\n        \"idCountry\": 19,\n        \"Abbreviation\": null,\n        \"Description\": \"BANGLADESH\",\n        \"IsoName\": \"BD\"\n    },\n    {\n        \"idCountry\": 20,\n        \"Abbreviation\": null,\n        \"Description\": \"BARBADOS\",\n        \"IsoName\": \"BB\"\n    },\n    {\n        \"idCountry\": 21,\n        \"Abbreviation\": null,\n        \"Description\": \"BELARUS\",\n        \"IsoName\": \"BY\"\n    },\n    {\n        \"idCountry\": 22,\n        \"Abbreviation\": null,\n        \"Description\": \"BELGIUM\",\n        \"IsoName\": \"BE\"\n    },\n    {\n        \"idCountry\": 23,\n        \"Abbreviation\": null,\n        \"Description\": \"BELIZE\",\n        \"IsoName\": \"BZ\"\n    },\n    {\n        \"idCountry\": 24,\n        \"Abbreviation\": null,\n        \"Description\": \"BENIN\",\n        \"IsoName\": \"BJ\"\n    },\n    {\n        \"idCountry\": 25,\n        \"Abbreviation\": null,\n        \"Description\": \"BERMUDA\",\n        \"IsoName\": \"BM\"\n    },\n    {\n        \"idCountry\": 26,\n        \"Abbreviation\": null,\n        \"Description\": \"BHUTAN\",\n        \"IsoName\": \"BT\"\n    },\n    {\n        \"idCountry\": 27,\n        \"Abbreviation\": null,\n        \"Description\": \"BOLIVIA, PLURINATIONAL STATE OF\",\n        \"IsoName\": \"BO\"\n    },\n    {\n        \"idCountry\": 253,\n        \"Abbreviation\": null,\n        \"Description\": \"BONAIRE\",\n        \"IsoName\": \"BQ\"\n    },\n    {\n        \"idCountry\": 28,\n        \"Abbreviation\": null,\n        \"Description\": \"BOSNIA AND HERZEGOVINA\",\n        \"IsoName\": \"BA\"\n    },\n    {\n        \"idCountry\": 29,\n        \"Abbreviation\": null,\n        \"Description\": \"BOTSWANA\",\n        \"IsoName\": \"BW\"\n    },\n    {\n        \"idCountry\": 30,\n        \"Abbreviation\": null,\n        \"Description\": \"BOUVET ISLAND \",\n        \"IsoName\": \"BV\"\n    },\n    {\n        \"idCountry\": 31,\n        \"Abbreviation\": null,\n        \"Description\": \"BRAZIL\",\n        \"IsoName\": \"BR\"\n    },\n    {\n        \"idCountry\": 32,\n        \"Abbreviation\": null,\n        \"Description\": \"BRITISH INDIAN OCEAN TERRITORY \",\n        \"IsoName\": \"IO\"\n    },\n    {\n        \"idCountry\": 33,\n        \"Abbreviation\": null,\n        \"Description\": \"BRUNEI DARUSSALAM\",\n        \"IsoName\": \"BN\"\n    },\n    {\n        \"idCountry\": 34,\n        \"Abbreviation\": null,\n        \"Description\": \"BULGARIA\",\n        \"IsoName\": \"BG\"\n    },\n    {\n        \"idCountry\": 35,\n        \"Abbreviation\": null,\n        \"Description\": \"BURKINA FASO \",\n        \"IsoName\": \"BF\"\n    },\n    {\n        \"idCountry\": 36,\n        \"Abbreviation\": null,\n        \"Description\": \"BURUNDI\",\n        \"IsoName\": \"BI\"\n    },\n    {\n        \"idCountry\": 37,\n        \"Abbreviation\": null,\n        \"Description\": \"CAMBODIA\",\n        \"IsoName\": \"KH\"\n    },\n    {\n        \"idCountry\": 38,\n        \"Abbreviation\": null,\n        \"Description\": \"CAMEROON\",\n        \"IsoName\": \"CM\"\n    },\n    {\n        \"idCountry\": 39,\n        \"Abbreviation\": null,\n        \"Description\": \"CANADA\",\n        \"IsoName\": \"CA\"\n    },\n    {\n        \"idCountry\": 252,\n        \"Abbreviation\": null,\n        \"Description\": \"CANARY ISLANDS\",\n        \"IsoName\": \"IC\"\n    },\n    {\n        \"idCountry\": 40,\n        \"Abbreviation\": null,\n        \"Description\": \"CAPE VERDE\",\n        \"IsoName\": \"CV\"\n    },\n    {\n        \"idCountry\": 41,\n        \"Abbreviation\": null,\n        \"Description\": \"CAYMAN ISLANDS\",\n        \"IsoName\": \"KY\"\n    },\n    {\n        \"idCountry\": 42,\n        \"Abbreviation\": null,\n        \"Description\": \"CENTRAL AFRICAN REPUBLIC\",\n        \"IsoName\": \"CF\"\n    },\n    {\n        \"idCountry\": 43,\n        \"Abbreviation\": null,\n        \"Description\": \"CHAD\",\n        \"IsoName\": \"CD\"\n    },\n    {\n        \"idCountry\": 251,\n        \"Abbreviation\": null,\n        \"Description\": \"CHAD\",\n        \"IsoName\": \"TD\"\n    },\n    {\n        \"idCountry\": 44,\n        \"Abbreviation\": null,\n        \"Description\": \"CHILE\",\n        \"IsoName\": \"CL\"\n    },\n    {\n        \"idCountry\": 45,\n        \"Abbreviation\": null,\n        \"Description\": \"CHINA\",\n        \"IsoName\": \"CN\"\n    },\n    {\n        \"idCountry\": 46,\n        \"Abbreviation\": null,\n        \"Description\": \"CHRISTMAS ISLAND\",\n        \"IsoName\": \"CX\"\n    },\n    {\n        \"idCountry\": 47,\n        \"Abbreviation\": null,\n        \"Description\": \"COCOS (KEELING) ISLANDS \",\n        \"IsoName\": \"CC\"\n    },\n    {\n        \"idCountry\": 48,\n        \"Abbreviation\": null,\n        \"Description\": \"COLOMBIA\",\n        \"IsoName\": \"CO\"\n    },\n    {\n        \"idCountry\": 49,\n        \"Abbreviation\": null,\n        \"Description\": \"COMOROS\",\n        \"IsoName\": \"KM\"\n    },\n    {\n        \"idCountry\": 50,\n        \"Abbreviation\": null,\n        \"Description\": \"CONGO\",\n        \"IsoName\": \"CG\"\n    },\n    {\n        \"idCountry\": 51,\n        \"Abbreviation\": null,\n        \"Description\": \"CONGO, THE DEMOCRATIC REPUBLIC OF THE\",\n        \"IsoName\": \"CD\"\n    },\n    {\n        \"idCountry\": 52,\n        \"Abbreviation\": null,\n        \"Description\": \"COOK ISLANDS\",\n        \"IsoName\": \"CK\"\n    },\n    {\n        \"idCountry\": 53,\n        \"Abbreviation\": null,\n        \"Description\": \"COSTA RICA\",\n        \"IsoName\": \"CR\"\n    },\n    {\n        \"idCountry\": 54,\n        \"Abbreviation\": null,\n        \"Description\": \"CÔTE D'IVOIRE\",\n        \"IsoName\": \"CI\"\n    },\n    {\n        \"idCountry\": 55,\n        \"Abbreviation\": null,\n        \"Description\": \"CROATIA\",\n        \"IsoName\": \"HR\"\n    },\n    {\n        \"idCountry\": 56,\n        \"Abbreviation\": null,\n        \"Description\": \"CUBA\",\n        \"IsoName\": \"CU\"\n    },\n    {\n        \"idCountry\": 248,\n        \"Abbreviation\": null,\n        \"Description\": \"CURAÇAO\",\n        \"IsoName\": \"CW\"\n    },\n    {\n        \"idCountry\": 57,\n        \"Abbreviation\": null,\n        \"Description\": \"CYPRUS\",\n        \"IsoName\": \"CY\"\n    },\n    {\n        \"idCountry\": 58,\n        \"Abbreviation\": null,\n        \"Description\": \"CZECH REPUBLIC\",\n        \"IsoName\": \"CZ\"\n    },\n    {\n        \"idCountry\": 59,\n        \"Abbreviation\": null,\n        \"Description\": \"DENMARK\",\n        \"IsoName\": \"DK\"\n    },\n    {\n        \"idCountry\": 60,\n        \"Abbreviation\": null,\n        \"Description\": \"DJIBOUTI\",\n        \"IsoName\": \"DJ\"\n    },\n    {\n        \"idCountry\": 61,\n        \"Abbreviation\": null,\n        \"Description\": \"DOMINICA\",\n        \"IsoName\": \"DM\"\n    },\n    {\n        \"idCountry\": 62,\n        \"Abbreviation\": null,\n        \"Description\": \"DOMINICAN REPUBLIC \",\n        \"IsoName\": \"DO\"\n    },\n    {\n        \"idCountry\": 63,\n        \"Abbreviation\": null,\n        \"Description\": \"ECUADOR\",\n        \"IsoName\": \"EC\"\n    },\n    {\n        \"idCountry\": 64,\n        \"Abbreviation\": null,\n        \"Description\": \"EGYPT\",\n        \"IsoName\": \"EG\"\n    },\n    {\n        \"idCountry\": 65,\n        \"Abbreviation\": null,\n        \"Description\": \"EL SALVADOR\",\n        \"IsoName\": \"SV\"\n    },\n    {\n        \"idCountry\": 66,\n        \"Abbreviation\": null,\n        \"Description\": \"EQUATORIAL GUINEA\",\n        \"IsoName\": \"GQ\"\n    },\n    {\n        \"idCountry\": 67,\n        \"Abbreviation\": null,\n        \"Description\": \"ERITREA\",\n        \"IsoName\": \"ER\"\n    },\n    {\n        \"idCountry\": 68,\n        \"Abbreviation\": null,\n        \"Description\": \"ESTONIA\",\n        \"IsoName\": \"EE\"\n    },\n    {\n        \"idCountry\": 69,\n        \"Abbreviation\": null,\n        \"Description\": \"ETHIOPIA\",\n        \"IsoName\": \"ET\"\n    },\n    {\n        \"idCountry\": 70,\n        \"Abbreviation\": null,\n        \"Description\": \"FALKLAND ISLANDS (MALVINAS)\",\n        \"IsoName\": \"FK\"\n    },\n    {\n        \"idCountry\": 71,\n        \"Abbreviation\": null,\n        \"Description\": \"FAROE ISLANDS\",\n        \"IsoName\": \"FO\"\n    },\n    {\n        \"idCountry\": 72,\n        \"Abbreviation\": null,\n        \"Description\": \"FIJI\",\n        \"IsoName\": \"FJ\"\n    },\n    {\n        \"idCountry\": 73,\n        \"Abbreviation\": null,\n        \"Description\": \"FINLAND\",\n        \"IsoName\": \"FI\"\n    },\n    {\n        \"idCountry\": 74,\n        \"Abbreviation\": null,\n        \"Description\": \"FRANCE\",\n        \"IsoName\": \"FR\"\n    },\n    {\n        \"idCountry\": 75,\n        \"Abbreviation\": null,\n        \"Description\": \"FRENCH GUIANA\",\n        \"IsoName\": \"GF\"\n    },\n    {\n        \"idCountry\": 76,\n        \"Abbreviation\": null,\n        \"Description\": \"FRENCH POLYNESIA\",\n        \"IsoName\": \"PF\"\n    },\n    {\n        \"idCountry\": 77,\n        \"Abbreviation\": null,\n        \"Description\": \"FRENCH SOUTHERN TERRITORIES\",\n        \"IsoName\": \"TF\"\n    },\n    {\n        \"idCountry\": 78,\n        \"Abbreviation\": null,\n        \"Description\": \"GABON\",\n        \"IsoName\": \"GA\"\n    },\n    {\n        \"idCountry\": 79,\n        \"Abbreviation\": null,\n        \"Description\": \"GAMBIA\",\n        \"IsoName\": \"GM\"\n    },\n    {\n        \"idCountry\": 80,\n        \"Abbreviation\": null,\n        \"Description\": \"GEORGIA\",\n        \"IsoName\": \"GE\"\n    },\n    {\n        \"idCountry\": 81,\n        \"Abbreviation\": null,\n        \"Description\": \"GERMANY\",\n        \"IsoName\": \"DE\"\n    },\n    {\n        \"idCountry\": 82,\n        \"Abbreviation\": null,\n        \"Description\": \"GHANA\",\n        \"IsoName\": \"GH\"\n    },\n    {\n        \"idCountry\": 83,\n        \"Abbreviation\": null,\n        \"Description\": \"GIBRALTAR\",\n        \"IsoName\": \"GI\"\n    },\n    {\n        \"idCountry\": 84,\n        \"Abbreviation\": null,\n        \"Description\": \"GREECE\",\n        \"IsoName\": \"GR\"\n    },\n    {\n        \"idCountry\": 85,\n        \"Abbreviation\": null,\n        \"Description\": \"GREENLAND\",\n        \"IsoName\": \"GL\"\n    },\n    {\n        \"idCountry\": 86,\n        \"Abbreviation\": null,\n        \"Description\": \"GRENADA\",\n        \"IsoName\": \"GD\"\n    },\n    {\n        \"idCountry\": 87,\n        \"Abbreviation\": null,\n        \"Description\": \"GUADELOUPE\",\n        \"IsoName\": \"GP\"\n    },\n    {\n        \"idCountry\": 88,\n        \"Abbreviation\": null,\n        \"Description\": \"GUAM\",\n        \"IsoName\": \"GU\"\n    },\n    {\n        \"idCountry\": 89,\n        \"Abbreviation\": null,\n        \"Description\": \"GUATEMALA\",\n        \"IsoName\": \"GT\"\n    },\n    {\n        \"idCountry\": 90,\n        \"Abbreviation\": null,\n        \"Description\": \"GUERNSEY\",\n        \"IsoName\": \"GG\"\n    },\n    {\n        \"idCountry\": 91,\n        \"Abbreviation\": null,\n        \"Description\": \"GUINEA\",\n        \"IsoName\": \"GN\"\n    },\n    {\n        \"idCountry\": 92,\n        \"Abbreviation\": null,\n        \"Description\": \"GUINEA-BISSAU\",\n        \"IsoName\": \"GW\"\n    },\n    {\n        \"idCountry\": 93,\n        \"Abbreviation\": null,\n        \"Description\": \"GUYANA\",\n        \"IsoName\": \"GY\"\n    },\n    {\n        \"idCountry\": 94,\n        \"Abbreviation\": null,\n        \"Description\": \"HAITI\",\n        \"IsoName\": \"HT\"\n    },\n    {\n        \"idCountry\": 95,\n        \"Abbreviation\": null,\n        \"Description\": \"HEARD ISLAND AND MCDONALD ISLANDS\",\n        \"IsoName\": \"HM\"\n    },\n    {\n        \"idCountry\": 96,\n        \"Abbreviation\": null,\n        \"Description\": \"HOLY SEE (VATICAN CITY STATE)\",\n        \"IsoName\": \"VA\"\n    },\n    {\n        \"idCountry\": 97,\n        \"Abbreviation\": null,\n        \"Description\": \"HONDURAS\",\n        \"IsoName\": \"HN\"\n    },\n    {\n        \"idCountry\": 98,\n        \"Abbreviation\": null,\n        \"Description\": \"HONG KONG\",\n        \"IsoName\": \"HK\"\n    },\n    {\n        \"idCountry\": 99,\n        \"Abbreviation\": null,\n        \"Description\": \"HUNGARY\",\n        \"IsoName\": \"HU\"\n    },\n    {\n        \"idCountry\": 100,\n        \"Abbreviation\": null,\n        \"Description\": \"ICELAND\",\n        \"IsoName\": \"IS\"\n    },\n    {\n        \"idCountry\": 101,\n        \"Abbreviation\": null,\n        \"Description\": \"INDIA\",\n        \"IsoName\": \"IN\"\n    },\n    {\n        \"idCountry\": 102,\n        \"Abbreviation\": null,\n        \"Description\": \"INDONESIA\",\n        \"IsoName\": \"ID\"\n    },\n    {\n        \"idCountry\": 103,\n        \"Abbreviation\": null,\n        \"Description\": \"IRAN, ISLAMIC REPUBLIC OF\",\n        \"IsoName\": \"IR\"\n    },\n    {\n        \"idCountry\": 104,\n        \"Abbreviation\": null,\n        \"Description\": \"IRAQ\",\n        \"IsoName\": \"IQ\"\n    },\n    {\n        \"idCountry\": 105,\n        \"Abbreviation\": null,\n        \"Description\": \"IRELAND\",\n        \"IsoName\": \"IE\"\n    },\n    {\n        \"idCountry\": 106,\n        \"Abbreviation\": null,\n        \"Description\": \"ISLE OF MAN\",\n        \"IsoName\": \"IM\"\n    },\n    {\n        \"idCountry\": 107,\n        \"Abbreviation\": null,\n        \"Description\": \"ISRAEL\",\n        \"IsoName\": \"IL\"\n    },\n    {\n        \"idCountry\": 108,\n        \"Abbreviation\": null,\n        \"Description\": \"ITALY\",\n        \"IsoName\": \"IT\"\n    },\n    {\n        \"idCountry\": 109,\n        \"Abbreviation\": null,\n        \"Description\": \"JAMAICA\",\n        \"IsoName\": \"JM\"\n    },\n    {\n        \"idCountry\": 110,\n        \"Abbreviation\": null,\n        \"Description\": \"JAPAN\",\n        \"IsoName\": \"JP\"\n    },\n    {\n        \"idCountry\": 111,\n        \"Abbreviation\": null,\n        \"Description\": \"JERSEY\",\n        \"IsoName\": \"JE\"\n    },\n    {\n        \"idCountry\": 112,\n        \"Abbreviation\": null,\n        \"Description\": \"JORDAN\",\n        \"IsoName\": \"JO\"\n    },\n    {\n        \"idCountry\": 113,\n        \"Abbreviation\": null,\n        \"Description\": \"KAZAKHSTAN\",\n        \"IsoName\": \"KZ\"\n    },\n    {\n        \"idCountry\": 114,\n        \"Abbreviation\": null,\n        \"Description\": \"KENYA\",\n        \"IsoName\": \"KE\"\n    },\n    {\n        \"idCountry\": 115,\n        \"Abbreviation\": null,\n        \"Description\": \"KIRIBATI\",\n        \"IsoName\": \"KI\"\n    },\n    {\n        \"idCountry\": 116,\n        \"Abbreviation\": null,\n        \"Description\": \"KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF\",\n        \"IsoName\": \"KP\"\n    },\n    {\n        \"idCountry\": 117,\n        \"Abbreviation\": null,\n        \"Description\": \"KOREA, REPUBLIC OF \",\n        \"IsoName\": \"KR\"\n    },\n    {\n        \"idCountry\": 249,\n        \"Abbreviation\": null,\n        \"Description\": \"KOSOVO\",\n        \"IsoName\": \"XK\"\n    },\n    {\n        \"idCountry\": 118,\n        \"Abbreviation\": null,\n        \"Description\": \"KUWAIT\",\n        \"IsoName\": \"KW\"\n    },\n    {\n        \"idCountry\": 119,\n        \"Abbreviation\": null,\n        \"Description\": \"KYRGYZSTAN\",\n        \"IsoName\": \"KG\"\n    },\n    {\n        \"idCountry\": 120,\n        \"Abbreviation\": null,\n        \"Description\": \"LAO PEOPLE'S DEMOCRATIC REPUBLIC\",\n        \"IsoName\": \"LA\"\n    },\n    {\n        \"idCountry\": 121,\n        \"Abbreviation\": null,\n        \"Description\": \"LATVIA\",\n        \"IsoName\": \"LV\"\n    },\n    {\n        \"idCountry\": 122,\n        \"Abbreviation\": null,\n        \"Description\": \"LEBANON\",\n        \"IsoName\": \"LB\"\n    },\n    {\n        \"idCountry\": 123,\n        \"Abbreviation\": null,\n        \"Description\": \"LESOTHO\",\n        \"IsoName\": \"LS\"\n    },\n    {\n        \"idCountry\": 124,\n        \"Abbreviation\": null,\n        \"Description\": \"LIBERIA\",\n        \"IsoName\": \"LR\"\n    },\n    {\n        \"idCountry\": 125,\n        \"Abbreviation\": null,\n        \"Description\": \"LIBYAN ARAB JAMAHIRIYA \",\n        \"IsoName\": \"LY\"\n    },\n    {\n        \"idCountry\": 126,\n        \"Abbreviation\": null,\n        \"Description\": \"LIECHTENSTEIN\",\n        \"IsoName\": \"LI\"\n    },\n    {\n        \"idCountry\": 127,\n        \"Abbreviation\": null,\n        \"Description\": \"LITHUANIA\",\n        \"IsoName\": \"LT\"\n    },\n    {\n        \"idCountry\": 128,\n        \"Abbreviation\": null,\n        \"Description\": \"LUXEMBOURG\",\n        \"IsoName\": \"LU\"\n    },\n    {\n        \"idCountry\": 129,\n        \"Abbreviation\": null,\n        \"Description\": \"MACAO\",\n        \"IsoName\": \"MO\"\n    },\n    {\n        \"idCountry\": 130,\n        \"Abbreviation\": null,\n        \"Description\": \"MACEDONIA, THE FORMER YUGOSLAV REPUBLIC OF\",\n        \"IsoName\": \"MK\"\n    },\n    {\n        \"idCountry\": 131,\n        \"Abbreviation\": null,\n        \"Description\": \"MADAGASCAR\",\n        \"IsoName\": \"MG\"\n    },\n    {\n        \"idCountry\": 132,\n        \"Abbreviation\": null,\n        \"Description\": \"MALAWI\",\n        \"IsoName\": \"MW\"\n    },\n    {\n        \"idCountry\": 133,\n        \"Abbreviation\": null,\n        \"Description\": \"MALAYSIA\",\n        \"IsoName\": \"MY\"\n    },\n    {\n        \"idCountry\": 134,\n        \"Abbreviation\": null,\n        \"Description\": \"MALDIVES\",\n        \"IsoName\": \"MV\"\n    },\n    {\n        \"idCountry\": 135,\n        \"Abbreviation\": null,\n        \"Description\": \"MALI\",\n        \"IsoName\": \"ML\"\n    },\n    {\n        \"idCountry\": 136,\n        \"Abbreviation\": null,\n        \"Description\": \"MALTA\",\n        \"IsoName\": \"MT\"\n    },\n    {\n        \"idCountry\": 137,\n        \"Abbreviation\": null,\n        \"Description\": \"MARSHALL ISLANDS \",\n        \"IsoName\": \"MH\"\n    },\n    {\n        \"idCountry\": 138,\n        \"Abbreviation\": null,\n        \"Description\": \"MARTINIQUE\",\n        \"IsoName\": \"MQ\"\n    },\n    {\n        \"idCountry\": 139,\n        \"Abbreviation\": null,\n        \"Description\": \"MAURITANIA\",\n        \"IsoName\": \"MR\"\n    },\n    {\n        \"idCountry\": 140,\n        \"Abbreviation\": null,\n        \"Description\": \"MAURITIUS\",\n        \"IsoName\": \"MU\"\n    },\n    {\n        \"idCountry\": 141,\n        \"Abbreviation\": null,\n        \"Description\": \"MAYOTTE\",\n        \"IsoName\": \"YT\"\n    },\n    {\n        \"idCountry\": 142,\n        \"Abbreviation\": null,\n        \"Description\": \"MEXICO\",\n        \"IsoName\": \"MX\"\n    },\n    {\n        \"idCountry\": 143,\n        \"Abbreviation\": null,\n        \"Description\": \"MICRONESIA, FEDERATED STATES OF\",\n        \"IsoName\": \"FM\"\n    },\n    {\n        \"idCountry\": 144,\n        \"Abbreviation\": null,\n        \"Description\": \"MOLDOVA, REPUBLIC OF\",\n        \"IsoName\": \"MD\"\n    },\n    {\n        \"idCountry\": 145,\n        \"Abbreviation\": null,\n        \"Description\": \"MONACO\",\n        \"IsoName\": \"MC\"\n    },\n    {\n        \"idCountry\": 146,\n        \"Abbreviation\": null,\n        \"Description\": \"MONGOLIA\",\n        \"IsoName\": \"MN\"\n    },\n    {\n        \"idCountry\": 147,\n        \"Abbreviation\": null,\n        \"Description\": \"MONTENEGRO\",\n        \"IsoName\": \"ME\"\n    },\n    {\n        \"idCountry\": 148,\n        \"Abbreviation\": null,\n        \"Description\": \"MONTSERRAT\",\n        \"IsoName\": \"MS\"\n    },\n    {\n        \"idCountry\": 149,\n        \"Abbreviation\": null,\n        \"Description\": \"MOROCCO\",\n        \"IsoName\": \"MA\"\n    },\n    {\n        \"idCountry\": 150,\n        \"Abbreviation\": null,\n        \"Description\": \"MOZAMBIQUE\",\n        \"IsoName\": \"MZ\"\n    },\n    {\n        \"idCountry\": 151,\n        \"Abbreviation\": null,\n        \"Description\": \"MYANMAR\",\n        \"IsoName\": \"MM\"\n    },\n    {\n        \"idCountry\": 152,\n        \"Abbreviation\": null,\n        \"Description\": \"NAMIBIA\",\n        \"IsoName\": \"NA\"\n    },\n    {\n        \"idCountry\": 153,\n        \"Abbreviation\": null,\n        \"Description\": \"NAURU\",\n        \"IsoName\": \"NR\"\n    },\n    {\n        \"idCountry\": 154,\n        \"Abbreviation\": null,\n        \"Description\": \"NEPAL\",\n        \"IsoName\": \"NP\"\n    },\n    {\n        \"idCountry\": 155,\n        \"Abbreviation\": null,\n        \"Description\": \"NETHERLANDS\",\n        \"IsoName\": \"NL\"\n    },\n    {\n        \"idCountry\": 156,\n        \"Abbreviation\": null,\n        \"Description\": \"NETHERLANDS ANTILLES\",\n        \"IsoName\": \"AN\"\n    },\n    {\n        \"idCountry\": 157,\n        \"Abbreviation\": null,\n        \"Description\": \"NEW CALEDONIA\",\n        \"IsoName\": \"NC\"\n    },\n    {\n        \"idCountry\": 158,\n        \"Abbreviation\": null,\n        \"Description\": \"NEW ZEALAND\",\n        \"IsoName\": \"NZ\"\n    },\n    {\n        \"idCountry\": 159,\n        \"Abbreviation\": null,\n        \"Description\": \"NICARAGUA\",\n        \"IsoName\": \"NI\"\n    },\n    {\n        \"idCountry\": 160,\n        \"Abbreviation\": null,\n        \"Description\": \"NIGER\",\n        \"IsoName\": \"NE\"\n    },\n    {\n        \"idCountry\": 161,\n        \"Abbreviation\": null,\n        \"Description\": \"NIGERIA\",\n        \"IsoName\": \"NG\"\n    },\n    {\n        \"idCountry\": 162,\n        \"Abbreviation\": null,\n        \"Description\": \"NIUE\",\n        \"IsoName\": \"NU\"\n    },\n    {\n        \"idCountry\": 163,\n        \"Abbreviation\": null,\n        \"Description\": \"NORFOLK ISLAND\",\n        \"IsoName\": \"NF\"\n    },\n    {\n        \"idCountry\": 164,\n        \"Abbreviation\": null,\n        \"Description\": \"NORTHERN MARIANA ISLANDS\",\n        \"IsoName\": \"MP\"\n    },\n    {\n        \"idCountry\": 165,\n        \"Abbreviation\": null,\n        \"Description\": \"NORWAY\",\n        \"IsoName\": \"NO\"\n    },\n    {\n        \"idCountry\": 166,\n        \"Abbreviation\": null,\n        \"Description\": \"OMAN\",\n        \"IsoName\": \"OM\"\n    },\n    {\n        \"idCountry\": 167,\n        \"Abbreviation\": null,\n        \"Description\": \"PAKISTAN\",\n        \"IsoName\": \"PK\"\n    },\n    {\n        \"idCountry\": 168,\n        \"Abbreviation\": null,\n        \"Description\": \"PALAU\",\n        \"IsoName\": \"PW\"\n    },\n    {\n        \"idCountry\": 169,\n        \"Abbreviation\": null,\n        \"Description\": \"PALESTINIAN TERRITORY, OCCUPIED\",\n        \"IsoName\": \"PS\"\n    },\n    {\n        \"idCountry\": 170,\n        \"Abbreviation\": null,\n        \"Description\": \"PANAMA\",\n        \"IsoName\": \"PA\"\n    },\n    {\n        \"idCountry\": 171,\n        \"Abbreviation\": null,\n        \"Description\": \"PAPUA NEW GUINEA\",\n        \"IsoName\": \"PG\"\n    },\n    {\n        \"idCountry\": 172,\n        \"Abbreviation\": null,\n        \"Description\": \"PARAGUAY\",\n        \"IsoName\": \"PY\"\n    },\n    {\n        \"idCountry\": 173,\n        \"Abbreviation\": null,\n        \"Description\": \"PERU\",\n        \"IsoName\": \"PE\"\n    },\n    {\n        \"idCountry\": 174,\n        \"Abbreviation\": null,\n        \"Description\": \"PHILIPPINES\",\n        \"IsoName\": \"PH\"\n    },\n    {\n        \"idCountry\": 175,\n        \"Abbreviation\": null,\n        \"Description\": \"PITCAIRN\",\n        \"IsoName\": \"PN\"\n    },\n    {\n        \"idCountry\": 176,\n        \"Abbreviation\": null,\n        \"Description\": \"POLAND\",\n        \"IsoName\": \"PL\"\n    },\n    {\n        \"idCountry\": 177,\n        \"Abbreviation\": null,\n        \"Description\": \"PORTUGAL\",\n        \"IsoName\": \"PT\"\n    },\n    {\n        \"idCountry\": 178,\n        \"Abbreviation\": null,\n        \"Description\": \"PUERTO RICO\",\n        \"IsoName\": \"PR\"\n    },\n    {\n        \"idCountry\": 179,\n        \"Abbreviation\": null,\n        \"Description\": \"QATAR\",\n        \"IsoName\": \"QA\"\n    },\n    {\n        \"idCountry\": 180,\n        \"Abbreviation\": null,\n        \"Description\": \"RÉUNION\",\n        \"IsoName\": \"RE\"\n    },\n    {\n        \"idCountry\": 181,\n        \"Abbreviation\": null,\n        \"Description\": \"ROMANIA\",\n        \"IsoName\": \"RO\"\n    },\n    {\n        \"idCountry\": 182,\n        \"Abbreviation\": null,\n        \"Description\": \"RUSSIAN FEDERATION\",\n        \"IsoName\": \"RU\"\n    },\n    {\n        \"idCountry\": 183,\n        \"Abbreviation\": null,\n        \"Description\": \"RWANDA\",\n        \"IsoName\": \"RW\"\n    },\n    {\n        \"idCountry\": 184,\n        \"Abbreviation\": null,\n        \"Description\": \"SAINT BARTHÉLEMY\",\n        \"IsoName\": \"BL\"\n    },\n    {\n        \"idCountry\": 185,\n        \"Abbreviation\": null,\n        \"Description\": \"SAINT HELENA\",\n        \"IsoName\": \"SH\"\n    },\n    {\n        \"idCountry\": 186,\n        \"Abbreviation\": null,\n        \"Description\": \"SAINT KITTS AND NEVIS\",\n        \"IsoName\": \"KN\"\n    },\n    {\n        \"idCountry\": 187,\n        \"Abbreviation\": null,\n        \"Description\": \"SAINT LUCIA\",\n        \"IsoName\": \"LC\"\n    },\n    {\n        \"idCountry\": 188,\n        \"Abbreviation\": null,\n        \"Description\": \"SAINT MARTIN (FRENCH PART)\",\n        \"IsoName\": \"MF\"\n    },\n    {\n        \"idCountry\": 189,\n        \"Abbreviation\": null,\n        \"Description\": \"SAINT PIERRE AND MIQUELON\",\n        \"IsoName\": \"PM\"\n    },\n    {\n        \"idCountry\": 190,\n        \"Abbreviation\": null,\n        \"Description\": \"SAINT VINCENT AND THE GRENADINES \",\n        \"IsoName\": \"VC\"\n    },\n    {\n        \"idCountry\": 191,\n        \"Abbreviation\": null,\n        \"Description\": \"SAMOA\",\n        \"IsoName\": \"WS\"\n    },\n    {\n        \"idCountry\": 192,\n        \"Abbreviation\": null,\n        \"Description\": \"SAN MARINO\",\n        \"IsoName\": \"SM\"\n    },\n    {\n        \"idCountry\": 193,\n        \"Abbreviation\": null,\n        \"Description\": \"SAO TOME AND PRINCIPE\",\n        \"IsoName\": \"ST\"\n    },\n    {\n        \"idCountry\": 194,\n        \"Abbreviation\": null,\n        \"Description\": \"SAUDI ARABIA\",\n        \"IsoName\": \"SA\"\n    },\n    {\n        \"idCountry\": 195,\n        \"Abbreviation\": null,\n        \"Description\": \"SENEGAL\",\n        \"IsoName\": \"SN\"\n    },\n    {\n        \"idCountry\": 196,\n        \"Abbreviation\": null,\n        \"Description\": \"SERBIA\",\n        \"IsoName\": \"RS\"\n    },\n    {\n        \"idCountry\": 197,\n        \"Abbreviation\": null,\n        \"Description\": \"SEYCHELLES\",\n        \"IsoName\": \"SC\"\n    },\n    {\n        \"idCountry\": 198,\n        \"Abbreviation\": null,\n        \"Description\": \"SIERRA LEONE\",\n        \"IsoName\": \"SL\"\n    },\n    {\n        \"idCountry\": 199,\n        \"Abbreviation\": null,\n        \"Description\": \"SINGAPORE\",\n        \"IsoName\": \"SG\"\n    },\n    {\n        \"idCountry\": 250,\n        \"Abbreviation\": null,\n        \"Description\": \"SINT MAARTEN (DUTCH PART)\",\n        \"IsoName\": \"SX\"\n    },\n    {\n        \"idCountry\": 200,\n        \"Abbreviation\": null,\n        \"Description\": \"SLOVAKIA\",\n        \"IsoName\": \"SK\"\n    },\n    {\n        \"idCountry\": 201,\n        \"Abbreviation\": null,\n        \"Description\": \"SLOVENIA\",\n        \"IsoName\": \"SI\"\n    },\n    {\n        \"idCountry\": 202,\n        \"Abbreviation\": null,\n        \"Description\": \"SOLOMON ISLANDS \",\n        \"IsoName\": \"SB\"\n    },\n    {\n        \"idCountry\": 203,\n        \"Abbreviation\": null,\n        \"Description\": \"SOMALIA\",\n        \"IsoName\": \"SO\"\n    },\n    {\n        \"idCountry\": 204,\n        \"Abbreviation\": null,\n        \"Description\": \"SOUTH AFRICA\",\n        \"IsoName\": \"ZA\"\n    },\n    {\n        \"idCountry\": 205,\n        \"Abbreviation\": null,\n        \"Description\": \"SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS\",\n        \"IsoName\": \"GS\"\n    },\n    {\n        \"idCountry\": 206,\n        \"Abbreviation\": null,\n        \"Description\": \"SPAIN\",\n        \"IsoName\": \"ES\"\n    },\n    {\n        \"idCountry\": 207,\n        \"Abbreviation\": null,\n        \"Description\": \"SRI LANKA \",\n        \"IsoName\": \"LK\"\n    },\n    {\n        \"idCountry\": 208,\n        \"Abbreviation\": null,\n        \"Description\": \"SUDAN\",\n        \"IsoName\": \"SD\"\n    },\n    {\n        \"idCountry\": 209,\n        \"Abbreviation\": null,\n        \"Description\": \"SURINAME\",\n        \"IsoName\": \"SR\"\n    },\n    {\n        \"idCountry\": 210,\n        \"Abbreviation\": null,\n        \"Description\": \"SVALBARD AND JAN MAYEN\",\n        \"IsoName\": \"SJ\"\n    },\n    {\n        \"idCountry\": 211,\n        \"Abbreviation\": null,\n        \"Description\": \"SWAZILAND\",\n        \"IsoName\": \"SZ\"\n    },\n    {\n        \"idCountry\": 212,\n        \"Abbreviation\": null,\n        \"Description\": \"SWEDEN\",\n        \"IsoName\": \"SE\"\n    },\n    {\n        \"idCountry\": 213,\n        \"Abbreviation\": null,\n        \"Description\": \"SWITZERLAND\",\n        \"IsoName\": \"CH\"\n    },\n    {\n        \"idCountry\": 214,\n        \"Abbreviation\": null,\n        \"Description\": \"SYRIAN ARAB REPUBLIC\",\n        \"IsoName\": \"SY\"\n    },\n    {\n        \"idCountry\": 215,\n        \"Abbreviation\": null,\n        \"Description\": \"TAIWAN, PROVINCE OF CHINA\",\n        \"IsoName\": \"TW\"\n    },\n    {\n        \"idCountry\": 216,\n        \"Abbreviation\": null,\n        \"Description\": \"TAJIKISTAN\",\n        \"IsoName\": \"TJ\"\n    },\n    {\n        \"idCountry\": 217,\n        \"Abbreviation\": null,\n        \"Description\": \"TANZANIA, UNITED REPUBLIC OF\",\n        \"IsoName\": \"TZ\"\n    },\n    {\n        \"idCountry\": 218,\n        \"Abbreviation\": null,\n        \"Description\": \"THAILAND\",\n        \"IsoName\": \"TH\"\n    },\n    {\n        \"idCountry\": 219,\n        \"Abbreviation\": null,\n        \"Description\": \"TIMOR-LESTE\",\n        \"IsoName\": \"TL\"\n    },\n    {\n        \"idCountry\": 220,\n        \"Abbreviation\": null,\n        \"Description\": \"TOGO\",\n        \"IsoName\": \"TG\"\n    },\n    {\n        \"idCountry\": 221,\n        \"Abbreviation\": null,\n        \"Description\": \"TOKELAU\",\n        \"IsoName\": \"TK\"\n    },\n    {\n        \"idCountry\": 222,\n        \"Abbreviation\": null,\n        \"Description\": \"TONGA\",\n        \"IsoName\": \"TO\"\n    },\n    {\n        \"idCountry\": 223,\n        \"Abbreviation\": null,\n        \"Description\": \"TRINIDAD AND TOBAGO\",\n        \"IsoName\": \"TT\"\n    },\n    {\n        \"idCountry\": 224,\n        \"Abbreviation\": null,\n        \"Description\": \"TUNISIA\",\n        \"IsoName\": \"TN\"\n    },\n    {\n        \"idCountry\": 225,\n        \"Abbreviation\": null,\n        \"Description\": \"TURKEY\",\n        \"IsoName\": \"TR\"\n    },\n    {\n        \"idCountry\": 226,\n        \"Abbreviation\": null,\n        \"Description\": \"TURKMENISTAN\",\n        \"IsoName\": \"TM\"\n    },\n    {\n        \"idCountry\": 227,\n        \"Abbreviation\": null,\n        \"Description\": \"TURKS AND CAICOS ISLANDS\",\n        \"IsoName\": \"TC\"\n    },\n    {\n        \"idCountry\": 228,\n        \"Abbreviation\": null,\n        \"Description\": \"TUVALU\",\n        \"IsoName\": \"TV\"\n    },\n    {\n        \"idCountry\": 229,\n        \"Abbreviation\": null,\n        \"Description\": \"UGANDA\",\n        \"IsoName\": \"UG\"\n    },\n    {\n        \"idCountry\": 230,\n        \"Abbreviation\": null,\n        \"Description\": \"UKRAINE\",\n        \"IsoName\": \"UA\"\n    },\n    {\n        \"idCountry\": 231,\n        \"Abbreviation\": null,\n        \"Description\": \"UNITED ARAB EMIRATES\",\n        \"IsoName\": \"AE\"\n    },\n    {\n        \"idCountry\": 232,\n        \"Abbreviation\": null,\n        \"Description\": \"UNITED KINGDOM\",\n        \"IsoName\": \"GB\"\n    },\n    {\n        \"idCountry\": 233,\n        \"Abbreviation\": null,\n        \"Description\": \"UNITED STATES\",\n        \"IsoName\": \"US\"\n    },\n    {\n        \"idCountry\": 234,\n        \"Abbreviation\": null,\n        \"Description\": \"UNITED STATES MINOR OUTLYING ISLANDS\",\n        \"IsoName\": \"UM\"\n    },\n    {\n        \"idCountry\": 235,\n        \"Abbreviation\": null,\n        \"Description\": \"URUGUAY\",\n        \"IsoName\": \"UY\"\n    },\n    {\n        \"idCountry\": 236,\n        \"Abbreviation\": null,\n        \"Description\": \"UZBEKISTAN\",\n        \"IsoName\": \"UZ\"\n    },\n    {\n        \"idCountry\": 237,\n        \"Abbreviation\": null,\n        \"Description\": \"VANUATU\",\n        \"IsoName\": \"VU\"\n    },\n    {\n        \"idCountry\": 238,\n        \"Abbreviation\": null,\n        \"Description\": \"VATICAN CITY STATE\",\n        \"IsoName\": \"VA\"\n    },\n    {\n        \"idCountry\": 239,\n        \"Abbreviation\": null,\n        \"Description\": \"VENEZUELA, BOLIVARIAN REPUBLIC OF\",\n        \"IsoName\": \"VE\"\n    },\n    {\n        \"idCountry\": 240,\n        \"Abbreviation\": null,\n        \"Description\": \"VIET NAM\",\n        \"IsoName\": \"VN\"\n    },\n    {\n        \"idCountry\": 241,\n        \"Abbreviation\": null,\n        \"Description\": \"VIRGIN ISLANDS, BRITISH\",\n        \"IsoName\": \"VG\"\n    },\n    {\n        \"idCountry\": 242,\n        \"Abbreviation\": null,\n        \"Description\": \"VIRGIN ISLANDS, U.S.\",\n        \"IsoName\": \"VI\"\n    },\n    {\n        \"idCountry\": 243,\n        \"Abbreviation\": null,\n        \"Description\": \"WALLIS AND FUTUNA\",\n        \"IsoName\": \"WF\"\n    },\n    {\n        \"idCountry\": 244,\n        \"Abbreviation\": null,\n        \"Description\": \"WESTERN SAHARA \",\n        \"IsoName\": \"EH\"\n    },\n    {\n        \"idCountry\": 245,\n        \"Abbreviation\": null,\n        \"Description\": \"YEMEN\",\n        \"IsoName\": \"YE\"\n    },\n    {\n        \"idCountry\": 246,\n        \"Abbreviation\": null,\n        \"Description\": \"ZAMBIA\",\n        \"IsoName\": \"ZM\"\n    },\n    {\n        \"idCountry\": 247,\n        \"Abbreviation\": null,\n        \"Description\": \"ZIMBABWE\",\n        \"IsoName\": \"ZW\"\n    }\n]"}],"_postman_id":"b7d5e397-8a34-4db0-bf02-c3e2cbf90c21"}],"id":"f4787094-773e-4cb1-8d22-c54953d3a679","_postman_id":"f4787094-773e-4cb1-8d22-c54953d3a679","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}}],"id":"0bdca172-4622-4ede-ab56-443a8815a2ae","_postman_id":"0bdca172-4622-4ede-ab56-443a8815a2ae","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Inventory Hub","item":[{"name":"Folders","item":[{"name":"Create","id":"36138827-39a2-3511-8329-a03705b7aab6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CategoryName\":\"Name of the category\",          //Nome della cartella\n    \"idParent\":1                                    //ID della cartella padre, obbligatorio. Se si vuole creare una cartella radice, valorizzarlo a 1.\n}"},"url":"{{endpoint}}/Folders/Create","description":"<p>Crea una cartella.</p>\n<ul>\n<li><strong>idParent</strong>: id della cartella padre. Deve necessariamente essere valorizzato. Se impostato a 1, viene creata come cartella radice.</li>\n<li><strong>CategoryName</strong>: nome della cartella</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["Folders","Create"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"36138827-39a2-3511-8329-a03705b7aab6"},{"name":"Root","id":"0119701e-6131-47e6-e391-8215e1a11cf7","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{endpoint}}/Folders/","description":"<p>Recupera le categorie radice, ovvero quelle con idParent impostato a 1.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["Folders",""],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0119701e-6131-47e6-e391-8215e1a11cf7"},{"name":"Children","id":"e026d74d-cec0-91bb-f93b-6171091f8021","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"https://rest.edock.it/api/Folders/?id=1&loadAll=false","description":"<p>Recupera le categorie figlie di una cartella il cui \nID è passato nel parametro id.</p>\n<ul>\n<li><strong>id</strong>: id della cartella di cui si vuole recuperare le figlie</li>\n<li><strong>loadAll</strong>: se impostato a true, permette di recuperare tutte le categorie figlie, di qualunque livello</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"protocol":"https","path":["api","Folders",""],"host":["rest","edock","it"],"query":[{"key":"id","value":"1"},{"key":"loadAll","value":"false"}],"variable":[]}},"response":[],"_postman_id":"e026d74d-cec0-91bb-f93b-6171091f8021"},{"name":"Update","id":"8736f732-08ae-92c6-3777-87831b8c4370","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"idCategory\":8673,                          //ID della cartela che si intende aggiornare. Obbligatorio.\n    \"CategoryName\":\"New category name\"          //Nuovo nome della cartella.\n}"},"url":"https://rest.edock.it/api/Folders/Update","description":"<p>Aggiorna una cartella.</p>\n<ul>\n<li><strong>idCategory</strong>: id della cartella da aggiornare</li>\n<li><strong>CategoryName</strong>: nuovo nome della cartella</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"protocol":"https","path":["api","Folders","Update"],"host":["rest","edock","it"],"query":[],"variable":[]}},"response":[],"_postman_id":"8736f732-08ae-92c6-3777-87831b8c4370"},{"name":"Delete","id":"6d1a3d93-c52e-5eb4-1f97-f6f0c3d0474f","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"idCategory\":8673,                  //ID della cartella che si intende rimuovere\n    \"recursiveChildren\":true,           //Se impostato a true, verranno rimosse tutte le cartelle contenute in questa cartella\n    \"removeItems\":true                  //Se impostato a true, verranno rimossi tutti i prodotti contenuti\n}"},"url":"https://rest.edock.it/api/Folders/DeleteAsync","description":"<p>Rimuove una cartella</p>\n<ul>\n<li><strong>idCategory</strong>: id della categoria da rimuovere</li>\n<li><strong>recursiveChildren</strong> rimuove le cartelle figlie, se impostato a true</li>\n<li><strong>removeItems</strong>: rimuove i prodotti contenuti, se impostato a true</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"protocol":"https","path":["api","Folders","DeleteAsync"],"host":["rest","edock","it"],"query":[],"variable":[]}},"response":[],"_postman_id":"6d1a3d93-c52e-5eb4-1f97-f6f0c3d0474f"},{"name":"Hierarchy","id":"65c73f24-1578-1aef-f29a-6194a856f3cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://rest.edock.it/api/Folders/GetHierarchy?idFolder=1","description":"<p>Recupera la gerarchia completa di cartelle create sull'account MarketRock.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"protocol":"https","path":["api","Folders","GetHierarchy"],"host":["rest","edock","it"],"query":[{"key":"idFolder","value":"1"}],"variable":[]}},"response":[],"_postman_id":"65c73f24-1578-1aef-f29a-6194a856f3cc"}],"id":"e18ed292-a4c9-fe4c-39fd-5eacc5dc4693","description":"<p>Categories are containers for products.  </p>\n<p>A user can organize products into category hierarchies defined in any way.</p>\n<p>Each folder has an ID that identifies it and an ID that identifies the parent folder. Root folders have a default <strong>parent folder ID of 1</strong>.</p>\n<p>You can create any number of folders and you can then edit or delete them.</p>\n","_postman_id":"e18ed292-a4c9-fe4c-39fd-5eacc5dc4693","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Products","item":[{"name":"Synchronization","item":[{"name":"Link","id":"1fb85989-c1f2-4053-b550-0a37241e7e2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"idItem\": {{idItem}},\r\n    \"idSubscription\": {{idUser}},\r\n    \"MarketplaceItemId\": \"{{Marketplace Identifier}}\",\r\n    \"MarketplaceSKU\": \"{{Marketplace SKU}}\",\r\n    \"SubModule\": \"{{Marketplace SubModule}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}/sync/{{idModule}}/link","description":"<p>Collega il prodotto / i prodotti passati al marketplace selezionato. Ogni link è composto dai seguenti parametri:</p>\n<ul>\n<li><p>idItem: id del prodotto MarketRock per il quale si vuole creare il collegamento</p>\n</li>\n<li><p>idSubscription: id dell'utente del marketplace, così come recuperato da Distribuzione &gt; Utenti &gt; Users</p>\n</li>\n<li><p>MarketplaceItemId: identificativo del marketplace</p>\n</li>\n<li><p>MarketplaceSKU: non obbligatorio, indica se questo prodotto, su questo marketplace, fa uso di uno SKU diverso. Verrà creato come identificatore SKU</p>\n</li>\n<li><p>SubModule: mercato nazionale del marketplace</p>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["products","{{idItem}}","sync","{{idModule}}","link"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1fb85989-c1f2-4053-b550-0a37241e7e2c"},{"name":"Unlink","id":"939a16eb-569e-486c-b0e2-82dcf604d56c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"idItem\": {{idItem}},\r\n    \"idSubscription\": {{idUser}},\r\n    \"MarketplaceItemId\": \"{{Marketplace Identifier}}\",\r\n    \"MarketplaceSKU\": \"{{Marketplace SKU}}\",\r\n    \"SubModule\": \"{{Marketplace SubModule}}\"\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}/sync/{{idModule}}/unlink","description":"<p>Scollega il prodotto / i prodotti passati al marketplace selezionato. Ogni link è composto dai seguenti parametri:</p>\n<ul>\n<li>idItem: id del prodotto MarketRock per il quale si vuole creare il collegamento</li>\n<li>idSubscription: id dell'utente del marketplace, così come recuperato da Distribuzione &gt; Utenti &gt; Users</li>\n<li>MarketplaceItemId: identificativo del marketplace</li>\n<li>MarketplaceSKU: non obbligatorio, indica se questo prodotto, su questo marketplace, fa uso di uno SKU diverso. Verrà creato come identificatore SKU</li>\n<li>SubModule: mercato nazionale del marketplace</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["products","{{idItem}}","sync","{{idModule}}","unlink"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"939a16eb-569e-486c-b0e2-82dcf604d56c"}],"id":"93869da4-2c07-4c53-8b37-e75cc837f709","_postman_id":"93869da4-2c07-4c53-8b37-e75cc837f709","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Enumerators","item":[{"name":"Safety","item":[{"name":"Safety Markings","id":"872eff9b-5c46-42f2-a940-8a136118614c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/safety/markings","description":"<p>Get available safety markings (e.g. CE)</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["safety","markings"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"49e24b21-f35c-4ff3-9154-4117938a233d","name":"Safety Markings","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/safety/markings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"178"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 15 Nov 2024 14:38:54 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"idMarking\": 1,\n        \"Name\": \"CE\"\n    },\n    {\n        \"idMarking\": 2,\n        \"Name\": \"FCC\"\n    },\n    {\n        \"idMarking\": 3,\n        \"Name\": \"UKCA\"\n    },\n    {\n        \"idMarking\": 4,\n        \"Name\": \"EAC\"\n    }\n]"}],"_postman_id":"872eff9b-5c46-42f2-a940-8a136118614c"},{"name":"Standard Safety Warning Message Categories","id":"225b0685-fe8f-491e-83f7-cb4111e95a5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/safety/warnings/categories","description":"<p>Gets safety warnings categories</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["safety","warnings","categories"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"889dcd32-bc59-46e6-9887-6ee3d20b779a","name":"Standard Safety Warning Message Categories","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/safety/warnings/categories"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"282"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 15 Nov 2024 14:40:23 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"idCategory\": 1,\n        \"Name\": \"GHS - Indicazioni di pericolo H\"\n    },\n    {\n        \"idCategory\": 2,\n        \"Name\": \"GHS - Consigli P\"\n    },\n    {\n        \"idCategory\": 3,\n        \"Name\": \"WGK - Classe dell'acqua\"\n    },\n    {\n        \"idCategory\": 4,\n        \"Name\": \"Direttiva UE sulla sicurezza dei giocattoli\"\n    },\n    {\n        \"idCategory\": 5,\n        \"Name\": \"GHS - Indicazioni di pericolo australiane (AUH)\"\n    }\n]"}],"_postman_id":"225b0685-fe8f-491e-83f7-cb4111e95a5a"},{"name":"Standard Safety Warning Messages","id":"141f4b4c-17b5-4956-a508-629bb4302175","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/safety/warnings/categories/{{idCategory}}/messages","description":"<p>Gets safety warnings messages by category. You can retrieve category id by calling the <a href=\"https://www.postman.com/marketrock/workspace/marketrock/request/235984-225b0685-fe8f-491e-83f7-cb4111e95a5a?action=share&amp;source=copy-link&amp;creator=235984&amp;ctx=documentation\">\"Standard Safety Warning Categories\"</a> operation.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["safety","warnings","categories","{{idCategory}}","messages"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"37d8b42f-d6cd-47ac-8fad-3bad3e77b80c","name":"Standard Safety Warning Messages","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/safety/warnings/categories/1/messages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"3336"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 15 Nov 2024 14:41:10 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"idStandardMessage\": 1,\n        \"Name\": \"Esplosivo instabile.\",\n        \"StandardCode\": \"H200\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 2,\n        \"Name\": \"Esplosivo; pericolo di esplosione di massa.\",\n        \"StandardCode\": \"H201\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 3,\n        \"Name\": \"Esplosivo; grave pericolo di proiezione.\",\n        \"StandardCode\": \"H202\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 4,\n        \"Name\": \"Esplosivo; pericolo di incendio, di spostamento d'aria o di proiezione.\",\n        \"StandardCode\": \"H203\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 5,\n        \"Name\": \"Pericolo di incendio o di proiezione.\",\n        \"StandardCode\": \"H204\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 6,\n        \"Name\": \"Pericolo di esplosione di massa in caso d'incendio.\",\n        \"StandardCode\": \"H205\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 7,\n        \"Name\": \"Pericolo d'incendio, di spostamento d'aria o di proiezione.\",\n        \"StandardCode\": \"H206\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 8,\n        \"Name\": \"Pericolo d'incendio o di proiezione.\",\n        \"StandardCode\": \"H207\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 9,\n        \"Name\": \"Pericolo d'incendio.\",\n        \"StandardCode\": \"H208\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 10,\n        \"Name\": \"Esplosivo\",\n        \"StandardCode\": \"H209\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 11,\n        \"Name\": \"Gas altamente infiammabile.\",\n        \"StandardCode\": \"H220\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 12,\n        \"Name\": \"Gas infiammabile.\",\n        \"StandardCode\": \"H221\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 13,\n        \"Name\": \"Aerosol altamente infiammabile.\",\n        \"StandardCode\": \"H222\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 14,\n        \"Name\": \"Aerosol infiammabile.\",\n        \"StandardCode\": \"H223\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 15,\n        \"Name\": \"Liquido e vapori altamente infiammabili.\",\n        \"StandardCode\": \"H224\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 16,\n        \"Name\": \"Liquido e vapori facilmente infiammabili.\",\n        \"StandardCode\": \"H225\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 17,\n        \"Name\": \"Liquido e vapori infiammabili.\",\n        \"StandardCode\": \"H226\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 18,\n        \"Name\": \"Liquido combustibile.\",\n        \"StandardCode\": \"H227\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 19,\n        \"Name\": \"Solido infiammabile.\",\n        \"StandardCode\": \"H228\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 20,\n        \"Name\": \"Contenitore pressurizzato: può scoppiare se riscaldato.\",\n        \"StandardCode\": \"H229\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 21,\n        \"Name\": \"Può esplodere anche in assenza di aria.\",\n        \"StandardCode\": \"H230\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 22,\n        \"Name\": \"Può esplodere anche in assenza di aria a pressione e/o temperatura elevata.\",\n        \"StandardCode\": \"H231\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 23,\n        \"Name\": \"Spontaneamente infiammabile all'aria.\",\n        \"StandardCode\": \"H232\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 24,\n        \"Name\": \"Rischio di esplosione per riscaldamento.\",\n        \"StandardCode\": \"H240\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 25,\n        \"Name\": \"Rischio d'incendio o di esplosione per riscaldamento.\",\n        \"StandardCode\": \"H241\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 26,\n        \"Name\": \"Rischio d'incendio per riscaldamento.\",\n        \"StandardCode\": \"H242\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 27,\n        \"Name\": \"Spontaneamente infiammabile all'aria.\",\n        \"StandardCode\": \"H250\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 28,\n        \"Name\": \"Autoriscaldante; può infiammarsi.\",\n        \"StandardCode\": \"H251\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 29,\n        \"Name\": \"Autoriscaldante in grandi quantità; può infiammarsi.\",\n        \"StandardCode\": \"H252\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 30,\n        \"Name\": \"A contatto con l'acqua libera gas infiammabili che possono infiammarsi spontaneamente.\",\n        \"StandardCode\": \"H260\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 31,\n        \"Name\": \"A contatto con l'acqua libera gas infiammabili.\",\n        \"StandardCode\": \"H261\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 32,\n        \"Name\": \"Può provocare o aggravare un incendio; comburente.\",\n        \"StandardCode\": \"H270\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 33,\n        \"Name\": \"Può provocare un incendio o un'esplosione; molto comburente.\",\n        \"StandardCode\": \"H271\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 34,\n        \"Name\": \"Può aggravare un incendio; comburente.\",\n        \"StandardCode\": \"H272\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 35,\n        \"Name\": \"Contiene gas sotto pressione; può esplodere se riscaldato.\",\n        \"StandardCode\": \"H280\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 36,\n        \"Name\": \"Contiene gas refrigerato; può provocare ustioni o lesioni criogeniche.\",\n        \"StandardCode\": \"H281\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 37,\n        \"Name\": \"Può essere corrosivo per i metallieri.\",\n        \"StandardCode\": \"H290\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 38,\n        \"Name\": \"Letale se assimilato.\",\n        \"StandardCode\": \"H300\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 39,\n        \"Name\": \"Tossico se ingerito.\",\n        \"StandardCode\": \"H301\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 40,\n        \"Name\": \"Nocivo per ingestione.\",\n        \"StandardCode\": \"H302\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 41,\n        \"Name\": \"Può essere nocivo in caso di ingestione.\",\n        \"StandardCode\": \"H303\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 42,\n        \"Name\": \"Può essere letale in caso di ingestione e di penetrazione nelle vie respiratorie.\",\n        \"StandardCode\": \"H304\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 43,\n        \"Name\": \"é nocivo in caso di ingestione e di penetrazione nelle vie respiratorie.\",\n        \"StandardCode\": \"H305\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 44,\n        \"Name\": \"Letale per contatto con la pelle.\",\n        \"StandardCode\": \"H310\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 45,\n        \"Name\": \"Tossico per contatto con la pelle.\",\n        \"StandardCode\": \"H311\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 46,\n        \"Name\": \"Nocivo per contatto con la pelle.\",\n        \"StandardCode\": \"H312\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 47,\n        \"Name\": \"Può essere nocivo per contatto con la pelle.\",\n        \"StandardCode\": \"H313\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 48,\n        \"Name\": \"Provoca gravi ustioni cutanee e gravi lesioni oculari.\",\n        \"StandardCode\": \"H314\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 49,\n        \"Name\": \"Provoca irritazione cutanea.\",\n        \"StandardCode\": \"H315\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 50,\n        \"Name\": \"Provoca una lieve irritazione cutanea.\",\n        \"StandardCode\": \"H316\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 51,\n        \"Name\": \"Può provocare una reazione allergica cutanea.\",\n        \"StandardCode\": \"H317\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 52,\n        \"Name\": \"Provoca gravi lesioni oculari.\",\n        \"StandardCode\": \"H318\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 53,\n        \"Name\": \"Provoca grave irritazione oculare.\",\n        \"StandardCode\": \"H319\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 54,\n        \"Name\": \"Provoca irritazione oculare.\",\n        \"StandardCode\": \"H320\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 55,\n        \"Name\": \"Letale se inalato.\",\n        \"StandardCode\": \"H330\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 56,\n        \"Name\": \"Tossico se inalato.\",\n        \"StandardCode\": \"H331\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 57,\n        \"Name\": \"Nocivo se inalato.\",\n        \"StandardCode\": \"H332\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 58,\n        \"Name\": \"Può essere nocivo se inalato.\",\n        \"StandardCode\": \"H333\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 59,\n        \"Name\": \"Può provocare sintomi allergici o asmatici o difficoltà respiratorie se inalato.\",\n        \"StandardCode\": \"H334\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 60,\n        \"Name\": \"Può irritare le vie respiratorie.\",\n        \"StandardCode\": \"H335\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 61,\n        \"Name\": \"Può provocare sonnolenza o vertigini.\",\n        \"StandardCode\": \"H336\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 62,\n        \"Name\": \"Può provocare alterazioni genetiche.\",\n        \"StandardCode\": \"H340\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 63,\n        \"Name\": \"Sospettato di provocare alterazioni genetiche.\",\n        \"StandardCode\": \"H341\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 64,\n        \"Name\": \"Può provocare il cancro.\",\n        \"StandardCode\": \"H350\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 65,\n        \"Name\": \"Sospettato di provocare il cancro.\",\n        \"StandardCode\": \"H351\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 66,\n        \"Name\": \"Può nuocere alla fertilità o al feto.\",\n        \"StandardCode\": \"H360\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 67,\n        \"Name\": \"Sospettato di nuocere alla fertilità o al feto.\",\n        \"StandardCode\": \"H361\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 68,\n        \"Name\": \"Può essere nocivo per i lattanti allattati al seno.\",\n        \"StandardCode\": \"H362\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 69,\n        \"Name\": \"Provoca danni agli organi.\",\n        \"StandardCode\": \"H370\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 70,\n        \"Name\": \"Può provocare danni agli organi.\",\n        \"StandardCode\": \"H371\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 71,\n        \"Name\": \"Provoca danni agli organi in caso di esposizione prolungata o ripetuta.\",\n        \"StandardCode\": \"H372\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 72,\n        \"Name\": \"Può provocare danni agli organi in caso di esposizione prolungata o ripetuta.\",\n        \"StandardCode\": \"H373\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 74,\n        \"Name\": \"Può provocare il cancro se inalato.\",\n        \"StandardCode\": \"H350i\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 75,\n        \"Name\": \"Può nuocere alla fertilità.\",\n        \"StandardCode\": \"H360F\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 76,\n        \"Name\": \"Può nuocere al feto.\",\n        \"StandardCode\": \"H360D\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 77,\n        \"Name\": \"Sospettato di nuocere alla fertilità.\",\n        \"StandardCode\": \"H361f\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 78,\n        \"Name\": \"Sospettato di nuocere al feto.\",\n        \"StandardCode\": \"H361d\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 79,\n        \"Name\": \"Può nuocere alla fertilità. Può nuocere al feto.\",\n        \"StandardCode\": \"H360FD\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 80,\n        \"Name\": \"Sospettato di nuocere alla fertilità. Sospettato di nuocere al feto.\",\n        \"StandardCode\": \"H361fd\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 81,\n        \"Name\": \"Può nuocere alla fertilità. Sospettato di nuocere al feto.\",\n        \"StandardCode\": \"H360Fd\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 82,\n        \"Name\": \"Può nuocere al feto. Sospettato di nuocere alla fertilità.\",\n        \"StandardCode\": \"H360Df\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 83,\n        \"Name\": \"Molto tossico per gli organismi acquatici.\",\n        \"StandardCode\": \"H400\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 84,\n        \"Name\": \"Tossico per gli organismi acquatici.\",\n        \"StandardCode\": \"H401\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 85,\n        \"Name\": \"Nocivo per gli organismi acquatici.\",\n        \"StandardCode\": \"H402\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 86,\n        \"Name\": \"Molto tossico per gli organismi acquatici con effetti di lunga durata.\",\n        \"StandardCode\": \"H410\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 87,\n        \"Name\": \"Tossico per gli organismi acquatici con effetti di lunga durata.\",\n        \"StandardCode\": \"H411\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 88,\n        \"Name\": \"Nocivo per gli organismi acquatici con effetti di lunga durata.\",\n        \"StandardCode\": \"H412\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 89,\n        \"Name\": \"Può essere nocivo per gli organismi acquatici con effetti di lunga durata.\",\n        \"StandardCode\": \"H413\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 90,\n        \"Name\": \"Nuoce alla salute pubblica e all'ambiente distruggendo l'ozono dello strato superiore dell'atmosfera.\",\n        \"StandardCode\": \"H420\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 91,\n        \"Name\": \"Esplosivo allo stato secco.\",\n        \"StandardCode\": \"EUH001\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 92,\n        \"Name\": \"Esplosivo a contatto o senza contatto con l'aria. [Soppresso da Regolamento (UE) n. 487/2013 della Commissione dell’8 maggio 2013]\",\n        \"StandardCode\": \"EUH006\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 93,\n        \"Name\": \"Reagisce violentemente con l'acqua.\",\n        \"StandardCode\": \"EUH014\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 94,\n        \"Name\": \"Durante l'uso può formarsi una miscela vapore \",\n        \"StandardCode\": \"EUH018\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 95,\n        \"Name\": \"Può formare perossidi esplosivi.\",\n        \"StandardCode\": \"EUH019\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 96,\n        \"Name\": \"Rischio di esplosione per riscaldamento in ambiente confinato.\",\n        \"StandardCode\": \"EUH044\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 97,\n        \"Name\": \"A contatto con l'acqua libera un gas tossico.\",\n        \"StandardCode\": \"EUH029\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 98,\n        \"Name\": \"A contatto con acidi libera gas tossici.\",\n        \"StandardCode\": \"EUH031\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 99,\n        \"Name\": \"A contatto con acidi libera gas molto tossici.\",\n        \"StandardCode\": \"EUH032\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 100,\n        \"Name\": \"L'esposizione ripetuta può provocare secchezza o screpolature della pelle.\",\n        \"StandardCode\": \"EUH066\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 101,\n        \"Name\": \"Corrosivo per le vie respiratorie.\",\n        \"StandardCode\": \"EUH071\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 102,\n        \"Name\": \"Tossico per contatto oculare.\",\n        \"StandardCode\": \"EUH070\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 103,\n        \"Name\": \"Pericoloso per lo strato di ozono.\",\n        \"StandardCode\": \"EUH059\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 104,\n        \"Name\": \"Contiene piombo. Non utilizzare su oggetti che possono essere masticati o succhiati dai bambini.\",\n        \"StandardCode\": \"EUH201\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 105,\n        \"Name\": \"Attenzione! Contiene piombo.\",\n        \"StandardCode\": \"EUH201A\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 106,\n        \"Name\": \"Cianoacrilato. Pericolo. Incolla la pelle e gli occhi in pochi secondi. Tenere fuori dalla portata dei bambini.\",\n        \"StandardCode\": \"EUH202\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 107,\n        \"Name\": \"Contiene cromo(VI). Può provocare una reazione allergica.\",\n        \"StandardCode\": \"EUH203\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 108,\n        \"Name\": \"Contiene isocianati. Può provocare una reazione allergica.\",\n        \"StandardCode\": \"EUH204\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 109,\n        \"Name\": \"Contiene componenti epossidici. Può provocare una reazione allergica.\",\n        \"StandardCode\": \"EUH205\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 110,\n        \"Name\": \"Attenzione! Non utilizzare in combinazione con altri prodotti. Possono liberarsi gas pericolosi (cloro).\",\n        \"StandardCode\": \"EUH206\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 111,\n        \"Name\": \"Attenzione! Contiene cadmio. Durante l'uso si sviluppano fumi pericolosi. Leggere le informazioni fornite dal fabbricante. Rispettare le disposizioni di sicurezza.\",\n        \"StandardCode\": \"EUH207\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 112,\n        \"Name\": \"Contiene <denominazione della sostanza sensibilizzante>. Può provocare una reazione allergica.\",\n        \"StandardCode\": \"EUH208\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 113,\n        \"Name\": \"Può diventare facilmente infiammabile durante l'uso.\",\n        \"StandardCode\": \"EUH209\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 114,\n        \"Name\": \"Può diventare infiammabile durante l'uso.\",\n        \"StandardCode\": \"EUH209A\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 115,\n        \"Name\": \"Scheda dati di sicurezza disponibile su richiesta.\",\n        \"StandardCode\": \"EUH210\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 116,\n        \"Name\": \"Attenzione! In caso di vaporizzazione possono formarsi goccioline respirabili pericolose. Non respirare i vapori o le nebbie.\",\n        \"StandardCode\": \"EUH211\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 117,\n        \"Name\": \"Attenzione! In caso di utilizzo possono formarsi polveri respirabili pericolose. Non respirare le polveri.\",\n        \"StandardCode\": \"EUH212\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 118,\n        \"Name\": \"Per evitare rischi per la salute umana e per l'ambiente, seguire le istruzioni per l'uso.\",\n        \"StandardCode\": \"EUH401\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 119,\n        \"Name\": \"Può interferire con il sistema endocrino negli esseri umani\",\n        \"StandardCode\": \"EUH380\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 120,\n        \"Name\": \"Sospettato di interferire con il sistema endocrino negli esseri umani\",\n        \"StandardCode\": \"EUH381\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 121,\n        \"Name\": \"Può interferire con il sistema endocrino nell’ambiente\",\n        \"StandardCode\": \"EUH430\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 122,\n        \"Name\": \"Sospettato di interferire con il sistema endocrino nell’ambiente\",\n        \"StandardCode\": \"EUH431\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 123,\n        \"Name\": \"Si accumula nell’ambiente e negli organismi viventi, compresi gli esseri umani\",\n        \"StandardCode\": \"EUH440\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 124,\n        \"Name\": \"Si accumula notevolmente nell’ambiente e negli organismi viventi, compresi gli esseri umani\",\n        \"StandardCode\": \"EUH441\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 125,\n        \"Name\": \"Può provocare la contaminazione duratura e diffusa delle risorse idriche\",\n        \"StandardCode\": \"EUH450\",\n        \"idCategory\": 1\n    },\n    {\n        \"idStandardMessage\": 126,\n        \"Name\": \"Può provocare la contaminazione molto duratura e diffusa delle risorse idriche\",\n        \"StandardCode\": \"EUH451\",\n        \"idCategory\": 1\n    }\n]"}],"_postman_id":"141f4b4c-17b5-4956-a508-629bb4302175"}],"id":"21e55822-f2a4-41f0-8878-22d5c5ea11d4","_postman_id":"21e55822-f2a4-41f0-8878-22d5c5ea11d4","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Unit of Measures","id":"a1da53ef-9739-a795-e9a0-50da99f2683a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{endpoint}}/Measures/Get","description":"<p>Recupera tutte le unità di misura definite su eDock, \nsecondo il sistema di misure scelto dall'utente eDock.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["Measures","Get"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a1da53ef-9739-a795-e9a0-50da99f2683a"},{"name":"Cultures","id":"132dc5eb-5240-0df3-870b-0c90eb07ea76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{endpoint}}/Cultures","description":"<p>Recupera tutte le culture definite su eDock.</p>\n<p>Le culture sono necessarie per poter creare una descrizione (titolo, sottotitolo, desrizione lunga)\nda associare ad un prodotto. Ogni descrizione, infatti, è necessariamente associata\nad una delle culture disponibili su eDock.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["Cultures"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"132dc5eb-5240-0df3-870b-0c90eb07ea76"},{"name":"Identifiers","id":"417c43c7-2e4b-46c6-946d-0a9890e66aa4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/Products/Identifiers/Types","description":"<p>Recupera i tipi di identificatori utilizzabili per un prodotto</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["Products","Identifiers","Types"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"28af28d4-0ffa-461f-85ba-3b601a40e2ed","name":"Get Identifiers","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/Products/Identifiers/Types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"264"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 02 Nov 2023 13:51:53 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"idItemIdentifierType\": 1,\n        \"IsVisible\": true,\n        \"DisplayName\": \"EAN-13\"\n    },\n    {\n        \"idItemIdentifierType\": 4,\n        \"IsVisible\": true,\n        \"DisplayName\": \"MPN\"\n    },\n    {\n        \"idItemIdentifierType\": 5,\n        \"IsVisible\": true,\n        \"DisplayName\": \"ASIN\"\n    },\n    {\n        \"idItemIdentifierType\": 7,\n        \"IsVisible\": true,\n        \"DisplayName\": \"ePID\"\n    },\n    {\n        \"idItemIdentifierType\": 9,\n        \"IsVisible\": true,\n        \"DisplayName\": \"BackMarket ID\"\n    },\n    {\n        \"idItemIdentifierType\": 10,\n        \"IsVisible\": true,\n        \"DisplayName\": \"SKU\"\n    },\n    {\n        \"idItemIdentifierType\": 11,\n        \"IsVisible\": true,\n        \"DisplayName\": \"Barcode SignaExchange\"\n    }\n]"}],"_postman_id":"417c43c7-2e4b-46c6-946d-0a9890e66aa4"},{"name":"Conditions","id":"c0d9710f-35ed-47bc-9e00-0791caa13779","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/conditions","description":"<p>Recupera le condizioni dell'oggetto che possono essere specificate su un prodotto</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["conditions"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"6002c005-8482-4885-89d8-a66e0a6e5242","name":"Get Conditions","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/conditions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"318"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 02 Nov 2023 14:00:57 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"idItemCondition\": 7,\n        \"Condition\": \"Acceptable conditions\"\n    },\n    {\n        \"idItemCondition\": 10,\n        \"Condition\": \"For parts or not working\"\n    },\n    {\n        \"idItemCondition\": 6,\n        \"Condition\": \"Good conditions\"\n    },\n    {\n        \"idItemCondition\": 3,\n        \"Condition\": \"Like New\"\n    },\n    {\n        \"idItemCondition\": 1,\n        \"Condition\": \"New\"\n    },\n    {\n        \"idItemCondition\": 2,\n        \"Condition\": \"New with defects\"\n    },\n    {\n        \"idItemCondition\": 11,\n        \"Condition\": \"New without label / no box\"\n    },\n    {\n        \"idItemCondition\": 8,\n        \"Condition\": \"Reconditioned by the manufacturer\"\n    },\n    {\n        \"idItemCondition\": 9,\n        \"Condition\": \"Refurbished by the seller\"\n    },\n    {\n        \"idItemCondition\": 4,\n        \"Condition\": \"Used\"\n    },\n    {\n        \"idItemCondition\": 5,\n        \"Condition\": \"Very good condition\"\n    }\n]"}],"_postman_id":"c0d9710f-35ed-47bc-9e00-0791caa13779"}],"id":"235ecade-a9b3-413c-bc76-8b6a5f0ab9cd","_postman_id":"235ecade-a9b3-413c-bc76-8b6a5f0ab9cd","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Bulk","item":[{"name":"Create","id":"2fbc900b-1258-4b4e-8ce2-f8e5e17aad5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"Products\": [\n        {\n            \"SKU\": \"SKU_01\", //Codice prodotto\n            \"InternalName\": \"TEST\" //Nome ad uso interno\n        },\n        {\n            \"SKU\": \"SKU_02\", //Codice prodotto\n            \"InternalName\": \"TEST\" //Nome ad uso interno\n        }\n    ]\n}"},"url":"{{endpoint}}/products/bulk/create","description":"<p>Create one or more products. Max 100 products per request.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["products","bulk","create"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"29333cc1-f329-46a0-a1b1-8555c640d15b","name":"Create - minimum set of information","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"Products\": [\n        {\n            \"SKU\": \"SKU_01\", //Codice prodotto\n            \"InternalName\": \"TEST\" //Nome ad uso interno\n        },\n        {\n            \"SKU\": \"SKU_02\", //Codice prodotto\n            \"InternalName\": \"TEST\" //Nome ad uso interno\n        }\n    ]\n}"},"url":"{{endpoint}}/products/bulk/create"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Content-Length","value":"61"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 06 Oct 2025 12:33:14 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"WWW-Authenticate","value":"Basic realm="},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"SKU\": \"SKU_01\",\n        \"InternalName\": \"TEST\",\n        \"idProduct\": 26195,\n        \"ProductGuid\": \"5442dcb1-ad54-4222-b003-5ac8f021d58b\",\n        \"CreatedOn\": \"2024-02-16T11:23:32.1647954Z\"\n    },\n    {\n        \"SKU\": \"SKU_02\",\n        \"InternalName\": \"TEST\",\n        \"idProduct\": 26196,\n        \"ProductGuid\": \"baee7c4c-6d17-459e-8bc2-50fedb171a6a\",\n        \"CreatedOn\": \"2024-02-16T11:23:32.1647954Z\"\n    }\n]"}],"_postman_id":"2fbc900b-1258-4b4e-8ce2-f8e5e17aad5d"},{"name":"Update","id":"cf859f90-a5c4-4d83-ba6e-2c5711807ead","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n    {\n        \"idItem\": 124,\n        \"PricingRows\": \n        [\n            {\n                \"PriceListIdPricing\": 1,\n                \"Price\": 69.00\n            }\n        ]\n    },\n    {\n        \"idItem\": 125,\n        \"PricingRows\": \n        [\n            {\n                \"PriceListIdPricing\": 1,\n                \"Price\": 130.00\n            }\n        ]\n    }\n]"},"url":"{{endpoint}}/products/bulk/update","description":"<p>Modifies one or more products, eliminating all unsent information from the product. Has a destructive effect on the product. Use with caution!</p>\n<p>Max 100 products per request.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["products","bulk","update"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"329988c8-f49c-49b1-bab8-fbfc5bab9e5d","name":"Update","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n    {\n        \"idItem\": 124,\n        \"PricingRows\": \n        [\n            {\n                \"PriceListIdPricing\": 1,\n                \"Price\": 69.00\n            }\n        ]\n    },\n    {\n        \"idItem\": 125,\n        \"PricingRows\": \n        [\n            {\n                \"PriceListIdPricing\": 1,\n                \"Price\": 130.00\n            }\n        ]\n    }\n]"},"url":"{{endpoint}}/products/bulk/update"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 20 Nov 2023 11:53:34 GMT"},{"key":"Content-Length","value":"2443"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"IdItem\": 124,\n        \"ItemGuid\": \"573b5db9-abb3-4c72-ac7a-72c8bc784f5a\",\n        \"InternalName\": \"Barbeque a Carbonella per Balcone BBQ Quick \",\n        \"SKU\": \"B1530176\",\n        \"Disabled\": false,\n        \"Manufacturer\": \"1502\",\n        \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n        \"UpdatedOn\": \"2023-11-20T11:53:32.147Z\",\n        \"Folder\": null,\n        \"Attributes\": null,\n        \"Descriptions\": null,\n        \"PricingRows\": [\n            {\n                \"Price\": 69,\n                \"Discount\": 0,\n                \"DiscountTypeIdDiscountType\": null,\n                \"PriceListIdPricing\": 1,\n                \"PriceListName\": \"Listino predefinito\",\n                \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                \"PriceListIsDiscountEnabled\": true,\n                \"PriceListIsSync\": true,\n                \"RealPrice\": 69,\n                \"IsDiscountedPrice\": false,\n                \"ItemId\": 124,\n                \"CreatedOn\": \"2023-11-20T11:53:31.8Z\",\n                \"UpdatedOn\": null\n            }\n        ],\n        \"Measures\": null,\n        \"ItemImages\": null,\n        \"Availabilities\": null,\n        \"Condition\": null,\n        \"ConditionNotes\": null,\n        \"Variations\": null,\n        \"VariatesOn\": 0,\n        \"VariatesOnName\": \"\",\n        \"VariationFather\": null,\n        \"Combinations\": null,\n        \"CombinatesOn\": 0,\n        \"CombinationFather\": null,\n        \"Identifiers\": null,\n        \"FBAInfo\": null,\n        \"FiscalInformations\": null,\n        \"Exclusions\": null,\n        \"Links\": null,\n        \"EAN13\": null,\n        \"FulfilmentDays\": null,\n        \"VariationFatherId\": null,\n        \"CombinationFatherId\": null,\n        \"SupplierCustomerId\": null,\n        \"HSCode\": null,\n        \"InventoryReference\": null,\n        \"idCountryOfOrigin\": null,\n        \"IsDangerousGood\": false,\n        \"Distributors\": null,\n        \"Bundles\": null\n    },\n    {\n        \"IdItem\": 125,\n        \"ItemGuid\": \"d6253228-d716-4ce2-b3db-c5f2206409aa\",\n        \"InternalName\": \"Macchina da Cucire Complete Tailor\",\n        \"SKU\": \"C1545001\",\n        \"Disabled\": false,\n        \"Manufacturer\": \"1505\",\n        \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n        \"UpdatedOn\": \"2023-11-20T11:53:32.147Z\",\n        \"Folder\": null,\n        \"Attributes\": null,\n        \"Descriptions\": null,\n        \"PricingRows\": [\n            {\n                \"Price\": 130,\n                \"Discount\": 0,\n                \"DiscountTypeIdDiscountType\": null,\n                \"PriceListIdPricing\": 1,\n                \"PriceListName\": \"Listino predefinito\",\n                \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                \"PriceListIsDiscountEnabled\": true,\n                \"PriceListIsSync\": true,\n                \"RealPrice\": 130,\n                \"IsDiscountedPrice\": false,\n                \"ItemId\": 125,\n                \"CreatedOn\": \"2023-11-20T11:53:31.827Z\",\n                \"UpdatedOn\": null\n            }\n        ],\n        \"Measures\": null,\n        \"ItemImages\": null,\n        \"Availabilities\": null,\n        \"Condition\": null,\n        \"ConditionNotes\": null,\n        \"Variations\": null,\n        \"VariatesOn\": 0,\n        \"VariatesOnName\": \"\",\n        \"VariationFather\": null,\n        \"Combinations\": null,\n        \"CombinatesOn\": 0,\n        \"CombinationFather\": null,\n        \"Identifiers\": null,\n        \"FBAInfo\": null,\n        \"FiscalInformations\": null,\n        \"Exclusions\": null,\n        \"Links\": null,\n        \"EAN13\": null,\n        \"FulfilmentDays\": null,\n        \"VariationFatherId\": null,\n        \"CombinationFatherId\": null,\n        \"SupplierCustomerId\": null,\n        \"HSCode\": null,\n        \"InventoryReference\": null,\n        \"idCountryOfOrigin\": null,\n        \"IsDangerousGood\": false,\n        \"Distributors\": null,\n        \"Bundles\": null\n    }\n]"}],"_postman_id":"cf859f90-a5c4-4d83-ba6e-2c5711807ead"},{"name":"Patch","id":"0e98afe6-468c-4a27-b852-29ddc1ec37b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n    {\n        \"idItem\": 124,\n        \"PricingRows\": \n        [\n            {\n                \"PriceListIdPricing\": 1,\n                \"Price\": 69.50\n            }\n        ]\n    },\n    {\n        \"idItem\": 125,\n        \"PricingRows\": \n        [\n            {\n                \"PriceListIdPricing\": 1,\n                \"Price\": 130.50\n            }\n        ]\n    }\n]"},"url":"{{endpoint}}/products/bulk/patch","description":"<p>Modify one or more products, leaving the unsent information unchanged. The past information is added (if it does not exist) or modified (if it does exist).</p>\n<p>Max 100 products per request.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["products","bulk","patch"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"27b8cc9c-3b96-4714-85d1-96ec9c77f6a3","name":"Patch","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n    {\n        \"idItem\": 124,\n        \"PricingRows\": \n        [\n            {\n                \"PriceListIdPricing\": 1,\n                \"Price\": 69.50\n            }\n        ]\n    },\n    {\n        \"idItem\": 125,\n        \"PricingRows\": \n        [\n            {\n                \"PriceListIdPricing\": 1,\n                \"Price\": 130.50\n            }\n        ]\n    }\n]"},"url":"{{endpoint}}/products/bulk/patch"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 20 Nov 2023 11:51:36 GMT"},{"key":"Content-Length","value":"3798"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"IdItem\": 124,\n        \"ItemGuid\": \"573b5db9-abb3-4c72-ac7a-72c8bc784f5a\",\n        \"InternalName\": \"Barbeque a Carbonella per Balcone BBQ Quick \",\n        \"SKU\": \"B1530176\",\n        \"Disabled\": false,\n        \"Manufacturer\": \"1502\",\n        \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n        \"UpdatedOn\": \"2023-11-20T11:51:35.083Z\",\n        \"Folder\": null,\n        \"Attributes\": null,\n        \"Descriptions\": null,\n        \"PricingRows\": [\n            {\n                \"Price\": 69.5,\n                \"Discount\": 0,\n                \"DiscountTypeIdDiscountType\": null,\n                \"PriceListIdPricing\": 1,\n                \"PriceListName\": \"Listino predefinito\",\n                \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                \"PriceListIsDiscountEnabled\": true,\n                \"PriceListIsSync\": true,\n                \"RealPrice\": 69.5,\n                \"IsDiscountedPrice\": false,\n                \"ItemId\": 124,\n                \"CreatedOn\": \"2023-11-20T11:51:34.863Z\",\n                \"UpdatedOn\": null\n            },\n            {\n                \"Price\": 150,\n                \"Discount\": 0,\n                \"DiscountTypeIdDiscountType\": null,\n                \"PriceListIdPricing\": 2,\n                \"PriceListName\": \"Wish\",\n                \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                \"PriceListIsDiscountEnabled\": false,\n                \"PriceListIsSync\": true,\n                \"RealPrice\": 150,\n                \"IsDiscountedPrice\": false,\n                \"ItemId\": 124,\n                \"CreatedOn\": \"2023-07-04T10:13:23.557Z\",\n                \"UpdatedOn\": null\n            },\n            {\n                \"Price\": 155,\n                \"Discount\": 0,\n                \"DiscountTypeIdDiscountType\": null,\n                \"PriceListIdPricing\": 29,\n                \"PriceListName\": \"BackMarket\",\n                \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                \"PriceListIsDiscountEnabled\": false,\n                \"PriceListIsSync\": true,\n                \"RealPrice\": 155,\n                \"IsDiscountedPrice\": false,\n                \"ItemId\": 124,\n                \"CreatedOn\": \"2022-10-10T10:40:56.51Z\",\n                \"UpdatedOn\": \"2023-04-24T08:51:04.203Z\"\n            }\n        ],\n        \"Measures\": null,\n        \"ItemImages\": null,\n        \"Availabilities\": null,\n        \"Condition\": null,\n        \"ConditionNotes\": null,\n        \"Variations\": null,\n        \"VariatesOn\": 0,\n        \"VariatesOnName\": \"\",\n        \"VariationFather\": null,\n        \"Combinations\": null,\n        \"CombinatesOn\": 0,\n        \"CombinationFather\": null,\n        \"Identifiers\": null,\n        \"FBAInfo\": null,\n        \"FiscalInformations\": null,\n        \"Exclusions\": null,\n        \"Links\": null,\n        \"EAN13\": null,\n        \"FulfilmentDays\": null,\n        \"VariationFatherId\": null,\n        \"CombinationFatherId\": null,\n        \"SupplierCustomerId\": null,\n        \"HSCode\": null,\n        \"InventoryReference\": null,\n        \"idCountryOfOrigin\": null,\n        \"IsDangerousGood\": false,\n        \"Distributors\": null,\n        \"Bundles\": null\n    },\n    {\n        \"IdItem\": 125,\n        \"ItemGuid\": \"d6253228-d716-4ce2-b3db-c5f2206409aa\",\n        \"InternalName\": \"Macchina da Cucire Complete Tailor\",\n        \"SKU\": \"C1545001\",\n        \"Disabled\": false,\n        \"Manufacturer\": \"1505\",\n        \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n        \"UpdatedOn\": \"2023-11-20T11:51:35.083Z\",\n        \"Folder\": null,\n        \"Attributes\": null,\n        \"Descriptions\": null,\n        \"PricingRows\": [\n            {\n                \"Price\": 130.5,\n                \"Discount\": 0,\n                \"DiscountTypeIdDiscountType\": null,\n                \"PriceListIdPricing\": 1,\n                \"PriceListName\": \"Listino predefinito\",\n                \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                \"PriceListIsDiscountEnabled\": true,\n                \"PriceListIsSync\": true,\n                \"RealPrice\": 130.5,\n                \"IsDiscountedPrice\": false,\n                \"ItemId\": 125,\n                \"CreatedOn\": \"2023-11-20T11:51:34.867Z\",\n                \"UpdatedOn\": null\n            },\n            {\n                \"Price\": 130,\n                \"Discount\": 0,\n                \"DiscountTypeIdDiscountType\": null,\n                \"PriceListIdPricing\": 2,\n                \"PriceListName\": \"Wish\",\n                \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                \"PriceListIsDiscountEnabled\": false,\n                \"PriceListIsSync\": true,\n                \"RealPrice\": 130,\n                \"IsDiscountedPrice\": false,\n                \"ItemId\": 125,\n                \"CreatedOn\": \"2023-07-04T10:13:23.587Z\",\n                \"UpdatedOn\": null\n            },\n            {\n                \"Price\": 135,\n                \"Discount\": 0,\n                \"DiscountTypeIdDiscountType\": null,\n                \"PriceListIdPricing\": 29,\n                \"PriceListName\": \"BackMarket\",\n                \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                \"PriceListIsDiscountEnabled\": false,\n                \"PriceListIsSync\": true,\n                \"RealPrice\": 135,\n                \"IsDiscountedPrice\": false,\n                \"ItemId\": 125,\n                \"CreatedOn\": \"2022-10-10T10:41:48.713Z\",\n                \"UpdatedOn\": \"2023-04-24T08:51:04.237Z\"\n            }\n        ],\n        \"Measures\": null,\n        \"ItemImages\": null,\n        \"Availabilities\": null,\n        \"Condition\": null,\n        \"ConditionNotes\": null,\n        \"Variations\": null,\n        \"VariatesOn\": 0,\n        \"VariatesOnName\": \"\",\n        \"VariationFather\": null,\n        \"Combinations\": null,\n        \"CombinatesOn\": 0,\n        \"CombinationFather\": null,\n        \"Identifiers\": null,\n        \"FBAInfo\": null,\n        \"FiscalInformations\": null,\n        \"Exclusions\": null,\n        \"Links\": null,\n        \"EAN13\": null,\n        \"FulfilmentDays\": null,\n        \"VariationFatherId\": null,\n        \"CombinationFatherId\": null,\n        \"SupplierCustomerId\": null,\n        \"HSCode\": null,\n        \"InventoryReference\": null,\n        \"idCountryOfOrigin\": null,\n        \"IsDangerousGood\": false,\n        \"Distributors\": null,\n        \"Bundles\": null\n    }\n]"}],"_postman_id":"0e98afe6-468c-4a27-b852-29ddc1ec37b2"},{"name":"Delete","id":"253f7b5f-0711-d13f-2503-f2db464825c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n    {\n        \"idItem\": {{idItem}}\n    }\n]"},"url":"{{endpoint}}/products/bulk/delete","description":"<p>Deletes products whose ID is passed in the request body array.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["products","bulk","delete"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"46cc0964-ab89-4b5c-8baf-2242b6f15bea","name":"Delete","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n    {\n        \"idItem\": {{idItem}}\n    }\n]"},"url":"{{endpoint}}/products/bulk/delete"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Cache-Control","value":"private"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 20 Nov 2023 11:53:56 GMT"}],"cookie":[],"responseTime":null,"body":"OK"}],"_postman_id":"253f7b5f-0711-d13f-2503-f2db464825c0"}],"id":"be554f8c-1c11-4cfd-9280-95c41921979e","_postman_id":"be554f8c-1c11-4cfd-9280-95c41921979e","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Get","id":"38d4eb8f-1033-46e9-9bb0-c4dae97c82d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{endpoint}}/products/{{idItem}}","description":"<p>Recupera l'intero prodotto</p>\n<ul>\n<li><strong>id</strong>, passato nell'URL</li>\n<li><strong>detail</strong>, livello di dettaglio del prodotto che verrà ritornato</li>\n</ul>\n<p><strong>Dettagli disponibili</strong></p>\n<ul>\n<li><strong>Attributes</strong>: attributi</li>\n<li><strong>Availability</strong>: disponbilità a magazzino</li>\n<li><strong>Descriptions</strong>: descrizioni</li>\n<li><strong>Folder</strong>: categoria / cartella</li>\n<li><strong>Images</strong>: immagini</li>\n<li><strong>Measures</strong>: misure</li>\n<li><strong>Prices</strong>: prezzi</li>\n<li><strong>Conditions</strong>: condizioni</li>\n<li><strong>Variations</strong>: varianti</li>\n<li><strong>Combinations</strong>: combinazioni</li>\n<li><strong>Identifiers</strong>: identificatori</li>\n<li><strong>FBAInfo</strong>: informazioni logistica FBA</li>\n<li><strong>FiscalInformations</strong>: informazioni fiscali</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["products","{{idItem}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"a1170859-da3d-46e5-95d4-e28af51f1377","name":"Get","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{endpoint}}/products/123"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Wed, 08 Jul 2020 16:16:17 GMT"},{"key":"Content-Length","value":"3221"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 123,\n    \"ItemGuid\": \"228b01df-29e4-498c-bafe-1d83aaa2a28a\",\n    \"InternalName\": \"Valigetta Utensili Grigliata BBQ Master Tools (18 pezzi)\",\n    \"SKU\": \"B1530174\",\n    \"Disabled\": false,\n    \"Manufacturer\": \"1502\",\n    \"CreatedOn\": \"2018-03-21T10:35:28.13Z\",\n    \"UpdatedOn\": \"2020-04-20T08:56:13.76Z\",\n    \"Folder\": {\n        \"FolderName\": \"Altri\",\n        \"idFolder\": 81\n    },\n    \"Attributes\": [\n        {\n            \"AttributesCultureCultureName\": \"it\",\n            \"AttributesIdItemAttribute\": 55,\n            \"AttributesName\": \"Articolo\",\n            \"Value\": \"Articolo\",\n            \"AttributesPrimitiveTypeIdPrimitiveType\": 0,\n            \"ToBeShown\": true\n        }\n    ],\n    \"Descriptions\": [\n        {\n            \"CultureName\": \"it\",\n            \"DescriptionTypeId\": 1,\n            \"Description\": \"Valigetta Utensili Grigliata BBQ Master Tools (18 pezzi)\",\n            \"DescriptionData\": {\n                \"#cdata-section\": \"Valigetta Utensili Grigliata BBQ Master Tools (18 pezzi)\"\n            }\n        },\n        {\n            \"CultureName\": \"it\",\n            \"DescriptionTypeId\": 3,\n            \"Description\": \"<p>Fare una <strong>grigliata</strong> con parenti e amici è una delle cose più divertenti, ma non devi dimenticare che è importante avere gli utensili adeguati affinché non si trasformi in un vero disastro. Affinché tu abbia un successo garantito, non devi perderti la&nbsp;<strong>valigetta utensili grigliata BBQ Master Tools (18 pezzi)!&nbsp;</strong>Con questo set di 18 pezzi in acciaio inossidabile e manici in legno sarai l'invidia di tutti i tuoi invitati.</p><p><a href=\\\"http://www.bbq-mastertools.com\\\" target=\\\"_blank\\\"><strong>www.bbq-mastertools.com</strong></a></p><p>La&nbsp;valigetta utensili grigliata BBQ Master Tools (18 pezzi)&nbsp;contiene:</p><ul><li>1 spatola grande</li><li>1 forchetta lunga</li><li>1 pinza lunga</li><li>1 coltello grande</li><li>1 spazzola</li><li>1 raschietto per la griglia</li><li>4 spiedini lunghi</li><li>8 mini spiedini da pannocchia</li><li>1 spazzola/pennello</li></ul>\",\n            \"DescriptionData\": {\n                \"#cdata-section\": \"<p>Fare una <strong>grigliata</strong> con parenti e amici è una delle cose più divertenti, ma non devi dimenticare che è importante avere gli utensili adeguati affinché non si trasformi in un vero disastro. Affinché tu abbia un successo garantito, non devi perderti la&nbsp;<strong>valigetta utensili grigliata BBQ Master Tools (18 pezzi)!&nbsp;</strong>Con questo set di 18 pezzi in acciaio inossidabile e manici in legno sarai l'invidia di tutti i tuoi invitati.</p><p><a href=\\\"http://www.bbq-mastertools.com\\\" target=\\\"_blank\\\"><strong>www.bbq-mastertools.com</strong></a></p><p>La&nbsp;valigetta utensili grigliata BBQ Master Tools (18 pezzi)&nbsp;contiene:</p><ul><li>1 spatola grande</li><li>1 forchetta lunga</li><li>1 pinza lunga</li><li>1 coltello grande</li><li>1 spazzola</li><li>1 raschietto per la griglia</li><li>4 spiedini lunghi</li><li>8 mini spiedini da pannocchia</li><li>1 spazzola/pennello</li></ul>\"\n            }\n        }\n    ],\n    \"PricingRows\": [],\n    \"Measures\": [],\n    \"ItemImages\": [],\n    \"Availabilities\": [\n        {\n            \"Quantity\": 553,\n            \"StorageIdStorage\": 3,\n            \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n        }\n    ],\n    \"Condition\": {\n        \"idItemCondition\": 1,\n        \"Condition\": \"Nuovo\"\n    },\n    \"ConditionNotes\": [\n        {\n            \"CultureName\": \"it\",\n            \"Description\": \"\"\n        }\n    ],\n    \"Variations\": null,\n    \"VariatesOn\": 0,\n    \"VariatesOnName\": \"\",\n    \"VariationFather\": null,\n    \"Combinations\": null,\n    \"CombinatesOn\": 0,\n    \"CombinationFather\": null,\n    \"eBayAuctions\": [],\n    \"PixPlaceFUPIDs\": [],\n    \"AmazonLinks\": [],\n    \"Identifiers\": [],\n    \"FBAInfo\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": 12\n}"}],"_postman_id":"38d4eb8f-1033-46e9-9bb0-c4dae97c82d7"},{"name":"Detail","id":"776f31f9-e3d6-4996-a025-a20456f5c904","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{endpoint}}/products/{{idItem}}/detail/{{detail}}","description":"<p>Recupera un dettaglio di un prodotto</p>\n<ul>\n<li><p><strong>idItem</strong>, ID del prodotto</p>\n</li>\n<li><p><strong>detail</strong>, il dettaglio da recuperare</p>\n</li>\n</ul>\n<p><strong>Dettagli disponibili</strong></p>\n<ul>\n<li><p><strong>Attributes</strong>: attributi</p>\n</li>\n<li><p><strong>Availability</strong>: disponbilità a magazzino</p>\n</li>\n<li><p><strong>Bundles</strong>: bundle del prodotto</p>\n</li>\n<li><p><strong>Combinations</strong>: compatibilità</p>\n</li>\n<li><p><strong>Conditions</strong>: condizioni</p>\n</li>\n<li><p><strong>Descriptions</strong>: descrizioni</p>\n</li>\n<li><p><strong>Distributors</strong>: fornitori del prodotto</p>\n</li>\n<li><p><strong>Exclusions</strong>: esclusioni</p>\n</li>\n<li><p><strong>FBAInfo</strong>: informazioni logistica FBA</p>\n</li>\n<li><p><strong>FiscalInformations</strong>: informazioni fiscali</p>\n</li>\n<li><p><strong>Folder</strong>: categoria / cartella</p>\n</li>\n<li><p><strong>Identifiers</strong>: identificatori</p>\n</li>\n<li><p><strong>Images</strong>: immagini</p>\n</li>\n<li><p><strong>Links</strong>: collegamento ai marketplace</p>\n</li>\n<li><p><strong>Measures</strong>: misure</p>\n</li>\n<li><p><strong>Prices</strong>: prezzi</p>\n</li>\n<li><p><strong>Variations</strong>: varianti</p>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["products","{{idItem}}","detail","{{detail}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"9156ca10-498c-455f-beec-80dc7ddc66eb","name":"Attributes","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{endpoint}}/products/{{idItem}}/detail/attributes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 20 Nov 2023 09:50:42 GMT"},{"key":"Content-Length","value":"1034"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"AttributesCultureCultureName\": \"it\",\n        \"AttributesIdItemAttribute\": 26,\n        \"AttributesName\": \"Tipo di codice a barre\",\n        \"Value\": \"3\",\n        \"AttributesPrimitiveTypeIdPrimitiveType\": 0,\n        \"ToBeShown\": false,\n        \"ItemId\": 124,\n        \"AttributeSetId\": 3\n    },\n    {\n        \"AttributesCultureCultureName\": \"it\",\n        \"AttributesIdItemAttribute\": 27,\n        \"AttributesName\": \"Codice a barre\",\n        \"Value\": \"4899888100652\",\n        \"AttributesPrimitiveTypeIdPrimitiveType\": 0,\n        \"ToBeShown\": false,\n        \"ItemId\": 124,\n        \"AttributeSetId\": 3\n    }\n]"},{"id":"8f213147-84de-4fb8-a49a-89ed68c65f3a","name":"Availability","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{endpoint}}/products/{{idItem}}/detail/availability"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 20 Nov 2023 09:50:42 GMT"},{"key":"Content-Length","value":"1034"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"Quantity\": 0.0,\n        \"StorageIdStorage\": 3,\n        \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\",\n        \"ItemId\": 124\n    },\n    {\n        \"Quantity\": 6.0,\n        \"StorageIdStorage\": 19,\n        \"StorageDescription\": \"Magazzino Test\",\n        \"ItemId\": 124\n    }\n]"},{"id":"6025e497-383b-4fbe-b435-68bd3c7e5727","name":"Conditions","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{endpoint}}/products/{{idItem}}/detail/conditions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 20 Nov 2023 09:50:42 GMT"},{"key":"Content-Length","value":"1034"}],"cookie":[],"responseTime":null,"body":"{\n    \"idItemCondition\": 1,\n    \"Condition\": \"Nuovo\"\n}"},{"id":"fdde8fcd-23f0-4936-a527-4cd5888c54d9","name":"Descriptions","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{endpoint}}/products/{{idItem}}/detail/descriptions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 20 Nov 2023 09:50:42 GMT"},{"key":"Content-Length","value":"1034"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"CultureName\": \"00\",\n        \"DescriptionTypeId\": 1,\n        \"Description\": \"gg\",\n        \"DescriptionData\": {\n            \"#cdata-section\": \"gg\"\n        },\n        \"Modules\": null,\n        \"ItemId\": 124,\n        \"idDescription\": null\n    },\n    {\n        \"CultureName\": \"00\",\n        \"DescriptionTypeId\": 3,\n        \"Description\": \"gggs\",\n        \"DescriptionData\": {\n            \"#cdata-section\": \"gggs\"\n        },\n        \"Modules\": null,\n        \"ItemId\": 124,\n        \"idDescription\": null\n    },\n    {\n        \"CultureName\": \"it\",\n        \"DescriptionTypeId\": 1,\n        \"Description\": \"Barbeque a Carbonella per Balcone BBQ Quick \",\n        \"DescriptionData\": {\n            \"#cdata-section\": \"Barbeque a Carbonella per Balcone BBQ Quick \"\n        },\n        \"Modules\": null,\n        \"ItemId\": 124,\n        \"idDescription\": null\n    },\n    {\n        \"CultureName\": \"it\",\n        \"DescriptionTypeId\": 3,\n        \"Description\": \"<p>Con il <strong>barbeque a carbonella per balcone BBQ Quick</strong> non avrai bisogno di avere un grande patio, un cortile o un giardino per gustare le migliori <strong>grigliate a casa</strong>! Questo comodo e durevole <strong>barbecue per balcone</strong> è fatto di ferro e acciaio inox. Ha staffe per appenderlo sul tuo balcone con facilità e sicurezza (bloccaggio regolabile adatto per parapetti dei balconi con una larghezza da circa 11 a 15 cm). Comprende come accessori una griglia e una piastra. È facile da pulire e può essere utilizzata anche come vaso da fiori. Dimensioni: circa 57 x 18,5 x 20 cm. Comprende le staffe di montaggio e le viti. Superficie di cottura: circa 51 x 16 cm.</p><div><a href=\\\"http://www.bbq-quick.com\\\" target=\\\"_blank\\\"><strong>www.bbq-quick.com</strong></a></div>\",\n        \"DescriptionData\": {\n            \"#cdata-section\": \"<p>Con il <strong>barbeque a carbonella per balcone BBQ Quick</strong> non avrai bisogno di avere un grande patio, un cortile o un giardino per gustare le migliori <strong>grigliate a casa</strong>! Questo comodo e durevole <strong>barbecue per balcone</strong> è fatto di ferro e acciaio inox. Ha staffe per appenderlo sul tuo balcone con facilità e sicurezza (bloccaggio regolabile adatto per parapetti dei balconi con una larghezza da circa 11 a 15 cm). Comprende come accessori una griglia e una piastra. È facile da pulire e può essere utilizzata anche come vaso da fiori. Dimensioni: circa 57 x 18,5 x 20 cm. Comprende le staffe di montaggio e le viti. Superficie di cottura: circa 51 x 16 cm.</p><div><a href=\\\"http://www.bbq-quick.com\\\" target=\\\"_blank\\\"><strong>www.bbq-quick.com</strong></a></div>\"\n        },\n        \"Modules\": null,\n        \"ItemId\": 124,\n        \"idDescription\": null\n    },\n    {\n        \"CultureName\": \"00\",\n        \"DescriptionTypeId\": 1,\n        \"Description\": \"sdf\",\n        \"DescriptionData\": {\n            \"#cdata-section\": \"sdf\"\n        },\n        \"Modules\": [\n            2\n        ],\n        \"ItemId\": 124,\n        \"idDescription\": 1348503\n    },\n    {\n        \"CultureName\": \"00\",\n        \"DescriptionTypeId\": 3,\n        \"Description\": \"sfd\",\n        \"DescriptionData\": {\n            \"#cdata-section\": \"sfd\"\n        },\n        \"Modules\": [\n            2\n        ],\n        \"ItemId\": 124,\n        \"idDescription\": 1348504\n    }\n]"},{"id":"292b2f72-988c-44fc-bc18-9692232d8001","name":"FBAInfo","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{endpoint}}/products/{{idItem}}/detail/fbainfo"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 20 Nov 2023 09:50:42 GMT"},{"key":"Content-Length","value":"1034"}],"cookie":[],"responseTime":null,"body":"{\n    \"IsFBA\": true,\n    \"BatteriesRequired\": true,\n    \"BatteriesInclusionMode\": \"batteries_contained_in_equipment\",\n    \"BatteriesComposition\": \"alkaline\",\n    \"BatteriesType\": \"9V\",\n    \"BatteriesCount\": 1,\n    \"BatteriesWeight\": null,\n    \"BatteriesNumberOfCells\": null,\n    \"BatteriesEnergyContent\": null,\n    \"BatteriesLitiumBatteryWeight\": null,\n    \"DGHZRegulations\": null,\n    \"SafetyDataSheetURL\": null,\n    \"FlashPoint\": null,\n    \"UNNumber\": null,\n    \"GHSPictograms\": null,\n    \"IsRiskyProduct\": false,\n    \"GHZStorage\": false,\n    \"GHZWaste\": false,\n    \"GHZTransportation\": false,\n    \"GHZGHS\": false,\n    \"GHZOther\": false,\n    \"PictogramCompressedGas\": false,\n    \"PictogramCorrosive\": false,\n    \"PictogramEnvironmentallyDamaging\": false,\n    \"PictogramExplosive\": false,\n    \"PictogramFlammable\": false,\n    \"PictogramHealthHazard\": false,\n    \"PictogramIrritant\": false,\n    \"PictogramOxidizing\": false,\n    \"PictogramToxic\": false,\n    \"PictogramNoLabel\": false\n}"},{"id":"efd0d1e5-01dc-45f8-a7cf-32f1fe6be758","name":"FiscalInformations","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{endpoint}}/products/{{idItem}}/detail/fiscalinformations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 20 Nov 2023 09:50:42 GMT"},{"key":"Content-Length","value":"1034"}],"cookie":[],"responseTime":null,"body":"{\n    \"B2C\": null,\n    \"B2B\": null\n}"},{"id":"d3116972-9a7c-4ce0-bc77-6d0f58e7c535","name":"Folder","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{endpoint}}/products/{{idItem}}/detail/folder"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 20 Nov 2023 09:50:42 GMT"},{"key":"Content-Length","value":"1034"}],"cookie":[],"responseTime":null,"body":"{\n    \"FolderName\": \"2438\",\n    \"idFolder\": 6,\n    \"ItemId\": 124,\n    \"FullPath\": null\n}"},{"id":"fc67655a-081c-4e0e-96e4-9e704f5d17ef","name":"Identifiers","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{endpoint}}/products/{{idItem}}/detail/identifiers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 20 Nov 2023 09:50:42 GMT"},{"key":"Content-Length","value":"1034"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"idItemIdentifier\": 710930,\n        \"idItem\": 124,\n        \"idIdentifierType\": 13,\n        \"Value\": \"109\",\n        \"idModule\": null,\n        \"SubmoduleName\": \"eDock Prestashop\"\n    },\n    {\n        \"idItemIdentifier\": 1782131,\n        \"idItem\": 124,\n        \"idIdentifierType\": 10,\n        \"Value\": \"{{Marketplace SKU}}\",\n        \"idModule\": 2,\n        \"SubmoduleName\": \"Italy\"\n    }\n]"},{"id":"e36752e1-5fd8-4188-8207-67109c172df2","name":"Images","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{endpoint}}/products/{{idItem}}/detail/images"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 20 Nov 2023 09:50:42 GMT"},{"key":"Content-Length","value":"1034"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"idItemImage\": 21724735,\n        \"ImagesPath\": \"http://dropshipping.bigbuy.eu/imgs/B1530176_76657.jpg\",\n        \"ImagesCreatedOn\": \"2018-03-21T10:35:28.147Z\",\n        \"ImagesIsLocallyHosted\": false,\n        \"OrderIndex\": 5,\n        \"FullImagePath\": \"http://dropshipping.bigbuy.eu/imgs/B1530176_76657.jpg\",\n        \"IsDynamicBox\": false,\n        \"FullImagePathEncoded\": \"http://dropshipping.bigbuy.eu/imgs/B1530176_76657.jpg\",\n        \"ItemId\": 124,\n        \"ImagesIdImage\": 11,\n        \"idImage\": null,\n        \"idModule\": null\n    },\n    {\n        \"idItemImage\": 21724736,\n        \"ImagesPath\": \"http://dropshipping.bigbuy.eu/imgs/B1530176_76655.jpg\",\n        \"ImagesCreatedOn\": \"2018-03-21T10:35:28.147Z\",\n        \"ImagesIsLocallyHosted\": false,\n        \"OrderIndex\": 5,\n        \"FullImagePath\": \"http://dropshipping.bigbuy.eu/imgs/B1530176_76655.jpg\",\n        \"IsDynamicBox\": false,\n        \"FullImagePathEncoded\": \"http://dropshipping.bigbuy.eu/imgs/B1530176_76655.jpg\",\n        \"ItemId\": 124,\n        \"ImagesIdImage\": 12,\n        \"idImage\": null,\n        \"idModule\": null\n    },\n    {\n        \"idItemImage\": 21724737,\n        \"ImagesPath\": \"http://dropshipping.bigbuy.eu/imgs/B1530176_76653.jpg\",\n        \"ImagesCreatedOn\": \"2018-03-21T10:35:28.147Z\",\n        \"ImagesIsLocallyHosted\": false,\n        \"OrderIndex\": 5,\n        \"FullImagePath\": \"http://dropshipping.bigbuy.eu/imgs/B1530176_76653.jpg\",\n        \"IsDynamicBox\": false,\n        \"FullImagePathEncoded\": \"http://dropshipping.bigbuy.eu/imgs/B1530176_76653.jpg\",\n        \"ItemId\": 124,\n        \"ImagesIdImage\": 13,\n        \"idImage\": null,\n        \"idModule\": null\n    },\n    {\n        \"idItemImage\": 21724738,\n        \"ImagesPath\": \"http://dropshipping.bigbuy.eu/imgs/B1530176_76652.jpg\",\n        \"ImagesCreatedOn\": \"2018-03-21T10:35:28.147Z\",\n        \"ImagesIsLocallyHosted\": false,\n        \"OrderIndex\": 5,\n        \"FullImagePath\": \"http://dropshipping.bigbuy.eu/imgs/B1530176_76652.jpg\",\n        \"IsDynamicBox\": false,\n        \"FullImagePathEncoded\": \"http://dropshipping.bigbuy.eu/imgs/B1530176_76652.jpg\",\n        \"ItemId\": 124,\n        \"ImagesIdImage\": 14,\n        \"idImage\": null,\n        \"idModule\": null\n    },\n    {\n        \"idItemImage\": 21724739,\n        \"ImagesPath\": \"http://dropshipping.bigbuy.eu/imgs/B1530176_76650.jpg\",\n        \"ImagesCreatedOn\": \"2018-03-21T10:35:28.147Z\",\n        \"ImagesIsLocallyHosted\": false,\n        \"OrderIndex\": 5,\n        \"FullImagePath\": \"http://dropshipping.bigbuy.eu/imgs/B1530176_76650.jpg\",\n        \"IsDynamicBox\": false,\n        \"FullImagePathEncoded\": \"http://dropshipping.bigbuy.eu/imgs/B1530176_76650.jpg\",\n        \"ItemId\": 124,\n        \"ImagesIdImage\": 15,\n        \"idImage\": null,\n        \"idModule\": null\n    }\n]"},{"id":"2fb13eef-d887-4fe2-adda-599f78ca0458","name":"Prices","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{endpoint}}/products/{{idItem}}/detail/prices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 20 Nov 2023 09:50:42 GMT"},{"key":"Content-Length","value":"1034"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"Price\": 69,\n        \"Discount\": 0,\n        \"DiscountTypeIdDiscountType\": null,\n        \"PriceListIdPricing\": 1,\n        \"PriceListName\": \"Listino predefinito\",\n        \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n        \"PriceListIsDiscountEnabled\": true,\n        \"PriceListIsSync\": true,\n        \"RealPrice\": 69,\n        \"IsDiscountedPrice\": false,\n        \"ItemId\": 124,\n        \"CreatedOn\": \"2020-10-20T14:35:21.493Z\",\n        \"UpdatedOn\": \"2020-10-22T15:54:50.29Z\"\n    },\n    {\n        \"Price\": 150,\n        \"Discount\": 0,\n        \"DiscountTypeIdDiscountType\": null,\n        \"PriceListIdPricing\": 2,\n        \"PriceListName\": \"Wish\",\n        \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n        \"PriceListIsDiscountEnabled\": false,\n        \"PriceListIsSync\": true,\n        \"RealPrice\": 150,\n        \"IsDiscountedPrice\": false,\n        \"ItemId\": 124,\n        \"CreatedOn\": \"2023-07-04T10:13:23.557Z\",\n        \"UpdatedOn\": null\n    },\n    {\n        \"Price\": 155,\n        \"Discount\": 0,\n        \"DiscountTypeIdDiscountType\": null,\n        \"PriceListIdPricing\": 29,\n        \"PriceListName\": \"BackMarket\",\n        \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n        \"PriceListIsDiscountEnabled\": false,\n        \"PriceListIsSync\": true,\n        \"RealPrice\": 155,\n        \"IsDiscountedPrice\": false,\n        \"ItemId\": 124,\n        \"CreatedOn\": \"2022-10-10T10:40:56.51Z\",\n        \"UpdatedOn\": \"2023-04-24T08:51:04.203Z\"\n    }\n]"}],"_postman_id":"776f31f9-e3d6-4996-a025-a20456f5c904"},{"name":"Image","id":"57c76f94-c597-d772-0a61-6fc49eb93b8c","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{endpoint}}/products/{{idItem}}/image?maxWidth={{imageWidth}}&maxHeight={{imageHeight}}","description":"<p>Recupera l'immagine predefinita per un determinato prodotto.</p>\n<p>Opzionalmente è possibile richiederla in dimensioni precise, passando i parametri {{maxHeight}} e/o {{maxWidth}}.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["products","{{idItem}}","image"],"host":["{{endpoint}}"],"query":[{"key":"maxWidth","value":"{{imageWidth}}"},{"key":"maxHeight","value":"{{imageHeight}}"}],"variable":[]}},"response":[],"_postman_id":"57c76f94-c597-d772-0a61-6fc49eb93b8c"},{"name":"Search","id":"beb87529-c216-89af-3897-c0c3355b0422","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"page\": 0,            //Recupera questa pagina di ordini. Il conto inizia da 0. Obbligatorio.\r\n  \"pageSize\": 20        //Dimensione della pagina. Obbligatorio\r\n}"},"url":"{{endpoint}}/products/search","description":"<p>Recupera tutti i prodotti creati su MarketRock.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["products","search"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"27f3dcf9-2ca5-46b4-ab57-0621e3e49b54","name":"Get all","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"page\": 0,            //Recupera questa pagina di ordini. Il conto inizia da 0. Obbligatorio.\r\n  \"pageSize\": 20        //Dimensione della pagina. Obbligatorio\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"2763"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 30 Oct 2023 15:18:19 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"PageSize\": 20,\n    \"Page\": 0,\n    \"TotalCount\": 12624,\n    \"Content\": [\n        {\n            \"IdItem\": 124,\n            \"ItemGuid\": \"573b5db9-abb3-4c72-ac7a-72c8bc784f5a\",\n            \"InternalName\": \"Barbeque a Carbonella per Balcone BBQ Quick \",\n            \"SKU\": \"B1530176\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"1502\",\n            \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n            \"UpdatedOn\": \"2023-10-30T14:59:26.78Z\",\n            \"Folder\": {\n                \"FolderName\": \"2438\",\n                \"idFolder\": 6,\n                \"ItemId\": 124,\n                \"FullPath\": null\n            },\n            \"Attributes\": null,\n            \"Descriptions\": null,\n            \"PricingRows\": null,\n            \"Measures\": null,\n            \"ItemImages\": null,\n            \"Availabilities\": null,\n            \"Condition\": null,\n            \"ConditionNotes\": null,\n            \"Variations\": null,\n            \"VariatesOn\": 0,\n            \"VariatesOnName\": \"\",\n            \"VariationFather\": null,\n            \"Combinations\": null,\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"Identifiers\": null,\n            \"FBAInfo\": null,\n            \"FiscalInformations\": null,\n            \"Exclusions\": null,\n            \"Links\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null,\n            \"VariationFatherId\": null,\n            \"CombinationFatherId\": null,\n            \"SupplierCustomerId\": null,\n            \"HSCode\": null,\n            \"InventoryReference\": null,\n            \"idCountryOfOrigin\": null,\n            \"IsDangerousGood\": false,\n            \"Distributors\": null,\n            \"Bundles\": null\n        },\n        {\n            \"IdItem\": 125,\n            \"ItemGuid\": \"d6253228-d716-4ce2-b3db-c5f2206409aa\",\n            \"InternalName\": \"Macchina da Cucire Complete Tailor\",\n            \"SKU\": \"C1545001\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"1505\",\n            \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n            \"UpdatedOn\": \"2023-07-20T12:25:45.537Z\",\n            \"Folder\": {\n                \"FolderName\": \"2466\",\n                \"idFolder\": 8,\n                \"ItemId\": 125,\n                \"FullPath\": null\n            },\n            \"Attributes\": null,\n            \"Descriptions\": null,\n            \"PricingRows\": null,\n            \"Measures\": null,\n            \"ItemImages\": null,\n            \"Availabilities\": null,\n            \"Condition\": null,\n            \"ConditionNotes\": null,\n            \"Variations\": null,\n            \"VariatesOn\": 0,\n            \"VariatesOnName\": \"\",\n            \"VariationFather\": null,\n            \"Combinations\": null,\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"Identifiers\": null,\n            \"FBAInfo\": null,\n            \"FiscalInformations\": null,\n            \"Exclusions\": null,\n            \"Links\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null,\n            \"VariationFatherId\": null,\n            \"CombinationFatherId\": null,\n            \"SupplierCustomerId\": null,\n            \"HSCode\": null,\n            \"InventoryReference\": null,\n            \"idCountryOfOrigin\": null,\n            \"IsDangerousGood\": false,\n            \"Distributors\": null,\n            \"Bundles\": null\n        },\n        {\n            \"IdItem\": 126,\n            \"ItemGuid\": \"8dad3dbf-8b4e-4687-aadc-0b9acf51a11a\",\n            \"InternalName\": \"Bracciale Antizanzare ZOOM\",\n            \"SKU\": \"D0500106\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"1504\",\n            \"CreatedOn\": \"2018-03-21T10:35:28.163Z\",\n            \"UpdatedOn\": \"2023-07-06T09:55:26.447Z\",\n            \"Folder\": {\n                \"FolderName\": \"2441\",\n                \"idFolder\": 9,\n                \"ItemId\": 126,\n                \"FullPath\": null\n            },\n            \"Attributes\": null,\n            \"Descriptions\": null,\n            \"PricingRows\": null,\n            \"Measures\": null,\n            \"ItemImages\": null,\n            \"Availabilities\": null,\n            \"Condition\": null,\n            \"ConditionNotes\": null,\n            \"Variations\": null,\n            \"VariatesOn\": 0,\n            \"VariatesOnName\": \"\",\n            \"VariationFather\": null,\n            \"Combinations\": null,\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"Identifiers\": null,\n            \"FBAInfo\": null,\n            \"FiscalInformations\": null,\n            \"Exclusions\": null,\n            \"Links\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null,\n            \"VariationFatherId\": null,\n            \"CombinationFatherId\": null,\n            \"SupplierCustomerId\": null,\n            \"HSCode\": null,\n            \"InventoryReference\": null,\n            \"idCountryOfOrigin\": null,\n            \"IsDangerousGood\": false,\n            \"Distributors\": null,\n            \"Bundles\": null\n        },\n        {\n            \"IdItem\": 128,\n            \"ItemGuid\": \"5c7fd8d0-a5eb-4ebc-8a6f-4636ab78e462\",\n            \"InternalName\": \"Bracciale Antizanzare ZOOM\",\n            \"SKU\": \"D0500108\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"1504\",\n            \"CreatedOn\": \"2018-03-21T10:35:28.193Z\",\n            \"UpdatedOn\": \"2023-05-02T15:15:59.84Z\",\n            \"Folder\": {\n                \"FolderName\": \"ID Prodotto\",\n                \"idFolder\": 347,\n                \"ItemId\": 128,\n                \"FullPath\": null\n            },\n            \"Attributes\": null,\n            \"Descriptions\": null,\n            \"PricingRows\": null,\n            \"Measures\": null,\n            \"ItemImages\": null,\n            \"Availabilities\": null,\n            \"Condition\": null,\n            \"ConditionNotes\": null,\n            \"Variations\": null,\n            \"VariatesOn\": 0,\n            \"VariatesOnName\": \"\",\n            \"VariationFather\": null,\n            \"Combinations\": null,\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"Identifiers\": null,\n            \"FBAInfo\": null,\n            \"FiscalInformations\": null,\n            \"Exclusions\": null,\n            \"Links\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null,\n            \"VariationFatherId\": null,\n            \"CombinationFatherId\": null,\n            \"SupplierCustomerId\": null,\n            \"HSCode\": null,\n            \"InventoryReference\": null,\n            \"idCountryOfOrigin\": null,\n            \"IsDangerousGood\": false,\n            \"Distributors\": null,\n            \"Bundles\": null\n        },\n        {\n            \"IdItem\": 129,\n            \"ItemGuid\": \"297f3287-9cf7-46cc-9eb5-b3428b72f384\",\n            \"InternalName\": \"Bracciale Antizanzare ZOOM\",\n            \"SKU\": \"D0500109\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"1504\",\n            \"CreatedOn\": \"2018-03-21T10:35:28.193Z\",\n            \"UpdatedOn\": \"2023-05-02T15:16:01.11Z\",\n            \"Folder\": {\n                \"FolderName\": \"2441\",\n                \"idFolder\": 9,\n                \"ItemId\": 129,\n                \"FullPath\": null\n            },\n            \"Attributes\": null,\n            \"Descriptions\": null,\n            \"PricingRows\": null,\n            \"Measures\": null,\n            \"ItemImages\": null,\n            \"Availabilities\": null,\n            \"Condition\": null,\n            \"ConditionNotes\": null,\n            \"Variations\": null,\n            \"VariatesOn\": 0,\n            \"VariatesOnName\": \"\",\n            \"VariationFather\": null,\n            \"Combinations\": null,\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"Identifiers\": null,\n            \"FBAInfo\": null,\n            \"FiscalInformations\": null,\n            \"Exclusions\": null,\n            \"Links\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null,\n            \"VariationFatherId\": null,\n            \"CombinationFatherId\": null,\n            \"SupplierCustomerId\": null,\n            \"HSCode\": null,\n            \"InventoryReference\": null,\n            \"idCountryOfOrigin\": null,\n            \"IsDangerousGood\": false,\n            \"Distributors\": null,\n            \"Bundles\": null\n        },\n        {\n            \"IdItem\": 130,\n            \"ItemGuid\": \"51510ad9-5b83-4823-a454-82d26d7cf4ce\",\n            \"InternalName\": \"Bracciale Antizanzare ZOOM\",\n            \"SKU\": \"D0500110\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"1504\",\n            \"CreatedOn\": \"2018-03-21T10:35:28.21Z\",\n            \"UpdatedOn\": \"2023-05-02T15:16:02.383Z\",\n            \"Folder\": {\n                \"FolderName\": \"2441\",\n                \"idFolder\": 9,\n                \"ItemId\": 130,\n                \"FullPath\": null\n            },\n            \"Attributes\": null,\n            \"Descriptions\": null,\n            \"PricingRows\": null,\n            \"Measures\": null,\n            \"ItemImages\": null,\n            \"Availabilities\": null,\n            \"Condition\": null,\n            \"ConditionNotes\": null,\n            \"Variations\": null,\n            \"VariatesOn\": 0,\n            \"VariatesOnName\": \"\",\n            \"VariationFather\": null,\n            \"Combinations\": null,\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"Identifiers\": null,\n            \"FBAInfo\": null,\n            \"FiscalInformations\": null,\n            \"Exclusions\": null,\n            \"Links\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null,\n            \"VariationFatherId\": null,\n            \"CombinationFatherId\": null,\n            \"SupplierCustomerId\": null,\n            \"HSCode\": null,\n            \"InventoryReference\": null,\n            \"idCountryOfOrigin\": null,\n            \"IsDangerousGood\": false,\n            \"Distributors\": null,\n            \"Bundles\": null\n        },\n        {\n            \"IdItem\": 131,\n            \"ItemGuid\": \"c41b3c60-3a2e-42fb-8d92-a0088b85cdaf\",\n            \"InternalName\": \"Bracciale Antizanzare ZOOM\",\n            \"SKU\": \"D0500113\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"1504\",\n            \"CreatedOn\": \"2018-03-21T10:35:28.223Z\",\n            \"UpdatedOn\": \"2023-05-02T15:16:03.713Z\",\n            \"Folder\": {\n                \"FolderName\": \"2441\",\n                \"idFolder\": 9,\n                \"ItemId\": 131,\n                \"FullPath\": null\n            },\n            \"Attributes\": null,\n            \"Descriptions\": null,\n            \"PricingRows\": null,\n            \"Measures\": null,\n            \"ItemImages\": null,\n            \"Availabilities\": null,\n            \"Condition\": null,\n            \"ConditionNotes\": null,\n            \"Variations\": null,\n            \"VariatesOn\": 0,\n            \"VariatesOnName\": \"\",\n            \"VariationFather\": null,\n            \"Combinations\": null,\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"Identifiers\": null,\n            \"FBAInfo\": null,\n            \"FiscalInformations\": null,\n            \"Exclusions\": null,\n            \"Links\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null,\n            \"VariationFatherId\": null,\n            \"CombinationFatherId\": null,\n            \"SupplierCustomerId\": null,\n            \"HSCode\": null,\n            \"InventoryReference\": null,\n            \"idCountryOfOrigin\": null,\n            \"IsDangerousGood\": false,\n            \"Distributors\": null,\n            \"Bundles\": null\n        },\n        {\n            \"IdItem\": 132,\n            \"ItemGuid\": \"508ce525-52b8-47e6-ae0a-6974d9c60e27\",\n            \"InternalName\": \"Bracciale Antizanzare ZOOM\",\n            \"SKU\": \"D0500114\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"1504\",\n            \"CreatedOn\": \"2018-03-21T10:35:28.223Z\",\n            \"UpdatedOn\": \"2023-07-04T10:13:24.023Z\",\n            \"Folder\": {\n                \"FolderName\": \"2441\",\n                \"idFolder\": 9,\n                \"ItemId\": 132,\n                \"FullPath\": null\n            },\n            \"Attributes\": null,\n            \"Descriptions\": null,\n            \"PricingRows\": null,\n            \"Measures\": null,\n            \"ItemImages\": null,\n            \"Availabilities\": null,\n            \"Condition\": null,\n            \"ConditionNotes\": null,\n            \"Variations\": null,\n            \"VariatesOn\": 0,\n            \"VariatesOnName\": \"\",\n            \"VariationFather\": null,\n            \"Combinations\": null,\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"Identifiers\": null,\n            \"FBAInfo\": null,\n            \"FiscalInformations\": null,\n            \"Exclusions\": null,\n            \"Links\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null,\n            \"VariationFatherId\": null,\n            \"CombinationFatherId\": null,\n            \"SupplierCustomerId\": null,\n            \"HSCode\": null,\n            \"InventoryReference\": null,\n            \"idCountryOfOrigin\": null,\n            \"IsDangerousGood\": false,\n            \"Distributors\": null,\n            \"Bundles\": null\n        },\n        {\n            \"IdItem\": 133,\n            \"ItemGuid\": \"c803509d-1e65-4423-9b62-73942b4b40a4\",\n            \"InternalName\": \"Bracciale Antizanzare ZOOM\",\n            \"SKU\": \"D0500128\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"1504\",\n            \"CreatedOn\": \"2018-03-21T10:35:28.24Z\",\n            \"UpdatedOn\": \"2023-05-02T15:16:06.36Z\",\n            \"Folder\": {\n                \"FolderName\": \"2441\",\n                \"idFolder\": 9,\n                \"ItemId\": 133,\n                \"FullPath\": null\n            },\n            \"Attributes\": null,\n            \"Descriptions\": null,\n            \"PricingRows\": null,\n            \"Measures\": null,\n            \"ItemImages\": null,\n            \"Availabilities\": null,\n            \"Condition\": null,\n            \"ConditionNotes\": null,\n            \"Variations\": null,\n            \"VariatesOn\": 0,\n            \"VariatesOnName\": \"\",\n            \"VariationFather\": null,\n            \"Combinations\": null,\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"Identifiers\": null,\n            \"FBAInfo\": null,\n            \"FiscalInformations\": null,\n            \"Exclusions\": null,\n            \"Links\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null,\n            \"VariationFatherId\": null,\n            \"CombinationFatherId\": null,\n            \"SupplierCustomerId\": null,\n            \"HSCode\": null,\n            \"InventoryReference\": null,\n            \"idCountryOfOrigin\": null,\n            \"IsDangerousGood\": false,\n            \"Distributors\": null,\n            \"Bundles\": null\n        },\n        {\n            \"IdItem\": 134,\n            \"ItemGuid\": \"c1d5a0d5-0c81-4006-8709-95e5337b3a08\",\n            \"InternalName\": \"Portachiavi Antizanzare Keychain\",\n            \"SKU\": \"D0500130\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"1504\",\n            \"CreatedOn\": \"2018-03-21T10:35:28.257Z\",\n            \"UpdatedOn\": \"2023-05-02T15:16:07.627Z\",\n            \"Folder\": {\n                \"FolderName\": \"2441\",\n                \"idFolder\": 9,\n                \"ItemId\": 134,\n                \"FullPath\": null\n            },\n            \"Attributes\": null,\n            \"Descriptions\": null,\n            \"PricingRows\": null,\n            \"Measures\": null,\n            \"ItemImages\": null,\n            \"Availabilities\": null,\n            \"Condition\": null,\n            \"ConditionNotes\": null,\n            \"Variations\": null,\n            \"VariatesOn\": 0,\n            \"VariatesOnName\": \"\",\n            \"VariationFather\": null,\n            \"Combinations\": null,\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"Identifiers\": null,\n            \"FBAInfo\": null,\n            \"FiscalInformations\": null,\n            \"Exclusions\": null,\n            \"Links\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null,\n            \"VariationFatherId\": null,\n            \"CombinationFatherId\": null,\n            \"SupplierCustomerId\": null,\n            \"HSCode\": null,\n            \"InventoryReference\": null,\n            \"idCountryOfOrigin\": null,\n            \"IsDangerousGood\": false,\n            \"Distributors\": null,\n            \"Bundles\": null\n        },\n        {\n            \"IdItem\": 135,\n            \"ItemGuid\": \"a57c0c41-37bf-45fa-9dcf-22192291f49d\",\n            \"InternalName\": \"Repellente per Topi Eco Solem Solar \",\n            \"SKU\": \"D0500131\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"1505\",\n            \"CreatedOn\": \"2018-03-21T10:35:28.257Z\",\n            \"UpdatedOn\": \"2023-05-02T15:16:08.91Z\",\n            \"Folder\": {\n                \"FolderName\": \"2441\",\n                \"idFolder\": 9,\n                \"ItemId\": 135,\n                \"FullPath\": null\n            },\n            \"Attributes\": null,\n            \"Descriptions\": null,\n            \"PricingRows\": null,\n            \"Measures\": null,\n            \"ItemImages\": null,\n            \"Availabilities\": null,\n            \"Condition\": null,\n            \"ConditionNotes\": null,\n            \"Variations\": null,\n            \"VariatesOn\": 0,\n            \"VariatesOnName\": \"\",\n            \"VariationFather\": null,\n            \"Combinations\": null,\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"Identifiers\": null,\n            \"FBAInfo\": null,\n            \"FiscalInformations\": null,\n            \"Exclusions\": null,\n            \"Links\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null,\n            \"VariationFatherId\": null,\n            \"CombinationFatherId\": null,\n            \"SupplierCustomerId\": null,\n            \"HSCode\": null,\n            \"InventoryReference\": null,\n            \"idCountryOfOrigin\": null,\n            \"IsDangerousGood\": false,\n            \"Distributors\": null,\n            \"Bundles\": null\n        },\n        {\n            \"IdItem\": 136,\n            \"ItemGuid\": \"6688f7b3-54cf-4000-8f0b-8096956b4770\",\n            \"InternalName\": \"Zanzariera Magnetica Magneto Mesh\",\n            \"SKU\": \"D0500133\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"1504\",\n            \"CreatedOn\": \"2018-03-21T10:35:28.27Z\",\n            \"UpdatedOn\": \"2023-05-02T15:16:10.21Z\",\n            \"Folder\": {\n                \"FolderName\": \"2441\",\n                \"idFolder\": 9,\n                \"ItemId\": 136,\n                \"FullPath\": null\n            },\n            \"Attributes\": null,\n            \"Descriptions\": null,\n            \"PricingRows\": null,\n            \"Measures\": null,\n            \"ItemImages\": null,\n            \"Availabilities\": null,\n            \"Condition\": null,\n            \"ConditionNotes\": null,\n            \"Variations\": null,\n            \"VariatesOn\": 0,\n            \"VariatesOnName\": \"\",\n            \"VariationFather\": null,\n            \"Combinations\": null,\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"Identifiers\": null,\n            \"FBAInfo\": null,\n            \"FiscalInformations\": null,\n            \"Exclusions\": null,\n            \"Links\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null,\n            \"VariationFatherId\": null,\n            \"CombinationFatherId\": null,\n            \"SupplierCustomerId\": null,\n            \"HSCode\": null,\n            \"InventoryReference\": null,\n            \"idCountryOfOrigin\": null,\n            \"IsDangerousGood\": false,\n            \"Distributors\": null,\n            \"Bundles\": null\n        },\n        {\n            \"IdItem\": 137,\n            \"ItemGuid\": \"b676343e-cc8b-494c-8bd6-cd5a790bf210\",\n            \"InternalName\": \"Zanzariera Magnetica Magneto Mesh\",\n            \"SKU\": \"D0500134\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"1504\",\n            \"CreatedOn\": \"2018-03-21T10:35:28.29Z\",\n            \"UpdatedOn\": \"2023-05-02T15:16:11.533Z\",\n            \"Folder\": {\n                \"FolderName\": \"2441\",\n                \"idFolder\": 9,\n                \"ItemId\": 137,\n                \"FullPath\": null\n            },\n            \"Attributes\": null,\n            \"Descriptions\": null,\n            \"PricingRows\": null,\n            \"Measures\": null,\n            \"ItemImages\": null,\n            \"Availabilities\": null,\n            \"Condition\": null,\n            \"ConditionNotes\": null,\n            \"Variations\": null,\n            \"VariatesOn\": 0,\n            \"VariatesOnName\": \"\",\n            \"VariationFather\": null,\n            \"Combinations\": null,\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"Identifiers\": null,\n            \"FBAInfo\": null,\n            \"FiscalInformations\": null,\n            \"Exclusions\": null,\n            \"Links\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null,\n            \"VariationFatherId\": null,\n            \"CombinationFatherId\": null,\n            \"SupplierCustomerId\": null,\n            \"HSCode\": null,\n            \"InventoryReference\": null,\n            \"idCountryOfOrigin\": null,\n            \"IsDangerousGood\": false,\n            \"Distributors\": null,\n            \"Bundles\": null\n        },\n        {\n            \"IdItem\": 138,\n            \"ItemGuid\": \"b5a44587-f264-40e4-8365-3b5a799c54e1\",\n            \"InternalName\": \"Candele alla citronella antizanzare (confezione da 18)\",\n            \"SKU\": \"D0500135\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"2252\",\n            \"CreatedOn\": \"2018-03-21T10:35:28.303Z\",\n            \"UpdatedOn\": \"2023-05-02T15:16:12.807Z\",\n            \"Folder\": {\n                \"FolderName\": \"2441\",\n                \"idFolder\": 9,\n                \"ItemId\": 138,\n                \"FullPath\": null\n            },\n            \"Attributes\": null,\n            \"Descriptions\": null,\n            \"PricingRows\": null,\n            \"Measures\": null,\n            \"ItemImages\": null,\n            \"Availabilities\": null,\n            \"Condition\": null,\n            \"ConditionNotes\": null,\n            \"Variations\": null,\n            \"VariatesOn\": 0,\n            \"VariatesOnName\": \"\",\n            \"VariationFather\": null,\n            \"Combinations\": null,\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"Identifiers\": null,\n            \"FBAInfo\": null,\n            \"FiscalInformations\": null,\n            \"Exclusions\": null,\n            \"Links\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null,\n            \"VariationFatherId\": null,\n            \"CombinationFatherId\": null,\n            \"SupplierCustomerId\": null,\n            \"HSCode\": null,\n            \"InventoryReference\": null,\n            \"idCountryOfOrigin\": null,\n            \"IsDangerousGood\": false,\n            \"Distributors\": null,\n            \"Bundles\": null\n        },\n        {\n            \"IdItem\": 139,\n            \"ItemGuid\": \"71237690-8877-454c-9fd9-c854ec1920ba\",\n            \"InternalName\": \"Lampada Anti Zanzare Inkil T1400\",\n            \"SKU\": \"D0500136\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"1111\",\n            \"CreatedOn\": \"2018-03-21T10:35:28.303Z\",\n            \"UpdatedOn\": \"2023-05-02T15:16:14.063Z\",\n            \"Folder\": {\n                \"FolderName\": \"2441\",\n                \"idFolder\": 9,\n                \"ItemId\": 139,\n                \"FullPath\": null\n            },\n            \"Attributes\": null,\n            \"Descriptions\": null,\n            \"PricingRows\": null,\n            \"Measures\": null,\n            \"ItemImages\": null,\n            \"Availabilities\": null,\n            \"Condition\": null,\n            \"ConditionNotes\": null,\n            \"Variations\": null,\n            \"VariatesOn\": 0,\n            \"VariatesOnName\": \"\",\n            \"VariationFather\": null,\n            \"Combinations\": null,\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"Identifiers\": null,\n            \"FBAInfo\": null,\n            \"FiscalInformations\": null,\n            \"Exclusions\": null,\n            \"Links\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null,\n            \"VariationFatherId\": null,\n            \"CombinationFatherId\": null,\n            \"SupplierCustomerId\": null,\n            \"HSCode\": null,\n            \"InventoryReference\": null,\n            \"idCountryOfOrigin\": null,\n            \"IsDangerousGood\": false,\n            \"Distributors\": null,\n            \"Bundles\": null\n        },\n        {\n            \"IdItem\": 140,\n            \"ItemGuid\": \"bcefff43-bc0e-44d8-92a4-75db9dc667b4\",\n            \"InternalName\": \"Lampada Anti Zanzare Inkil T1500\",\n            \"SKU\": \"D0500137\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"1111\",\n            \"CreatedOn\": \"2018-03-21T10:35:28.32Z\",\n            \"UpdatedOn\": \"2023-05-02T15:16:15.363Z\",\n            \"Folder\": {\n                \"FolderName\": \"2441\",\n                \"idFolder\": 9,\n                \"ItemId\": 140,\n                \"FullPath\": null\n            },\n            \"Attributes\": null,\n            \"Descriptions\": null,\n            \"PricingRows\": null,\n            \"Measures\": null,\n            \"ItemImages\": null,\n            \"Availabilities\": null,\n            \"Condition\": null,\n            \"ConditionNotes\": null,\n            \"Variations\": null,\n            \"VariatesOn\": 0,\n            \"VariatesOnName\": \"\",\n            \"VariationFather\": null,\n            \"Combinations\": null,\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"Identifiers\": null,\n            \"FBAInfo\": null,\n            \"FiscalInformations\": null,\n            \"Exclusions\": null,\n            \"Links\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null,\n            \"VariationFatherId\": null,\n            \"CombinationFatherId\": null,\n            \"SupplierCustomerId\": null,\n            \"HSCode\": null,\n            \"InventoryReference\": null,\n            \"idCountryOfOrigin\": null,\n            \"IsDangerousGood\": false,\n            \"Distributors\": null,\n            \"Bundles\": null\n        },\n        {\n            \"IdItem\": 141,\n            \"ItemGuid\": \"ecb334e2-0c6b-438e-890f-953878b0992e\",\n            \"InternalName\": \"Lampada Anti Zanzare Inkil T1600\",\n            \"SKU\": \"D0500138\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"1111\",\n            \"CreatedOn\": \"2018-03-21T10:35:28.32Z\",\n            \"UpdatedOn\": \"2023-05-02T15:16:16.593Z\",\n            \"Folder\": {\n                \"FolderName\": \"2441\",\n                \"idFolder\": 9,\n                \"ItemId\": 141,\n                \"FullPath\": null\n            },\n            \"Attributes\": null,\n            \"Descriptions\": null,\n            \"PricingRows\": null,\n            \"Measures\": null,\n            \"ItemImages\": null,\n            \"Availabilities\": null,\n            \"Condition\": null,\n            \"ConditionNotes\": null,\n            \"Variations\": null,\n            \"VariatesOn\": 0,\n            \"VariatesOnName\": \"\",\n            \"VariationFather\": null,\n            \"Combinations\": null,\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"Identifiers\": null,\n            \"FBAInfo\": null,\n            \"FiscalInformations\": null,\n            \"Exclusions\": null,\n            \"Links\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null,\n            \"VariationFatherId\": null,\n            \"CombinationFatherId\": null,\n            \"SupplierCustomerId\": null,\n            \"HSCode\": null,\n            \"InventoryReference\": null,\n            \"idCountryOfOrigin\": null,\n            \"IsDangerousGood\": false,\n            \"Distributors\": null,\n            \"Bundles\": null\n        },\n        {\n            \"IdItem\": 142,\n            \"ItemGuid\": \"f7b2e06e-5d4a-44dd-a553-544a7921165b\",\n            \"InternalName\": \"Luce Anti Zanzare Inkil T1100\",\n            \"SKU\": \"D0500140\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"1111\",\n            \"CreatedOn\": \"2018-03-21T10:35:32.77Z\",\n            \"UpdatedOn\": \"2023-05-02T15:16:17.893Z\",\n            \"Folder\": {\n                \"FolderName\": \"2441\",\n                \"idFolder\": 9,\n                \"ItemId\": 142,\n                \"FullPath\": null\n            },\n            \"Attributes\": null,\n            \"Descriptions\": null,\n            \"PricingRows\": null,\n            \"Measures\": null,\n            \"ItemImages\": null,\n            \"Availabilities\": null,\n            \"Condition\": null,\n            \"ConditionNotes\": null,\n            \"Variations\": null,\n            \"VariatesOn\": 0,\n            \"VariatesOnName\": \"\",\n            \"VariationFather\": null,\n            \"Combinations\": null,\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"Identifiers\": null,\n            \"FBAInfo\": null,\n            \"FiscalInformations\": null,\n            \"Exclusions\": null,\n            \"Links\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null,\n            \"VariationFatherId\": null,\n            \"CombinationFatherId\": null,\n            \"SupplierCustomerId\": null,\n            \"HSCode\": null,\n            \"InventoryReference\": null,\n            \"idCountryOfOrigin\": null,\n            \"IsDangerousGood\": false,\n            \"Distributors\": null,\n            \"Bundles\": null\n        },\n        {\n            \"IdItem\": 143,\n            \"ItemGuid\": \"192e1dcd-7749-4324-a7c0-a808bbc25835\",\n            \"InternalName\": \"Luce Anti Zanzare Inkil T1200 \",\n            \"SKU\": \"D0500141\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"1111\",\n            \"CreatedOn\": \"2018-03-21T10:35:32.787Z\",\n            \"UpdatedOn\": \"2023-05-02T15:16:19.217Z\",\n            \"Folder\": {\n                \"FolderName\": \"2441\",\n                \"idFolder\": 9,\n                \"ItemId\": 143,\n                \"FullPath\": null\n            },\n            \"Attributes\": null,\n            \"Descriptions\": null,\n            \"PricingRows\": null,\n            \"Measures\": null,\n            \"ItemImages\": null,\n            \"Availabilities\": null,\n            \"Condition\": null,\n            \"ConditionNotes\": null,\n            \"Variations\": null,\n            \"VariatesOn\": 0,\n            \"VariatesOnName\": \"\",\n            \"VariationFather\": null,\n            \"Combinations\": null,\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"Identifiers\": null,\n            \"FBAInfo\": null,\n            \"FiscalInformations\": null,\n            \"Exclusions\": null,\n            \"Links\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null,\n            \"VariationFatherId\": null,\n            \"CombinationFatherId\": null,\n            \"SupplierCustomerId\": null,\n            \"HSCode\": null,\n            \"InventoryReference\": null,\n            \"idCountryOfOrigin\": null,\n            \"IsDangerousGood\": false,\n            \"Distributors\": null,\n            \"Bundles\": null\n        },\n        {\n            \"IdItem\": 144,\n            \"ItemGuid\": \"3863fd0a-cf44-46ee-b18e-af9d4fbfc1d4\",\n            \"InternalName\": \"Zanzariera Magnetica Magneto Mesh\",\n            \"SKU\": \"D0500143\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"1504\",\n            \"CreatedOn\": \"2018-03-21T10:35:32.803Z\",\n            \"UpdatedOn\": \"2023-05-02T15:16:20.543Z\",\n            \"Folder\": {\n                \"FolderName\": \"2441\",\n                \"idFolder\": 9,\n                \"ItemId\": 144,\n                \"FullPath\": null\n            },\n            \"Attributes\": null,\n            \"Descriptions\": null,\n            \"PricingRows\": null,\n            \"Measures\": null,\n            \"ItemImages\": null,\n            \"Availabilities\": null,\n            \"Condition\": null,\n            \"ConditionNotes\": null,\n            \"Variations\": null,\n            \"VariatesOn\": 0,\n            \"VariatesOnName\": \"\",\n            \"VariationFather\": null,\n            \"Combinations\": null,\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"Identifiers\": null,\n            \"FBAInfo\": null,\n            \"FiscalInformations\": null,\n            \"Exclusions\": null,\n            \"Links\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null,\n            \"VariationFatherId\": null,\n            \"CombinationFatherId\": null,\n            \"SupplierCustomerId\": null,\n            \"HSCode\": null,\n            \"InventoryReference\": null,\n            \"idCountryOfOrigin\": null,\n            \"IsDangerousGood\": false,\n            \"Distributors\": null,\n            \"Bundles\": null\n        }\n    ]\n}"},{"id":"701322e7-e49f-4c1d-bd31-f534cb97cdf1","name":"Get all (with filters)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"page\": 0,            //Recupera questa pagina di ordini. Il conto inizia da 0. Obbligatorio.\r\n  \"pageSize\": 20,        //Dimensione della pagina. Obbligatorio\r\n  \"filters\":\r\n  [\r\n      {\r\n          \"field\": \"ProductSKU\",\r\n          \"values\": [\"340-BRC08Viola\"]\r\n      }\r\n  ],\r\n  \"details\": \r\n  [ \r\n      { \r\n          \"field\": \"Prices\" \r\n      } \r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"161"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 30 Oct 2023 15:18:34 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"PageSize\": 20,\n    \"Page\": 0,\n    \"TotalCount\": 0,\n    \"Content\": []\n}"},{"id":"8a00be88-6787-4651-ab74-918af609d608","name":"Search","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Page\": 0,\n  \"PageSize\": 50,\n  \"filters\":\n  [\n    {\n      \"field\": \"ProductSKU\",\n      \"values\": [ \"0%\" ]\n    }\n  ],\n  \"details\": \n  [ \n  \t{ \"field\": \"Availability\" }, \n  \t{ \"field\": \"Prices\" } \n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"8761"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 12 Jul 2019 15:43:50 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"PageSize\": 50,\n    \"Page\": 0,\n    \"TotalCount\": 993,\n    \"Content\": [\n        {\n            \"IdItem\": 5839,\n            \"ItemGuid\": \"78d92edf-be80-4bf1-9bc9-bf04b23441fd\",\n            \"InternalName\": \"SCARPA ANTINFORTUNISTICA DA LAVORO ALTA IN PELLE GORE-TEX COFRA GALARR S3 WR SRC\",\n            \"SKU\": \"05.13030-000\",\n            \"Disabled\": false,\n            \"Manufacturer\": null,\n            \"CreatedOn\": \"2018-05-09T17:25:43.28Z\",\n            \"UpdatedOn\": null,\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 95,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 3,\n                    \"PriceListName\": \"eBay Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 95,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 5000,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": 1\n        },\n        {\n            \"IdItem\": 5850,\n            \"ItemGuid\": \"1cd4f1ab-65f0-4717-aa83-d57b4e03ec82\",\n            \"InternalName\": \"SLD 3075 F Trevi Orologio Digitale con Sveglia e Animazione Flip\",\n            \"SKU\": \"0307503\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-05-14T15:48:11.793Z\",\n            \"UpdatedOn\": \"2019-05-25T03:01:59.41Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 21.94,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 21.94,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 23.61,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 3,\n                    \"PriceListName\": \"eBay Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 23.61,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 0,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": 1\n        },\n        {\n            \"IdItem\": 5851,\n            \"ItemGuid\": \"978ff733-f182-4094-8dfe-8fc523b99a5b\",\n            \"InternalName\": \"SLD 3075 F Trevi Orologio Digitale con Sveglia e Animazione Flip\",\n            \"SKU\": \"0307504\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-05-14T15:52:14.46Z\",\n            \"UpdatedOn\": \"2019-05-25T03:01:59.427Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 21.94,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 21.94,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 23.61,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 3,\n                    \"PriceListName\": \"eBay Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 23.61,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 0,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": 1\n        },\n        {\n            \"IdItem\": 5852,\n            \"ItemGuid\": \"57944fe2-da9e-4fd6-a96b-451a450cc82c\",\n            \"InternalName\": \"Calcolatrice Elettronica Color TREVI EC 3775 rossa calculator cifre\",\n            \"SKU\": \"0377502\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-05-14T15:53:37.65Z\",\n            \"UpdatedOn\": \"2019-06-11T03:01:25.447Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 16.1,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 16.1,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 16.46,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 3,\n                    \"PriceListName\": \"eBay Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 16.46,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 1,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": 1\n        },\n        {\n            \"IdItem\": 5853,\n            \"ItemGuid\": \"4b329714-b71d-4fb2-8c6b-375f8b5c9fcd\",\n            \"InternalName\": \"ALIMENTATORE MULTIPRESA 2 PORTE USB TREVI TA 240 USB\",\n            \"SKU\": \"0TA24000\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-05-14T17:52:35.47Z\",\n            \"UpdatedOn\": \"2019-06-11T03:01:51.897Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 14.69,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 14.69,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 15.02,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 3,\n                    \"PriceListName\": \"eBay Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 15.02,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 1,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": 1\n        },\n        {\n            \"IdItem\": 5860,\n            \"ItemGuid\": \"d8bc2235-e5db-402a-8e53-1cbfed98cf0b\",\n            \"InternalName\": \"edc by Esprit Polo Uomo\",\n            \"SKU\": \"058CC2K020\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Esprit\",\n            \"CreatedOn\": \"2018-05-24T16:40:22.877Z\",\n            \"UpdatedOn\": \"2018-05-24T14:44:09.373Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 25.99,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 15,\n                    \"PriceListName\": \"Listino Amazon IT\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": true,\n                    \"RealPrice\": 25.99,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 18,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5880,\n            \"ItemGuid\": \"feeb6900-6fce-4b7c-a031-83ecb18f0fb5\",\n            \"InternalName\": \"Microfono Dinamico Unidirezionale TREVI EM 24\",\n            \"SKU\": \"0002400\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:25.15Z\",\n            \"UpdatedOn\": \"2019-05-25T03:01:02.91Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 13.3,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 13.3,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 15.82,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 15.82,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 0,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5881,\n            \"ItemGuid\": \"d2390422-0540-47dc-9117-b0d0ec715c46\",\n            \"InternalName\": \"Mini Speaker Bluetooth Vivavoce LED AUX-IN TREVI XP 72 BT Verde\",\n            \"SKU\": \"0007203\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:27.197Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:33.087Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 20.99,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 20.99,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 23.06,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 23.06,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 1,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5882,\n            \"ItemGuid\": \"9ea58649-2183-48b0-b46d-eb2801e525b7\",\n            \"InternalName\": \"Mini Speaker Bluetooth Vivavoce LED AUX-IN TREVI XP 72 BT Blu\",\n            \"SKU\": \"0007204\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:27.65Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:33.087Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 20.99,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 20.99,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 21.74,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 21.74,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 1,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5883,\n            \"ItemGuid\": \"f94f0e02-8046-4fb9-bf73-fdda7b0de091\",\n            \"InternalName\": \"Bastone Selfie Telescopico per Smartphone TREVI ST80 Nero\",\n            \"SKU\": \"0008000\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:27.947Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:33.067Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 9.97,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 9.97,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 10.87,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 10.87,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 0,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5884,\n            \"ItemGuid\": \"ec73289b-c004-4cfd-951e-2575159c741a\",\n            \"InternalName\": \"Bastone Selfie Telescopico per Smartphone TREVI ST80 Rosa\",\n            \"SKU\": \"0008002\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:28.15Z\",\n            \"UpdatedOn\": \"2019-05-25T03:01:05.333Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 9.97,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 9.97,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 10.76,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 10.76,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 0,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5885,\n            \"ItemGuid\": \"d7ae3f2f-b314-4dbf-8c1d-03b77ca6e400\",\n            \"InternalName\": \"Bastone Selfie Telescopico per Smartphone TREVI ST80 Blu\",\n            \"SKU\": \"0008004\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:28.307Z\",\n            \"UpdatedOn\": \"2019-05-25T03:01:05.347Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 9.97,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 9.97,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 10.98,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 10.98,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 0,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5886,\n            \"ItemGuid\": \"be8944cd-1055-41dd-b71c-4e7bccf2cc8f\",\n            \"InternalName\": \"Mini Supporto per Tablet e Smartphone Trevi ST 90\",\n            \"SKU\": \"0009001\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:28.543Z\",\n            \"UpdatedOn\": \"2019-05-25T03:01:05.333Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 9.31,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 9.31,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 10.15,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 10.15,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 0,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5887,\n            \"ItemGuid\": \"56560a70-c846-45d3-aa28-3b82c1f1fbc6\",\n            \"InternalName\": \"Supporto per Smartphone e Phablet Trevi ST 91\",\n            \"SKU\": \"0009100\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:28.747Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:33.087Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 9.31,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 9.31,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 10.76,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 10.76,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 0,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5888,\n            \"ItemGuid\": \"b6e86509-b445-4b82-854a-73fe8c59ea3c\",\n            \"InternalName\": \"Supporto Multifunzione per Tablet Trevi ST 93\",\n            \"SKU\": \"0009300\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:28.887Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:33.397Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 18.9,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 18.9,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 20.76,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 20.76,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 1,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5889,\n            \"ItemGuid\": \"6332753a-cb8c-434a-92d6-6a78ee009c07\",\n            \"InternalName\": \"Alimentatore USB per Auto TREVI TC 122 USB\",\n            \"SKU\": \"0012201\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:29.027Z\",\n            \"UpdatedOn\": \"2019-07-09T21:00:46.577Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 10.64,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 10.64,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 11.69,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 11.69,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 0,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5890,\n            \"ItemGuid\": \"73aee3cf-5fb5-4dea-aea2-6f0b7f490810\",\n            \"InternalName\": \"ALIMENTATORE MULTIPRESA USB 12/24V TREVI TC 124 USB\",\n            \"SKU\": \"0012400\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:29.197Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:33.037Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 13.3,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 13.3,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 14.61,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 14.61,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 1,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5891,\n            \"ItemGuid\": \"83b1d0fc-e7de-4f41-b897-5a7ffe40ab75\",\n            \"InternalName\": \"Alimentatore Universale 27W 2250mA TREVI TA 127 EU\",\n            \"SKU\": \"0012700\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:29.34Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:33.053Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 20.3,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 20.3,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 22.29,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 22.29,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 1,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5892,\n            \"ItemGuid\": \"01ce48d3-3ec4-418d-bb34-50b687902361\",\n            \"InternalName\": \"Alimentatore USB per rete fissa TREVI TA 128 E USB\",\n            \"SKU\": \"0012801\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:29.497Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:33.053Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 11.19,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 11.19,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 11.59,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 11.59,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 1,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5893,\n            \"ItemGuid\": \"9085f82b-9530-4cdd-bbf9-d00374bd9bc0\",\n            \"InternalName\": \"Alimentatore Universale Notebook 65W TREVI TA 165\",\n            \"SKU\": \"0016500\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:29.637Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:33.087Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 25.27,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 25.27,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 27.54,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 27.54,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 0,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5894,\n            \"ItemGuid\": \"0817da70-ec86-42e9-92cc-afc105e7249c\",\n            \"InternalName\": \"Alimentatore Universale per Auto TREVI TCX 181\",\n            \"SKU\": \"0018100\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:29.807Z\",\n            \"UpdatedOn\": \"2019-07-09T21:00:46.577Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 7.7,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 7.7,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 8.45,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 8.45,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 0,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5895,\n            \"ItemGuid\": \"f16f9abf-7454-4f53-b25b-39ab34c77daa\",\n            \"InternalName\": \"Staffa Universale per Supporto TV LCD Led Trevi ST 222\",\n            \"SKU\": \"0022200\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:29.947Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:33.053Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 18.9,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 18.9,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 20.76,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 20.76,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 1,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5896,\n            \"ItemGuid\": \"18c3ff88-ec44-416b-b453-b700e67db22e\",\n            \"InternalName\": \"Staffa Universale per Supporto TV LCD Led Trevi ST 230\",\n            \"SKU\": \"0023000\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:30.107Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:33.067Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 16.62,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 16.62,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 19.22,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 19.22,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 0,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5897,\n            \"ItemGuid\": \"c608c0ee-0c74-4cb0-b5c6-58724524799f\",\n            \"InternalName\": \"Staffa Universale per Supporto TV LCD Led Trevi ST 231\",\n            \"SKU\": \"0023100\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:30.247Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:33.067Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 18.62,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 18.62,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 20.3,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 20.3,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 0,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5898,\n            \"ItemGuid\": \"fa6c0616-1053-4550-9036-bf24fe0cf300\",\n            \"InternalName\": \"Staffa Universale con doppio braccio per Supporto TV LCD Led Trevi ST 234\",\n            \"SKU\": \"0023400\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:30.4Z\",\n            \"UpdatedOn\": \"2019-05-25T03:01:08.583Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 27.93,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 27.93,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 30.75,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 30.75,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 0,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5899,\n            \"ItemGuid\": \"76b44d6e-bd3c-4e65-b064-12c11a1d5c16\",\n            \"InternalName\": \"Mini Decoder WiFi DVB-T per Tablet e Smartphone Apple e Android TREVI DT 327 TV\",\n            \"SKU\": \"0032700\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:30.683Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:33.067Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 46.54,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 46.54,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 73.93,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 73.93,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 0,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5900,\n            \"ItemGuid\": \"1c119890-9959-4fa5-abde-2bf94df9b903\",\n            \"InternalName\": \"Registratore a Cassetta TREVI CR 410\",\n            \"SKU\": \"0041000\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:30.823Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:37.617Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 32.9,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 32.9,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 33.35,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 33.35,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 1,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5901,\n            \"ItemGuid\": \"c216711d-007c-43f4-8365-bf9d8c8b6a07\",\n            \"InternalName\": \"Mini Registratore Digitale Vocale TREVI DR 435 SA\",\n            \"SKU\": \"0043500\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:30.997Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:37.617Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 40.6,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 40.6,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 37.72,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 37.72,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 1,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5902,\n            \"ItemGuid\": \"ee0d72ab-bb77-46c0-99e1-78ee6d471986\",\n            \"InternalName\": \"Mini Registratore Digitale Vocale 4GB con Memoria Espandibile TREVI DR 437 SA\",\n            \"SKU\": \"0043700\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:31.167Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:37.617Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 44.79,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 44.79,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 45.51,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 45.51,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 1,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5903,\n            \"ItemGuid\": \"26d06e6f-918c-4d4e-bfad-611b6d616a6d\",\n            \"InternalName\": \"Lettore CD Portatile MP3 TREVI CMP 498 Nero\",\n            \"SKU\": \"0049800\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:31.4Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:37.63Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 42,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 42,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 44.5,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 44.5,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 1,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5904,\n            \"ItemGuid\": \"d467eeaf-9910-4020-a0ff-5ce460172cff\",\n            \"InternalName\": \"Lettore CD Portatile MP3 TREVI CMP 498 Bianco\",\n            \"SKU\": \"0049801\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:31.573Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:37.63Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 42,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 42,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 44.5,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 44.5,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 0,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5905,\n            \"ItemGuid\": \"5ce6fa9b-e8ad-4fdb-bf42-fa1991e86d51\",\n            \"InternalName\": \"Lettore CD Portatile MP3 TREVI CMP 498 Rosso\",\n            \"SKU\": \"0049802\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:31.713Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:37.63Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 42,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 42,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 44.5,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 44.5,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 0,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5906,\n            \"ItemGuid\": \"6504336d-b79b-42f2-b501-d4123fd705b4\",\n            \"InternalName\": \"Stereo Portatile CD Boombox TREVI CD 512 Nero\",\n            \"SKU\": \"0051200\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:31.933Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:37.63Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 37.79,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 37.79,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 39.59,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 39.59,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 1,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5907,\n            \"ItemGuid\": \"68f111ab-d497-4403-8f7e-8c5af8da88b7\",\n            \"InternalName\": \"Stereo Portatile CD Boombox TREVI CD 512 Arancio\",\n            \"SKU\": \"0051209\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:32.12Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:37.63Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 38.5,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 38.5,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 38.73,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 38.73,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 1,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5908,\n            \"ItemGuid\": \"8f7b50c1-6fcc-4c3d-b61b-2b6b919a550e\",\n            \"InternalName\": \"Altoparlanti Amplificati 2 Vie 80W TREVI AV 540 Legno\",\n            \"SKU\": \"0054030\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:32.34Z\",\n            \"UpdatedOn\": \"2019-07-09T21:00:46.577Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 68.55,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 68.55,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 68.83,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 68.83,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 0,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5909,\n            \"ItemGuid\": \"0ac6b91b-b29b-4057-98d1-8d76d05a2849\",\n            \"InternalName\": \"Stereo Portatile Boombox CD MP3 TREVI CMP 542 USB Bianco\",\n            \"SKU\": \"0054201\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:32.48Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:37.63Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 51.8,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 51.8,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 53.19,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 53.19,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 1,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5910,\n            \"ItemGuid\": \"3fb0bd66-561b-4af1-a2e5-c2afe794fc9f\",\n            \"InternalName\": \"Stereo Portatile Boombox CD MP3 TREVI CMP 542 USB Rosso\",\n            \"SKU\": \"0054202\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:32.65Z\",\n            \"UpdatedOn\": \"2019-07-07T21:00:32.257Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 52.48,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 52.48,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 51.18,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 51.18,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 1,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5911,\n            \"ItemGuid\": \"bfb032c4-72dc-42ef-910e-68b248bf392b\",\n            \"InternalName\": \"Stereo Portatile Boombox CD MP3 TREVI CMP 542 USB Blu\",\n            \"SKU\": \"0054204\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:32.9Z\",\n            \"UpdatedOn\": \"2019-06-29T03:00:29.09Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 53.19,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 53.19,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 51.35,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 51.35,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 0,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5912,\n            \"ItemGuid\": \"194913bd-a438-4393-a3b4-17adb74dd828\",\n            \"InternalName\": \"Stereo Portatile Boombox CD MP3 TREVI CMP 542 USB Grigio\",\n            \"SKU\": \"0054210\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:33.057Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:37.647Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 51.09,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 51.09,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 52.66,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 52.66,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 1,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5913,\n            \"ItemGuid\": \"8338062f-8040-4863-b768-f38608d00001\",\n            \"InternalName\": \"Radio Registratore CD Cassetta TREVI CMP 574 USB Rosso\",\n            \"SKU\": \"0057402\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:33.23Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:37.647Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 65.78,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 65.78,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 67.58,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 67.58,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 0,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5914,\n            \"ItemGuid\": \"71439edb-69a6-4cd8-a3e3-d32e3afd5936\",\n            \"InternalName\": \"Radio Registratore CD Cassetta TREVI CMP 574 USB Blu\",\n            \"SKU\": \"0057404\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:33.37Z\",\n            \"UpdatedOn\": \"2019-06-12T03:00:20.207Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 65.78,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 65.78,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 67.58,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 67.58,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 0,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5915,\n            \"ItemGuid\": \"eb45953d-4ed4-450a-aefc-3d6c428d1e08\",\n            \"InternalName\": \"Cuffie Auricolari Stereo TREVI HD 635\",\n            \"SKU\": \"0063500\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:33.607Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:37.647Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 7.84,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 7.84,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 1,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5916,\n            \"ItemGuid\": \"968a410f-8062-43e1-ac25-96a8d7d24902\",\n            \"InternalName\": \"Cuffie Stereo TV TREVI HTV 636\",\n            \"SKU\": \"0063600\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:33.747Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:37.647Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 15.4,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 15.4,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 15.94,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 15.94,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 1,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5917,\n            \"ItemGuid\": \"bda69598-f2b2-4dd3-b61a-39d21e929b7e\",\n            \"InternalName\": \"Cuffie Stereo TV Cavo 5 Metri TREVI HTV 639 Bianco\",\n            \"SKU\": \"0063901\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:33.933Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:40.117Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 17.51,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 17.51,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 18.15,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 18.15,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 1,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5918,\n            \"ItemGuid\": \"2ba18ad9-9bb3-48d5-af3c-36807cb1df31\",\n            \"InternalName\": \"Cuffie Stereo TV Cavo 5 Metri TREVI HTV 639 Verde\",\n            \"SKU\": \"0063903\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:34.12Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:40.117Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 17.51,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 17.51,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 18.15,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 18.15,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 1,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5919,\n            \"ItemGuid\": \"d2729ed6-feb4-4818-902f-0c406ea73933\",\n            \"InternalName\": \"Cuffie Stereo TV Cavo 5 Metri TREVI HTV 639 Rosa\",\n            \"SKU\": \"0063908\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:34.307Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:40.133Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 17.51,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 17.51,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 16.95,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 16.95,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 1,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5920,\n            \"ItemGuid\": \"3f438873-7ec8-41ba-97f8-a67f85a89984\",\n            \"InternalName\": \"Cuffie Stereo con Microfono TREVI SK 644 S Bianco\",\n            \"SKU\": \"0064401\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:34.447Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:40.15Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 13.3,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 13.3,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 13.83,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 13.83,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 0,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5921,\n            \"ItemGuid\": \"52c18b53-f063-4d89-b635-7595e568cccf\",\n            \"InternalName\": \"Cuffie Stereo con Microfono TREVI SK 644 S Giallo\",\n            \"SKU\": \"0064405\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:34.65Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:40.133Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 14.01,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 14.01,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 13.83,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 13.83,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 1,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5922,\n            \"ItemGuid\": \"25baa3d3-f0e2-44a6-a3e9-4bc7de90ae66\",\n            \"InternalName\": \"Cuffie Stereo con Microfono TREVI SK 644 S Viola\",\n            \"SKU\": \"0064412\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:34.807Z\",\n            \"UpdatedOn\": \"2019-06-11T03:00:40.133Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 14.01,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 14.01,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 13.69,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 13.69,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 1,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        },\n        {\n            \"IdItem\": 5923,\n            \"ItemGuid\": \"f01ffcfd-e07a-4835-8c2e-096ec9e08962\",\n            \"InternalName\": \"Cuffie Auricolari TREVI JS 657 Nero\",\n            \"SKU\": \"0065700\",\n            \"Disabled\": false,\n            \"Manufacturer\": \"Trevi\",\n            \"CreatedOn\": \"2018-06-19T13:55:35.073Z\",\n            \"UpdatedOn\": \"2019-05-25T03:01:25.727Z\",\n            \"Folder\": null,\n            \"Attributes\": [],\n            \"Descriptions\": [],\n            \"PricingRows\": [\n                {\n                    \"Price\": 9.18,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 9.18,\n                    \"IsDiscountedPrice\": false\n                },\n                {\n                    \"Price\": 9.44,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 16,\n                    \"PriceListName\": \"Amazon Italy\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": false,\n                    \"PriceListIsSync\": false,\n                    \"RealPrice\": 9.44,\n                    \"IsDiscountedPrice\": false\n                }\n            ],\n            \"Measures\": [],\n            \"ItemImages\": [],\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 0,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\"\n                }\n            ],\n            \"Condition\": null,\n            \"ConditionNotes\": [],\n            \"Variations\": [],\n            \"VariatesOn\": 0,\n            \"VariationFather\": null,\n            \"Combinations\": [],\n            \"CombinatesOn\": 0,\n            \"CombinationFather\": null,\n            \"eBayAuctions\": [],\n            \"PixPlaceFUPIDs\": [],\n            \"AmazonLinks\": [],\n            \"Identifiers\": null,\n            \"EAN13\": null,\n            \"FulfilmentDays\": null\n        }\n    ]\n}"}],"_postman_id":"beb87529-c216-89af-3897-c0c3355b0422"},{"name":"Create","id":"ee0b4e3b-00d7-3be8-2deb-0d75d2e81363","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"SKU\":\"SKU_DI_TEST_2\", // Lo SKU è il codice che identifica univocamente un prodotto su eDock. Non possono esistere due prodotti con SKU uguale\n    \"InternalName\":\"TEST\" // Questo è il nome ad uso interno, ovvero un nome che non verrà mai visualizzato su alcun Marketplace\n}"},"url":"{{endpoint}}/products/create","description":"<p>Creates a product on MarketRock's inventory.</p>\n<p>Request</p>\n<p>The only the mandatory properties are shown, namely:</p>\n<ul>\n<li><p><strong>SKU</strong>: product code, unique in the whole MarketRock's inventory</p>\n</li>\n<li><p><strong>InternalName</strong>: name for internal use</p>\n</li>\n</ul>\n<p>Please see the examples to understand the different entities linked to the product. In particular:</p>\n<ul>\n<li><p>Category</p>\n</li>\n<li><p>Descriptions</p>\n</li>\n<li><p>Prices</p>\n</li>\n<li><p>Measures (Weight &amp; Sizes)</p>\n</li>\n<li><p>Images</p>\n</li>\n<li><p>Stock availabilities</p>\n</li>\n<li><p>Conditions</p>\n</li>\n<li><p>Identifiers</p>\n</li>\n<li><p>Attributes</p>\n</li>\n<li><p>Compatibilities</p>\n</li>\n<li><p>Variations</p>\n</li>\n<li><p>Bundles / components</p>\n</li>\n<li><p>Exclusions</p>\n</li>\n<li><p>Fiscal classes / Tax information</p>\n</li>\n<li><p>FBA logistics information</p>\n</li>\n<li><p>Distributors / Purchase prices</p>\n</li>\n<li><p>Attachments</p>\n</li>\n<li><p>Safety Informations</p>\n</li>\n</ul>\n<h2 id=\"attachments\">Attachments</h2>\n<p>An array of documents related to this particular product. Each attachment is described by the following properties:</p>\n<ul>\n<li><p><strong>AttachmentType:</strong> one between this values:</p>\n<ul>\n<li><p>EmergencyUseAuthorization</p>\n</li>\n<li><p>CertificateOfAnalysis</p>\n</li>\n<li><p>CertificateOfCompliance</p>\n</li>\n<li><p>Warranty</p>\n</li>\n<li><p>ApplicationGuide</p>\n</li>\n<li><p>CompatibilityGuide</p>\n</li>\n<li><p>TroubleshootingGuide</p>\n</li>\n<li><p>UserGuide</p>\n</li>\n<li><p>SafetyInformation</p>\n</li>\n<li><p>InstructionsForUse</p>\n</li>\n<li><p>UserManual</p>\n</li>\n<li><p>InstallationManual</p>\n</li>\n<li><p>EmergencyUseAuthorizationAmendment</p>\n</li>\n<li><p>SpecificationSheet</p>\n</li>\n<li><p>SafetyDataSheet</p>\n</li>\n<li><p>ProviderFactSheet</p>\n</li>\n<li><p>PatientFactSheet</p>\n</li>\n<li><p>CertificateOfAuthenticity</p>\n</li>\n</ul>\n</li>\n<li><p><strong>FileName</strong>: attachment URL or uploaded file name</p>\n</li>\n<li><p><strong>Cultures</strong>: an array of culture, each specified by a Name property with the culture identifiers (see Enumerators &gt; Cultures)</p>\n</li>\n</ul>\n<h2 id=\"safety\">Safety</h2>\n<p>This container allows you to specify all safety-related informations on a product.<br />It defines the following properties:</p>\n<ul>\n<li><p><strong>Regulations</strong></p>\n</li>\n<li><p><strong>StandardWarnings</strong></p>\n</li>\n<li><p><strong>CustomWarnings</strong></p>\n</li>\n<li><p><strong>Images</strong></p>\n</li>\n<li><p><strong>Batteries</strong></p>\n</li>\n</ul>\n<p>You can specify only those you really need, as all of them are optional.</p>\n<h4 id=\"regulations\">Regulations</h4>\n<p>It contains all regulations and safety markings applied to this product. Available properties are:</p>\n<ul>\n<li><p><strong>RegulationsApplied</strong>: an array where you can specify applied regulations. Valid values: <em>Storage</em>, <em>Waste</em>, <em>Transportation</em>, <em>GHS</em>, <em>Other</em></p>\n</li>\n<li><p><strong>GHS</strong>: if you specified <em>GHS</em> inside the RegulationsApplied array, you can set GHS informations through this container. Please note that the Safety Data Sheet (SDS) must be uploaded as an Attachment. Contained properties:</p>\n<ul>\n<li><strong>Pictograms</strong>: an array of applied GHS pictograms. Valid values: <em>CompressedGas</em>, <em>Corrosive</em>, <em>EnvironmentallyDamaging</em>, <em>Explosive</em>, <em>Flammable</em>, <em>HealthHazard</em>, <em>Irritant</em>, <em>Oxidizing</em>, <em>Toxic</em>.</li>\n</ul>\n</li>\n<li><p><strong>UNNumber</strong>: if you specified Transportation inside the RegulationsApplied array, you can set the UN number associated to this product</p>\n</li>\n<li><p><strong>Markings</strong>: an array of applied markings. Valid values: <em>CE</em>, <em>FCC</em>, <em>UKCA</em>, <em>EAC.</em> You can retrieve live valid markings using <a href=\"https://www.postman.com/marketrock/workspace/marketrock/request/235984-872eff9b-5c46-42f2-a940-8a136118614c?action=share&amp;source=copy-link&amp;creator=235984&amp;ctx=documentation\">this call</a>.</p>\n</li>\n</ul>\n<h4 id=\"standardwarnings\">StandardWarnings</h4>\n<p>An array of standardized safety warning messages. You can retrieve Standard Safety Warning message using <a href=\"https://www.postman.com/marketrock/workspace/marketrock/request/235984-141f4b4c-17b5-4956-a508-629bb4302175?action=share&amp;source=copy-link&amp;creator=235984&amp;ctx=documentation\">this call</a>. You can specify a Standard Warning Message by its <strong>idStandardMessage</strong> value inside the same property.</p>\n<h4 id=\"customwarnings\">CustomWarnings</h4>\n<p>An array of custom safety warning messages. Each message is composed by these properties:</p>\n<ul>\n<li><p><strong>CultureName</strong>: the culture in which the message is written</p>\n</li>\n<li><p><strong>SafetyWarning</strong>: the warning mesage</p>\n</li>\n</ul>\n<p><em>Note: you must have just one custom warning per culture.</em></p>\n<h4 id=\"images\">Images</h4>\n<p>An array of safety-related images. Each image has the following properties:</p>\n<ul>\n<li><strong>Path</strong>: the URL or the uploaded image file path</li>\n</ul>\n<h4 id=\"batteries\">Batteries</h4>\n<p>A container for all battery-related informations. Properties are:</p>\n<ul>\n<li><p><strong>BatteriesRequired</strong>: true / false. Following properties are to be set only if BatteriesRequired is set to true.</p>\n</li>\n<li><p><strong>BatteriesInclusionMode</strong>: states if how batteries are included. Valid values: <em>batteries_only</em> (i.e. this product is a battery), <em>batteries_contained_in_equipment</em> (batteries are inside the product), <em>batteries_packed_with_equipment</em> (batteries are contained in the package), <em>batteries_not_included</em> (batteries are not included). Following properties are to be set only if BatteriesInclusionMode is different from \"batteries_not_included\"</p>\n</li>\n<li><p><strong>BatteriesComposition</strong>: composition (e.g. lithium)</p>\n</li>\n<li><p><strong>BatteriesType</strong>: tipology (e.g. 12V)</p>\n</li>\n<li><p><strong>BatteriesCount</strong>: number of batteries</p>\n</li>\n<li><p><strong>BatteriesWeight</strong>: weight in grams</p>\n</li>\n<li><p><strong>BatteriesNumberOfCells</strong>: if BatteriesComposition is \"lithium\", numer of lithium cells</p>\n</li>\n<li><p><strong>BatteriesEnergyContent</strong>: if BatteriesComposition is \"lithium\", total Wh of batteries</p>\n</li>\n<li><p><strong>BatteriesLitiumBatteryWeight</strong>: if BatteriesComposition is \"lithium\", total lithium weight in grams</p>\n</li>\n</ul>\n<h1 id=\"response\">Response</h1>\n<ul>\n<li><p><strong>SKU</strong>: Product code, as passed in the request</p>\n</li>\n<li><p><strong>InternalName</strong>: Name for internal use, as passed in the request</p>\n</li>\n<li><p><strong>idProduct</strong>: Product id internal to MarketRock, to be used for subsequent requests</p>\n</li>\n<li><p><strong>ProductGuid</strong>: Internal MarketRock identifier</p>\n</li>\n<li><p><strong>CreatedOn</strong>: Creation date</p>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["products","create"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"493cc217-d9f8-4c51-96d3-3cbddbe80ba5","name":"Create - minimum set of informations","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"SKU\":\"SKU\",   //Codice prodotto\n    \"InternalName\":\"TEST\"       //Nome ad uso interno\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 16 Feb 2024 11:23:33 GMT"},{"key":"Content-Length","value":"174"}],"cookie":[],"responseTime":null,"body":"{\n    \"Content\": {\n        \"SKU\": \"SKU\",\n        \"InternalName\": \"TEST\",\n        \"idProduct\": 26194,\n        \"ProductGuid\": \"0ef9942b-32cf-45d9-a42a-ccd65e36504f\",\n        \"CreatedOn\": \"2024-02-16T11:23:32.1647954Z\"\n    }\n}"},{"id":"ca5d7ff8-f24c-4646-a011-13e35507f7ac","name":"Create - basic informations","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"SKU\":\"SKU\",\n    \"InternalName\":\"TEST\",\n    \"Manufacturer\": \"brand\",            //Brand - Marca\n    \"FulfilmentDays\": 5,                //Tempo di preparazione per l'evasione\n    \"HSCode\": \"0001\",                   //Codice armonizzato doganale\n    \"InventoryReference\": \"ref001\",     //Riferimento interno magazzino\n    \"idCountryOfOrigin\": 108,           //Nazione di produzione (made in)\n    \"IsDangerousGood\": false            //Identificatore merce pericolosa\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 16 Feb 2024 11:27:25 GMT"},{"key":"Content-Length","value":"176"}],"cookie":[],"responseTime":null,"body":"{\n    \"Content\": {\n        \"SKU\": \"SKU\",\n        \"InternalName\": \"TEST\",\n        \"idProduct\": 26196,\n        \"ProductGuid\": \"c00f32b0-b494-4bac-a0e5-48846cd2ed72\",\n        \"CreatedOn\": \"2024-02-16T11:27:22.4675078Z\"\n    }\n}"},{"id":"4a6899db-a185-4387-b4f0-5178c655eead","name":"Create - category","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"SKU\":\"SKU\",\n    \"InternalName\":\"TEST\",\n    \"Folder\": \n    {\n        \"idFolder\": 5   //Id della categoria in cui inserire il prodotto\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 16 Feb 2024 11:30:42 GMT"},{"key":"Content-Length","value":"176"}],"cookie":[],"responseTime":null,"body":"{\n    \"Content\": {\n        \"SKU\": \"SKU\",\n        \"InternalName\": \"TEST\",\n        \"idProduct\": 26197,\n        \"ProductGuid\": \"a63da60d-1ea7-4a08-aff1-7f59e4592a23\",\n        \"CreatedOn\": \"2024-02-16T11:30:41.6070295Z\"\n    }\n}"},{"id":"eee9ee3b-468b-4a3e-bdce-02451687a765","name":"Create - descriptions","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"SKU\":\"SKU\",\n    \"InternalName\":\"TEST\",\n    \"Descriptions\":             //Contenitore delle descrizioni\n    [\n        {\n            \"CultureName\": \"it\",                //Cultura\n            \"DescriptionTypeId\": 1,             //Tipo di descrizione\n            \"Description\": \"nome in italiano\"   //Valore testuale\n        },\n        {\n            \"CultureName\": \"it\",\n            \"DescriptionTypeId\": 3,\n            \"Description\": \"descrizione lunga in italiano\"\n        },\n        {\n            \"CultureName\": \"it\",\n            \"DescriptionTypeId\": 1,\n            \"Description\": \"nome in italiano per Amazon\",\n            \"Modules\": [4]              //ID del modulo a cui è associata questa descrizione\n        },\n        {\n            \"CultureName\": \"it\",\n            \"DescriptionTypeId\": 3,\n            \"Description\": \"descrizione lunga in italiano per Amazon\",\n            \"Modules\": [4]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 16 Feb 2024 11:35:00 GMT"},{"key":"Content-Length","value":"176"}],"cookie":[],"responseTime":null,"body":"{\n    \"Content\": {\n        \"SKU\": \"SKU\",\n        \"InternalName\": \"TEST\",\n        \"idProduct\": 26198,\n        \"ProductGuid\": \"ba039d71-69e5-4c5f-a5fd-cf3baa8c4e82\",\n        \"CreatedOn\": \"2024-02-16T11:34:58.1701405Z\"\n    }\n}"},{"id":"b08559da-0ad5-4be0-a014-5846b5aba059","name":"Create - prices","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"SKU\":\"SKU\",\n    \"InternalName\":\"TEST\",\n    \"PricingRows\":                                  //Contenitore dei prezzi\n    [\n        {\n            \"Price\": 49.99,                         //Prezzo\n            \"PriceListIdPricing\": 1                 //ID del listino prezzi\n        },\n        {\n            \"Price\": 49.99,\n            \"Discount\": 10,                         //Sconto\n            \"DiscountTypeIdDiscountType\": 2,        //Tipo sconto (1 = fisso, 2 = percentuale)\n            \"PriceListIdPricing\": 2\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 16 Feb 2024 11:40:35 GMT"},{"key":"Content-Length","value":"176"}],"cookie":[],"responseTime":null,"body":"{\n    \"Content\": {\n        \"SKU\": \"SKU\",\n        \"InternalName\": \"TEST\",\n        \"idProduct\": 26200,\n        \"ProductGuid\": \"9bd478e1-d3c6-4dd0-ac38-ec28b87c911d\",\n        \"CreatedOn\": \"2024-02-16T11:40:34.6751243Z\"\n    }\n}"},{"id":"23b42dcb-1698-458e-9203-e708d160371a","name":"Create - measures","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"SKU\":\"SKU\",\n    \"InternalName\":\"TEST\",\n    \"Measures\":                                     //Contenitore delle misure\n    [\n        {\n            \"UnitOfMeasureIdUnitOfMeasure\": 32,     //ID unità di misura\n            \"Name\": \"NormalMeasureWidth\",           //Tipo di misura\n            \"Value\": 10                             //Valore della misura\n        },\n        {\n            \"UnitOfMeasureIdUnitOfMeasure\": 32,\n            \"Name\": \"NormalMeasureHeight\",\n            \"Value\": 20\n        },\n        {\n            \"UnitOfMeasureIdUnitOfMeasure\": 32,\n            \"Name\": \"NormalMeasureLenght\",\n            \"Value\": 30\n        },\n        {\n            \"UnitOfMeasureIdUnitOfMeasure\": 32,\n            \"Name\": \"NormalMeasureWeight\",\n            \"Value\": 2\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 16 Feb 2024 11:45:46 GMT"},{"key":"Content-Length","value":"176"}],"cookie":[],"responseTime":null,"body":"{\n    \"Content\": {\n        \"SKU\": \"SKU\",\n        \"InternalName\": \"TEST\",\n        \"idProduct\": 26201,\n        \"ProductGuid\": \"ea16daed-bab6-4e3f-9550-80e232d1533a\",\n        \"CreatedOn\": \"2024-02-16T11:45:45.0087674Z\"\n    }\n}"},{"id":"4ed454bd-fcd6-45a3-b68e-01744d4eecb6","name":"Create - images","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"SKU\":\"SKU\",\n    \"InternalName\":\"TEST\",\n    \"ItemImages\":                                     //Contenitore delle immagini\n    [\n        {\n            \"ImagesPath\": \"https://fakeimg.pl/500x500\",     //URL immagine\n            \"OrderIndex\": \"0\"                               //Ordine\n        },\n        {\n            \"ImagesPath\": \"https://fakeimg.pl/600x600\",\n            \"OrderIndex\": \"1\"\n        },\n        {\n            \"ImagesPath\": \"https://fakeimg.pl/600x600\",\n            \"OrderIndex\": \"0\",\n            \"idModule\": 4                                   //ID del modulo a cui è associata l'immagine\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 16 Feb 2024 11:54:08 GMT"},{"key":"Content-Length","value":"176"}],"cookie":[],"responseTime":null,"body":"{\n    \"Content\": {\n        \"SKU\": \"SKU\",\n        \"InternalName\": \"TEST\",\n        \"idProduct\": 26206,\n        \"ProductGuid\": \"51216182-f647-415a-b7c1-4888dd13f9b6\",\n        \"CreatedOn\": \"2024-02-16T11:54:07.7537214Z\"\n    }\n}"},{"id":"57a24cb6-13bb-4253-affd-562489df51cf","name":"Create - stock availabilities","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"SKU\":\"SKU_DI_TEST_2024_l\",\n    \"InternalName\":\"TEST\",\n    \"Availabilities\":                                     //Contenitore delle disponibilità\n    [\n        {\n            \"StorageIdStorage\": 3,                          //ID del magazzino\n            \"Quantity\": 5                                   //Quantità\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 16 Feb 2024 11:56:00 GMT"},{"key":"Content-Length","value":"176"}],"cookie":[],"responseTime":null,"body":"{\n    \"Content\": {\n        \"SKU\": \"SKU\",\n        \"InternalName\": \"TEST\",\n        \"idProduct\": 26207,\n        \"ProductGuid\": \"473e0d21-48e3-424a-a817-2ce9bef0db47\",\n        \"CreatedOn\": \"2024-02-16T11:55:57.7404244Z\"\n    }\n}"},{"id":"4642bb24-e925-449b-aad6-d2258eae421e","name":"Create - conditions","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"SKU\":\"SKU\",\n    \"InternalName\":\"TEST\",\n    \"Condition\": \n    {\n        \"idItemCondition\": 4                //ID della condizione dell'oggetto\n    },\n    \"ConditionNotes\":                       //Contenitore note sulla condizione\n    [\n        {\n            \"CultureName\": \"it\",\n            \"Description\": \"Con qualche graffio\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 16 Feb 2024 11:59:00 GMT"},{"key":"Content-Length","value":"176"}],"cookie":[],"responseTime":null,"body":"{\n    \"Content\": {\n        \"SKU\": \"SKU\",\n        \"InternalName\": \"TEST\",\n        \"idProduct\": 26208,\n        \"ProductGuid\": \"2e7a2276-2ad4-458d-9cda-288f3e6f35e3\",\n        \"CreatedOn\": \"2024-02-16T11:58:59.5098257Z\"\n    }\n}"},{"id":"de18b18f-bd46-482e-9b89-ce1a21bcff8f","name":"Create - identifiers","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"SKU\":\"SKU\",\n    \"InternalName\":\"TEST\",\n    \"Identifiers\":                      //Contenitore identificatori\n    [\n        {\n            \"idIdentifierType\": 1,      //ID del tipo di identificatore\n            \"Value\": \"80000000000\"      //Valore\n        },\n        {\n            \"idIdentifierType\": 1,\n            \"Value\": \"80000000000\",\n            \"idModule\": 4,              //ID del mercato a cui è associato questo identificatore\n            \"SubmoduleName\": \"Italy\"    //Nome del mercato nazionale a cui è associato questo identificatore\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 16 Feb 2024 12:03:02 GMT"},{"key":"Content-Length","value":"175"}],"cookie":[],"responseTime":null,"body":"{\n    \"Content\": {\n        \"SKU\": \"SKU\",\n        \"InternalName\": \"TEST\",\n        \"idProduct\": 26210,\n        \"ProductGuid\": \"6e7af59a-60b7-4569-b7fd-fe76d9d48aef\",\n        \"CreatedOn\": \"2024-02-16T12:03:01.162108Z\"\n    }\n}"},{"id":"9b2b7818-cf8f-46fa-ac09-3e3ac16386be","name":"Create - attributes","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"SKU\":\"SKU\",\n    \"InternalName\":\"TEST\",\n    \"Attributes\":               //Contenitore degli attributi\n    [\n        {\n            \"AttributesIdItemAttribute\": 53,\n            \"Value\": \"Valore\"\n        }, \n        {\n            \"AttributesIdItemAttribute\": 54,\n            \"Value\": \"Attributo 2\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 16 Feb 2024 14:07:01 GMT"},{"key":"Content-Length","value":"176"}],"cookie":[],"responseTime":null,"body":"{\n    \"Content\": {\n        \"SKU\": \"SKU\",\n        \"InternalName\": \"TEST\",\n        \"idProduct\": 26211,\n        \"ProductGuid\": \"26c6ed3f-9b45-424b-a68b-8278fb6e0fd7\",\n        \"CreatedOn\": \"2024-02-16T14:06:55.7690664Z\"\n    }\n}"},{"id":"d6ba895a-6bbc-4a87-a969-7bc6c5f3e4fd","name":"Create - compatibilities","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"SKU\": \"SKU\",\n    \"InternalName\": \"TEST\",\n    \"Combinations\": [\n        {\n            \"CombinationValues\": {\n                \"100\": \"12345\"\n            }\n        },\n        {\n            \"CombinationValues\": {\n                \"100\": \"34567\"\n            }\n        },\n        {\n            \"CombinationValues\": {\n                \"100\": \"67890\"\n            }\n        }\n    ],\n    \"CombinatesOn\": 39\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 16 Feb 2024 14:09:41 GMT"},{"key":"Content-Length","value":"176"}],"cookie":[],"responseTime":null,"body":"{\n    \"Content\": {\n        \"SKU\": \"SKU\",\n        \"InternalName\": \"TEST\",\n        \"idProduct\": 26212,\n        \"ProductGuid\": \"a51a972d-130a-4713-a634-4141a6f7f19d\",\n        \"CreatedOn\": \"2024-02-16T14:09:40.1091676Z\"\n    }\n}"},{"id":"1be1a0a9-5f13-4d39-b3dc-7a2374989c6f","name":"Create - variations","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"SKU\": \"SKU\",\n    \"InternalName\": \"TEST\",\n    \"PricingRows\": [\n        {\n            \"PriceListIdPricing\": 1,\n            \"Price\": 25\n        }\n    ],\n    \"Variations\": [                 //Contenitore delle varianti\n        {\n            \"Availabilities\": [     //Disponibilità della variante\n                { \"StorageIdStorage\": 3, \"Quantity\": 5  }\n            ],\n            \"VariationSKU\": \"SKU_S_Rosso\",\n            \"Attributes\": [\n                { \"AttributesIdItemAttribute\": 93, \"Value\": \"S\" },\n                { \"AttributesIdItemAttribute\": 94, \"Value\": \"Rosso\" }\n            ],\n            \"VariationPricingRows\": [   //Prezzi della variante\n                {\n                    \"PriceListIdPricing\": 1,\n                    \"Price\": 30\n                }\n            ],\n            \"Identifiers\":              //Identificatori della variante\n            [\n                {\n                    \"idIdentifierType\": 1,\n                    \"Value\": \"0123456789011\"\n                }\n            ]\n        },\n        {\n            \"Availabilities\": [\n                { \"StorageIdStorage\": 3, \"Quantity\": 2  }\n            ],\n            \"VariationSKU\": \"SKU_M_Rosso\",\n            \"Values\": [\n                { \"idAttribute\": 93, \"Value\": \"M\" },\n                { \"idAttribute\": 94, \"Value\": \"Rosso\" }\n            ],\n            \"Identifiers\":\n            [\n                {\n                    \"idIdentifierType\": 1,\n                    \"Value\": \"0123456789012\"\n                }\n            ]\n        },\n        {\n            \"Availabilities\": [\n                { \"StorageIdStorage\": 3, \"Quantity\": 1  }\n            ],\n            \"VariationSKU\": \"SKU_L_Rosso\",\n            \"Values\": [\n                { \"idAttribute\": 93, \"Value\": \"L\" },\n                { \"idAttribute\": 94, \"Value\": \"Rosso\" }\n            ],\n            \"Identifiers\":\n            [\n                {\n                    \"idIdentifierType\": 1,\n                    \"Value\": \"0123456789333\"\n                }\n            ]\n        }\n    ],\n    \"VariatesOn\": 34\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 16 Feb 2024 14:19:13 GMT"},{"key":"Content-Length","value":"176"}],"cookie":[],"responseTime":null,"body":"{\n    \"Content\": {\n        \"SKU\": \"SKU\",\n        \"InternalName\": \"TEST\",\n        \"idProduct\": 26213,\n        \"ProductGuid\": \"6257f6bd-66e7-458f-9d04-c8b0f0e202c8\",\n        \"CreatedOn\": \"2024-02-16T14:19:09.5091317Z\"\n    }\n}"},{"id":"a145d84f-d95a-4fdc-a97e-6eb8ab0aed1b","name":"Create - FBA logistics","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"SKU\": \"SKU\",\n    \"InternalName\": \"TEST\",\n    \"FBAInfo\": {\n        \"IsFBA\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 16 Feb 2024 14:45:56 GMT"},{"key":"Content-Length","value":"175"}],"cookie":[],"responseTime":null,"body":"{\n    \"Content\": {\n        \"SKU\": \"SKU\",\n        \"InternalName\": \"TEST\",\n        \"idProduct\": 26221,\n        \"ProductGuid\": \"64d17ae4-0459-412e-b38d-786c3ce8e62c\",\n        \"CreatedOn\": \"2024-02-16T14:45:55.034722Z\"\n    }\n}"},{"id":"7d793239-6f3f-4fb6-852d-fec44a1a3259","name":"Create - fiscal classes","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"SKU\": \"SKU_DI_TEST_2024_u\",\n    \"InternalName\": \"TEST\",\n    \"FiscalInformations\": {     //Contenitore informazioni fiscali\n        \"B2C\": { \"Id\": 4 },     //ID classe fiscale B2C\n        \"B2B\": { \"Id\": 4 }      //ID classe fiscale B2B\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 16 Feb 2024 14:52:37 GMT"},{"key":"Content-Length","value":"176"}],"cookie":[],"responseTime":null,"body":"{\n    \"Content\": {\n        \"SKU\": \"SKU\",\n        \"InternalName\": \"TEST\",\n        \"idProduct\": 26222,\n        \"ProductGuid\": \"7df0c687-b154-44a3-882c-f45d6873d4f6\",\n        \"CreatedOn\": \"2024-02-16T14:52:35.5602253Z\"\n    }\n}"},{"id":"6c02effd-3560-4572-9a97-82a6e50da87e","name":"Create - exclusions","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"SKU\": \"SKU\",\n    \"InternalName\": \"TEST\",\n    \"Exclusions\": [     //Contenitore esclusioni\n        {\n            \"idModule\": 4,\n            \"idSubmodule\": \"Italy\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 16 Feb 2024 14:54:37 GMT"},{"key":"Content-Length","value":"176"}],"cookie":[],"responseTime":null,"body":"{\n    \"Content\": {\n        \"SKU\": \"SKU\",\n        \"InternalName\": \"TEST\",\n        \"idProduct\": 26223,\n        \"ProductGuid\": \"e49ea5b8-9d37-4463-a4df-5339f08f52a7\",\n        \"CreatedOn\": \"2024-02-16T14:54:36.1512503Z\"\n    }\n}"},{"id":"76a3f28f-4d22-4b6c-8e8c-9572ea0a8974","name":"Create - purchase prices","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"SKU\": \"SKU_DI_TEST_2024_w\",\n    \"InternalName\": \"TEST\",\n    \"Distributors\": [     //Contenitore fornitori\n        {\n            \"idDistributor\": 1,         //ID fornitore\n            \"IsDefault\": true,          //Fornitore predefinito per questo prodotto\n            \"PurchasePrice\": 15.00      //Prezzo d'acquisto\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 16 Feb 2024 14:58:35 GMT"},{"key":"Content-Length","value":"176"}],"cookie":[],"responseTime":null,"body":"{\n    \"Content\": {\n        \"SKU\": \"SKU_DI_TEST_2024_w\",\n        \"InternalName\": \"TEST\",\n        \"idProduct\": 26224,\n        \"ProductGuid\": \"0f8d6671-a023-442b-a61f-10297cf45413\",\n        \"CreatedOn\": \"2024-02-16T14:58:34.5211591Z\"\n    }\n}"},{"id":"2958d82c-e4ef-433e-8fed-9e53b652c62f","name":"Create - bundles","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"SKU\": \"SKU_DI_TEST_2024_z\",\n    \"InternalName\": \"TEST\",\n    \"Bundles\": [                                //Componenti del prodotto. Questo prodotto è formato da 1 pezzo del prodotto 128 e 2 pezzi del prodotto 129\n        {\n            \"idBundledItem\": 128,             //ID del prodotto\n            \"Quantity\": 1,                      //Quantità\n            \"ReverseStockComputation\": true     //Scarica la quantità se viene venduto il bundle\n        },\n        {\n            \"idBundledItem\": 129,\n            \"Quantity\": 2,\n            \"ReverseStockComputation\": true\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 16 Feb 2024 15:02:27 GMT"},{"key":"Content-Length","value":"176"}],"cookie":[],"responseTime":null,"body":"{\n    \"Content\": {\n        \"SKU\": \"SKU\",\n        \"InternalName\": \"TEST\",\n        \"idProduct\": 26225,\n        \"ProductGuid\": \"d55bbad4-3c4f-4744-992a-3ea2dff33d2d\",\n        \"CreatedOn\": \"2024-02-16T15:02:26.4998499Z\"\n    }\n}"},{"id":"4a8c72b5-75b8-44dd-b354-90ca5b89e2a7","name":"Create - attachments","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"SKU\": \"SKU_DI_TEST_2024_z\",\n    \"InternalName\": \"TEST\",\n    \"Attachments\": [\n        {\n            \"AttachmentType\": {{AttachmentType}},\n            \"FileName\": {{FileName}},\n            \"Cultures\": [\n                { \"Name\": \"{{CultureName1}}\" },\n                { \"Name\": \"{{CultureName2}}\" }\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 16 Feb 2024 15:02:27 GMT"},{"key":"Content-Length","value":"176"}],"cookie":[],"responseTime":null,"body":"{\n    \"Content\": {\n        \"SKU\": \"SKU\",\n        \"InternalName\": \"TEST\",\n        \"idProduct\": 26225,\n        \"ProductGuid\": \"d55bbad4-3c4f-4744-992a-3ea2dff33d2d\",\n        \"CreatedOn\": \"2024-02-16T15:02:26.4998499Z\"\n    }\n}"},{"id":"1a6509e9-a624-4eb1-b459-ad27bc1711ef","name":"Create - safety","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"SKU\": \"GPSR_TEST_1\",\n\t\"InternalName\": \"GPSR_TEST_1\",\n    \"IsDangerousGood\": true,\n\t\"Safety\": {\n\t\t\"Regulations\": {\n\t\t\t\"RegulationsApplied\": [\n\t\t\t\t\"GHS\",\n\t\t\t\t\"Transportation\"\n\t\t\t],\n\t\t\t\"GHS\": {\n\t\t\t\t\"Pictograms\": [\n\t\t\t\t\t\"Corrosive\",\n\t\t\t\t\t\"CompressedGas\"\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"UNNumber\": \"UN3550\",\n\t\t\t\"Markings\": [\n\t\t\t\t\"CE\",\n\t\t\t\t\"FCC\"\n\t\t\t]\n\t\t},\n\t\t\"StandardWarnings\": [\n\t\t\t{ \"idStandardMessage\": 1 },\n\t\t\t{ \"idStandardMessage\": 2 }\n\t\t],\n\t\t\"Batteries\": {\n            \"BatteriesRequired\": true,\n            \"BatteriesInclusionMode\": \"batteries_contained_in_equipment\",\n            \"BatteriesComposition\": \"lithium\",\n            \"BatteriesType\": \"12V\",\n            \"BatteriesCount\": 1,\n            \"BatteriesWeight\": 20,\n            \"BatteriesNumberOfCells\": 1,\n            \"BatteriesEnergyContent\": 10,\n            \"BatteriesLitiumBatteryWeight\": 10\n        },\n        \"Images\": [\n            { \"Path\": \"localpath.jpg\" },\n            { \"Path\": \"https://fakeimg.pl/300/\" }\n        ]\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 16 Feb 2024 15:02:27 GMT"},{"key":"Content-Length","value":"176"}],"cookie":[],"responseTime":null,"body":"{\n    \"Content\": {\n        \"SKU\": \"SKU\",\n        \"InternalName\": \"TEST\",\n        \"idProduct\": 26225,\n        \"ProductGuid\": \"d55bbad4-3c4f-4744-992a-3ea2dff33d2d\",\n        \"CreatedOn\": \"2024-02-16T15:02:26.4998499Z\"\n    }\n}"}],"_postman_id":"ee0b4e3b-00d7-3be8-2deb-0d75d2e81363"},{"name":"Update","id":"4525e6c8-ecf5-0ec3-eafb-9de9d0c3313b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CombinatesOn\": 75,\n    \"Combinations\": [\n        {\n            \"CombinationValues\": {\n                \"254\": \"test 1\"\n            }\n        }\n    ]\n}"},"url":"{{endpoint}}/products/{{idItem}}","description":"<p>Modifies the product, eliminating all unsent information from the product. Has a destructive effect on the product.<br />Use with caution!</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["products","{{idItem}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"ae56890b-cd72-45a6-825f-f7779b6183fd","name":"Update - minimum set of informations","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"InternalName\":\"New internal name\"\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 23 Feb 2024 16:16:15 GMT"},{"key":"Content-Length","value":"878"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 124,\n    \"ItemGuid\": \"573b5db9-abb3-4c72-ac7a-72c8bc784f5a\",\n    \"InternalName\": \"New internal name\",\n    \"SKU\": \"B1530176\",\n    \"Disabled\": false,\n    \"Manufacturer\": \"Test Manufacturer\",\n    \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n    \"UpdatedOn\": \"2024-02-23T16:18:13.6196094Z\",\n    \"Folder\": null,\n    \"Attributes\": null,\n    \"Descriptions\": null,\n    \"PricingRows\": null,\n    \"Measures\": null,\n    \"ItemImages\": null,\n    \"Availabilities\": null,\n    \"Condition\": null,\n    \"ConditionNotes\": null,\n    \"Variations\": null,\n    \"VariatesOn\": 0,\n    \"VariatesOnName\": \"\",\n    \"VariationFather\": null,\n    \"Combinations\": null,\n    \"CombinatesOn\": 0,\n    \"CombinationFather\": null,\n    \"Identifiers\": null,\n    \"FBAInfo\": null,\n    \"FiscalInformations\": null,\n    \"Exclusions\": null,\n    \"Links\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": null,\n    \"VariationFatherId\": null,\n    \"CombinationFatherId\": null,\n    \"SupplierCustomerId\": null,\n    \"HSCode\": null,\n    \"InventoryReference\": null,\n    \"idCountryOfOrigin\": null,\n    \"IsDangerousGood\": false,\n    \"Distributors\": null,\n    \"Bundles\": null\n}"},{"id":"e0c5c16a-0766-4f4f-a9f9-d05b84b8add6","name":"Update - basic informations","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"InternalName\":\"New internal name\",\n    \"Manufacturer\": \"Test manufacturer\",            //Brand - Marca\n    \"FulfilmentDays\": 2,                //Tempo di preparazione per l'evasione\n    \"HSCode\": \"Test HS Code\",                   //Codice armonizzato doganale\n    \"InventoryReference\": \"INVREF\",     //Riferimento interno magazzino\n    \"idCountryOfOrigin\": 108,           //Nazione di produzione (made in)\n    \"IsDangerousGood\": false            //Identificatore merce pericolosa\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 23 Feb 2024 16:20:26 GMT"},{"key":"Content-Length","value":"891"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 124,\n    \"ItemGuid\": \"573b5db9-abb3-4c72-ac7a-72c8bc784f5a\",\n    \"InternalName\": \"New internal name\",\n    \"SKU\": \"B1530176\",\n    \"Disabled\": false,\n    \"Manufacturer\": \"Test manufacturer\",\n    \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n    \"UpdatedOn\": \"2024-02-23T16:20:27.1924059Z\",\n    \"Folder\": null,\n    \"Attributes\": null,\n    \"Descriptions\": null,\n    \"PricingRows\": null,\n    \"Measures\": null,\n    \"ItemImages\": null,\n    \"Availabilities\": null,\n    \"Condition\": null,\n    \"ConditionNotes\": null,\n    \"Variations\": null,\n    \"VariatesOn\": 0,\n    \"VariatesOnName\": \"\",\n    \"VariationFather\": null,\n    \"Combinations\": null,\n    \"CombinatesOn\": 0,\n    \"CombinationFather\": null,\n    \"Identifiers\": null,\n    \"FBAInfo\": null,\n    \"FiscalInformations\": null,\n    \"Exclusions\": null,\n    \"Links\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": 2,\n    \"VariationFatherId\": null,\n    \"CombinationFatherId\": null,\n    \"SupplierCustomerId\": null,\n    \"HSCode\": \"Test HS Code\",\n    \"InventoryReference\": \"INVREF\",\n    \"idCountryOfOrigin\": 108,\n    \"IsDangerousGood\": false,\n    \"Distributors\": null,\n    \"Bundles\": null\n}"},{"id":"209a3855-712a-4a5a-8574-cbeb9dcc29bc","name":"Update - category","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Folder\": \n    {\n        \"idFolder\": 2  //Id della categoria in cui inserire il prodotto\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 23 Feb 2024 16:51:54 GMT"},{"key":"Content-Length","value":"948"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 124,\n    \"ItemGuid\": \"573b5db9-abb3-4c72-ac7a-72c8bc784f5a\",\n    \"InternalName\": \"New internal name\",\n    \"SKU\": \"B1530176\",\n    \"Disabled\": false,\n    \"Manufacturer\": \"Test manufaturer\",\n    \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n    \"UpdatedOn\": \"2024-02-26T09:38:15.133Z\",\n    \"Folder\": {\n        \"FolderName\": \"CSV\",\n        \"idFolder\": 2,\n        \"ItemId\": 124,\n        \"FullPath\": null\n    },\n    \"Attributes\": null,\n    \"Descriptions\": null,\n    \"PricingRows\": null,\n    \"Measures\": null,\n    \"ItemImages\": null,\n    \"Availabilities\": null,\n    \"Condition\": null,\n    \"ConditionNotes\": null,\n    \"Variations\": null,\n    \"VariatesOn\": 0,\n    \"VariatesOnName\": \"\",\n    \"VariationFather\": null,\n    \"Combinations\": null,\n    \"CombinatesOn\": 0,\n    \"CombinationFather\": null,\n    \"Identifiers\": null,\n    \"FBAInfo\": null,\n    \"FiscalInformations\": null,\n    \"Exclusions\": null,\n    \"Links\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": 2,\n    \"VariationFatherId\": null,\n    \"CombinationFatherId\": null,\n    \"SupplierCustomerId\": null,\n    \"HSCode\": \"Test HS Code\",\n    \"InventoryReference\": \"INVREF\",\n    \"idCountryOfOrigin\": 108,\n    \"IsDangerousGood\": false,\n    \"Distributors\": null,\n    \"Bundles\": null\n}"},{"id":"177188eb-67e1-4541-9ffd-b18b630b3eb5","name":"Update - descriptions","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Descriptions\":             //Contenitore delle descrizioni\n    [\n        {\n            \"CultureName\": \"it\",                //Cultura\n            \"DescriptionTypeId\": 1,             //Tipo di descrizione\n            \"Description\": \"updated name\"   //Valore testuale\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 23 Feb 2024 17:49:12 GMT"},{"key":"Content-Length","value":"1061"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 124,\n    \"ItemGuid\": \"573b5db9-abb3-4c72-ac7a-72c8bc784f5a\",\n    \"InternalName\": \"New internal name\",\n    \"SKU\": \"B1530176\",\n    \"Disabled\": false,\n    \"Manufacturer\": \"Test manufaturer\",\n    \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n    \"UpdatedOn\": \"2024-02-26T09:39:30.747Z\",\n    \"Folder\": null,\n    \"Attributes\": null,\n    \"Descriptions\": [\n        {\n            \"CultureName\": \"it\",\n            \"DescriptionTypeId\": 1,\n            \"Description\": \"updated name\",\n            \"DescriptionData\": {\n                \"#cdata-section\": \"updated name\"\n            },\n            \"Modules\": null,\n            \"ItemId\": 124,\n            \"idDescription\": null\n        }\n    ],\n    \"PricingRows\": null,\n    \"Measures\": null,\n    \"ItemImages\": null,\n    \"Availabilities\": null,\n    \"Condition\": null,\n    \"ConditionNotes\": null,\n    \"Variations\": null,\n    \"VariatesOn\": 0,\n    \"VariatesOnName\": \"\",\n    \"VariationFather\": null,\n    \"Combinations\": null,\n    \"CombinatesOn\": 0,\n    \"CombinationFather\": null,\n    \"Identifiers\": null,\n    \"FBAInfo\": null,\n    \"FiscalInformations\": null,\n    \"Exclusions\": null,\n    \"Links\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": 2,\n    \"VariationFatherId\": null,\n    \"CombinationFatherId\": null,\n    \"SupplierCustomerId\": null,\n    \"HSCode\": \"Test HS Code\",\n    \"InventoryReference\": \"INVREF\",\n    \"idCountryOfOrigin\": 108,\n    \"IsDangerousGood\": false,\n    \"Distributors\": null,\n    \"Bundles\": null\n}"},{"id":"102ba8b9-126c-404d-9257-fb2218667fa0","name":"Update - prices","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"PricingRows\":                                  //Contenitore dei prezzi\n    [\n        {\n            \"Price\": 49.99,                         //Prezzo\n            \"PriceListIdPricing\": 1,                 //ID del listino prezzi\n            \"Discount\": 10,\n            \"DiscountTypeIdDiscountType\": 2\n        },\n        {\n            \"Price\": 49.99,\n            \"Discount\": 10,                         //Sconto\n            \"DiscountTypeIdDiscountType\": 2,        //Tipo sconto (1 = fisso, 2 = percentuale)\n            \"PriceListIdPricing\": 2\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 26 Feb 2024 08:21:23 GMT"},{"key":"Content-Length","value":"1600"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 124,\n    \"ItemGuid\": \"573b5db9-abb3-4c72-ac7a-72c8bc784f5a\",\n    \"InternalName\": \"New internal name\",\n    \"SKU\": \"B1530176\",\n    \"Disabled\": false,\n    \"Manufacturer\": \"Test manufaturer\",\n    \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n    \"UpdatedOn\": \"2024-02-26T09:41:10.85Z\",\n    \"Folder\": null,\n    \"Attributes\": null,\n    \"Descriptions\": null,\n    \"PricingRows\": [\n        {\n            \"Price\": 49.99,\n            \"Discount\": 10.0,\n            \"DiscountTypeIdDiscountType\": 2,\n            \"PriceListIdPricing\": 1,\n            \"PriceListName\": \"Listino predefinito\",\n            \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n            \"PriceListIsDiscountEnabled\": true,\n            \"PriceListIsSync\": true,\n            \"RealPrice\": 44.99,\n            \"IsDiscountedPrice\": true,\n            \"ItemId\": 124,\n            \"CreatedOn\": \"2023-11-20T11:53:31.8Z\",\n            \"UpdatedOn\": \"2024-02-26T09:41:10.887Z\"\n        },\n        {\n            \"Price\": 49.99,\n            \"Discount\": 10.0,\n            \"DiscountTypeIdDiscountType\": 2,\n            \"PriceListIdPricing\": 2,\n            \"PriceListName\": \"Wish\",\n            \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n            \"PriceListIsDiscountEnabled\": false,\n            \"PriceListIsSync\": true,\n            \"RealPrice\": 49.99,\n            \"IsDiscountedPrice\": false,\n            \"ItemId\": 124,\n            \"CreatedOn\": \"2024-02-23T17:51:42.047Z\",\n            \"UpdatedOn\": \"2024-02-26T09:41:10.887Z\"\n        }\n    ],\n    \"Measures\": null,\n    \"ItemImages\": null,\n    \"Availabilities\": null,\n    \"Condition\": null,\n    \"ConditionNotes\": null,\n    \"Variations\": null,\n    \"VariatesOn\": 0,\n    \"VariatesOnName\": \"\",\n    \"VariationFather\": null,\n    \"Combinations\": null,\n    \"CombinatesOn\": 0,\n    \"CombinationFather\": null,\n    \"Identifiers\": null,\n    \"FBAInfo\": null,\n    \"FiscalInformations\": null,\n    \"Exclusions\": null,\n    \"Links\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": 2,\n    \"VariationFatherId\": null,\n    \"CombinationFatherId\": null,\n    \"SupplierCustomerId\": null,\n    \"HSCode\": \"Test HS Code\",\n    \"InventoryReference\": \"INVREF\",\n    \"idCountryOfOrigin\": 108,\n    \"IsDangerousGood\": false,\n    \"Distributors\": null,\n    \"Bundles\": null\n}"},{"id":"3d5ae1a0-106e-4b22-aefa-5a7a753c033a","name":"Update - measures","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Measures\":                                     //Contenitore delle misure\n    [\n        {\n            \"UnitOfMeasureIdUnitOfMeasure\": 32,     //ID unità di misura\n            \"Name\": \"NormalMeasureWidth\",           //Tipo di misura\n            \"Value\": 10                             //Valore della misura\n        },\n        {\n            \"UnitOfMeasureIdUnitOfMeasure\": 32,\n            \"Name\": \"NormalMeasureHeight\",\n            \"Value\": 20\n        },\n        {\n            \"UnitOfMeasureIdUnitOfMeasure\": 32,\n            \"Name\": \"NormalMeasureLenght\",\n            \"Value\": 30\n        },\n        {\n            \"UnitOfMeasureIdUnitOfMeasure\": 32,\n            \"Name\": \"NormalMeasureWeight\",\n            \"Value\": 2\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 26 Feb 2024 08:46:25 GMT"},{"key":"Content-Length","value":"1514"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 124,\n    \"ItemGuid\": \"573b5db9-abb3-4c72-ac7a-72c8bc784f5a\",\n    \"InternalName\": \"New internal name\",\n    \"SKU\": \"B1530176\",\n    \"Disabled\": false,\n    \"Manufacturer\": \"Test manufaturer\",\n    \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n    \"UpdatedOn\": \"2024-02-26T09:41:59.54Z\",\n    \"Folder\": null,\n    \"Attributes\": null,\n    \"Descriptions\": null,\n    \"PricingRows\": null,\n    \"Measures\": [\n        {\n            \"UnitOfMeasureIdUnitOfMeasure\": 32,\n            \"UnitOfMeasureName\": \"centimetri\",\n            \"UnitOfMeasureAbbreviation\": \"cm\",\n            \"Name\": \"NormalMeasureHeight\",\n            \"Value\": 20.0,\n            \"ItemId\": 124\n        },\n        {\n            \"UnitOfMeasureIdUnitOfMeasure\": 32,\n            \"UnitOfMeasureName\": \"centimetri\",\n            \"UnitOfMeasureAbbreviation\": \"cm\",\n            \"Name\": \"NormalMeasureLenght\",\n            \"Value\": 30.0,\n            \"ItemId\": 124\n        },\n        {\n            \"UnitOfMeasureIdUnitOfMeasure\": 32,\n            \"UnitOfMeasureName\": \"centimetri\",\n            \"UnitOfMeasureAbbreviation\": \"cm\",\n            \"Name\": \"NormalMeasureWeight\",\n            \"Value\": 2.0,\n            \"ItemId\": 124\n        },\n        {\n            \"UnitOfMeasureIdUnitOfMeasure\": 32,\n            \"UnitOfMeasureName\": \"centimetri\",\n            \"UnitOfMeasureAbbreviation\": \"cm\",\n            \"Name\": \"NormalMeasureWidth\",\n            \"Value\": 10.0,\n            \"ItemId\": 124\n        }\n    ],\n    \"ItemImages\": null,\n    \"Availabilities\": null,\n    \"Condition\": null,\n    \"ConditionNotes\": null,\n    \"Variations\": null,\n    \"VariatesOn\": 0,\n    \"VariatesOnName\": \"\",\n    \"VariationFather\": null,\n    \"Combinations\": null,\n    \"CombinatesOn\": 0,\n    \"CombinationFather\": null,\n    \"Identifiers\": null,\n    \"FBAInfo\": null,\n    \"FiscalInformations\": null,\n    \"Exclusions\": null,\n    \"Links\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": 2,\n    \"VariationFatherId\": null,\n    \"CombinationFatherId\": null,\n    \"SupplierCustomerId\": null,\n    \"HSCode\": \"Test HS Code\",\n    \"InventoryReference\": \"INVREF\",\n    \"idCountryOfOrigin\": 108,\n    \"IsDangerousGood\": false,\n    \"Distributors\": null,\n    \"Bundles\": null\n}"},{"id":"02db90a3-12ad-4526-a015-65e1d7395e78","name":"Update - images","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ItemImages\":                                     //Contenitore delle immagini\n    [\n        {\n            \"ImagesPath\": \"https://fakeimg.pl/500x500\",     //URL immagine\n            \"OrderIndex\": \"1\"                               //Ordine\n        },\n        {\n            \"ImagesPath\": \"https://fakeimg.pl/600x600\",\n            \"OrderIndex\": \"0\"\n        },\n        {\n            \"ImagesPath\": \"https://fakeimg.pl/600x600\",\n            \"OrderIndex\": \"0\",\n            \"idModule\": 4                                   //ID del modulo a cui è associata l'immagine\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 26 Feb 2024 09:43:10 GMT"},{"key":"Content-Length","value":"1751"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 124,\n    \"ItemGuid\": \"573b5db9-abb3-4c72-ac7a-72c8bc784f5a\",\n    \"InternalName\": \"New internal name\",\n    \"SKU\": \"B1530176\",\n    \"Disabled\": false,\n    \"Manufacturer\": \"Test manufaturer\",\n    \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n    \"UpdatedOn\": \"2024-02-26T09:43:09.967Z\",\n    \"Folder\": null,\n    \"Attributes\": null,\n    \"Descriptions\": null,\n    \"PricingRows\": null,\n    \"Measures\": null,\n    \"ItemImages\": [\n        {\n            \"idItemImage\": 45548613,\n            \"ImagesPath\": \"https://fakeimg.pl/600x600\",\n            \"ImagesCreatedOn\": \"2024-02-26T08:54:32.013Z\",\n            \"ImagesIsLocallyHosted\": false,\n            \"OrderIndex\": 0,\n            \"FullImagePath\": null,\n            \"IsDynamicBox\": false,\n            \"FullImagePathEncoded\": null,\n            \"ItemId\": 124,\n            \"ImagesIdImage\": 24013,\n            \"idImage\": null,\n            \"idModule\": null\n        },\n        {\n            \"idItemImage\": 45548612,\n            \"ImagesPath\": \"https://fakeimg.pl/500x500\",\n            \"ImagesCreatedOn\": \"2024-02-26T08:54:32.013Z\",\n            \"ImagesIsLocallyHosted\": false,\n            \"OrderIndex\": 1,\n            \"FullImagePath\": null,\n            \"IsDynamicBox\": false,\n            \"FullImagePathEncoded\": null,\n            \"ItemId\": 124,\n            \"ImagesIdImage\": 24012,\n            \"idImage\": null,\n            \"idModule\": null\n        },\n        {\n            \"idItemImage\": 0,\n            \"ImagesPath\": \"https://fakeimg.pl/600x600\",\n            \"ImagesCreatedOn\": \"2024-02-26T08:54:31.563Z\",\n            \"ImagesIsLocallyHosted\": false,\n            \"OrderIndex\": 0,\n            \"FullImagePath\": null,\n            \"IsDynamicBox\": false,\n            \"FullImagePathEncoded\": null,\n            \"ItemId\": 124,\n            \"ImagesIdImage\": 0,\n            \"idImage\": 167530,\n            \"idModule\": 4\n        }\n    ],\n    \"Availabilities\": null,\n    \"Condition\": null,\n    \"ConditionNotes\": null,\n    \"Variations\": null,\n    \"VariatesOn\": 0,\n    \"VariatesOnName\": \"\",\n    \"VariationFather\": null,\n    \"Combinations\": null,\n    \"CombinatesOn\": 0,\n    \"CombinationFather\": null,\n    \"Identifiers\": null,\n    \"FBAInfo\": null,\n    \"FiscalInformations\": null,\n    \"Exclusions\": null,\n    \"Links\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": 2,\n    \"VariationFatherId\": null,\n    \"CombinationFatherId\": null,\n    \"SupplierCustomerId\": null,\n    \"HSCode\": \"Test HS Code\",\n    \"InventoryReference\": \"INVREF\",\n    \"idCountryOfOrigin\": 108,\n    \"IsDangerousGood\": false,\n    \"Distributors\": null,\n    \"Bundles\": null\n}"},{"id":"2e95e4b7-2aa5-4ccb-a7a7-0245f38509a4","name":"Update - availabilities","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Availabilities\":                                     //Contenitore delle disponibilità\n    [\n        {\n            \"StorageIdStorage\": 3,                        //ID del magazzino\n            \"Quantity\": 4                                 //Quantità\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 26 Feb 2024 09:46:11 GMT"},{"key":"Content-Length","value":"1068"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 124,\n    \"ItemGuid\": \"573b5db9-abb3-4c72-ac7a-72c8bc784f5a\",\n    \"InternalName\": \"TEST\",\n    \"SKU\": \"B1530176\",\n    \"Disabled\": false,\n    \"Manufacturer\": \"Test manufaturer\",\n    \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n    \"UpdatedOn\": \"2024-02-26T11:06:09.037Z\",\n    \"Folder\": null,\n    \"Attributes\": null,\n    \"Descriptions\": null,\n    \"PricingRows\": null,\n    \"Measures\": null,\n    \"ItemImages\": null,\n    \"Availabilities\": [\n        {\n            \"Quantity\": 4.0,\n            \"StorageIdStorage\": 3,\n            \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\",\n            \"ItemId\": 124\n        }\n    ],\n    \"Condition\": null,\n    \"ConditionNotes\": null,\n    \"Variations\": null,\n    \"VariatesOn\": 0,\n    \"VariatesOnName\": \"\",\n    \"VariationFather\": null,\n    \"Combinations\": null,\n    \"CombinatesOn\": 39,\n    \"CombinationFather\": null,\n    \"Identifiers\": null,\n    \"FBAInfo\": null,\n    \"FiscalInformations\": null,\n    \"Exclusions\": null,\n    \"Links\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": 2,\n    \"VariationFatherId\": null,\n    \"CombinationFatherId\": null,\n    \"SupplierCustomerId\": null,\n    \"HSCode\": \"Test HS Code\",\n    \"InventoryReference\": \"INVREF\",\n    \"idCountryOfOrigin\": 108,\n    \"IsDangerousGood\": false,\n    \"Distributors\": null,\n    \"Bundles\": null\n}"},{"id":"fc7c5ce3-b9e6-423a-9a81-870eb3e3c376","name":"Update - conditions","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Condition\": \n    {\n        \"idItemCondition\": 1                //ID della condizione dell'oggetto\n    },\n    \"ConditionNotes\":                       //Contenitore note sulla condizione\n    [\n        {\n            \"CultureName\": \"it\",\n            \"Description\": \"Con qualche graffio\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 26 Feb 2024 09:47:20 GMT"},{"key":"Content-Length","value":"989"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 124,\n    \"ItemGuid\": \"573b5db9-abb3-4c72-ac7a-72c8bc784f5a\",\n    \"InternalName\": \"TEST\",\n    \"SKU\": \"B1530176\",\n    \"Disabled\": false,\n    \"Manufacturer\": \"Test manufaturer\",\n    \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n    \"UpdatedOn\": \"2024-02-26T09:47:20.027Z\",\n    \"Folder\": null,\n    \"Attributes\": null,\n    \"Descriptions\": null,\n    \"PricingRows\": null,\n    \"Measures\": null,\n    \"ItemImages\": null,\n    \"Availabilities\": null,\n    \"Condition\": {\n        \"idItem\": 0,\n        \"idItemCondition\": 1,\n        \"Condition\": \"Nuovo\"\n    },\n    \"ConditionNotes\": [\n        {\n            \"CultureName\": \"it\",\n            \"Description\": \"Con qualche graffio\",\n            \"ItemId\": 124\n        }\n    ],\n    \"Variations\": null,\n    \"VariatesOn\": 0,\n    \"VariatesOnName\": \"\",\n    \"VariationFather\": null,\n    \"Combinations\": null,\n    \"CombinatesOn\": 0,\n    \"CombinationFather\": null,\n    \"Identifiers\": null,\n    \"FBAInfo\": null,\n    \"FiscalInformations\": null,\n    \"Exclusions\": null,\n    \"Links\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": 2,\n    \"VariationFatherId\": null,\n    \"CombinationFatherId\": null,\n    \"SupplierCustomerId\": null,\n    \"HSCode\": \"Test HS Code\",\n    \"InventoryReference\": \"INVREF\",\n    \"idCountryOfOrigin\": 108,\n    \"IsDangerousGood\": false,\n    \"Distributors\": null,\n    \"Bundles\": null\n}"},{"id":"00c36fec-bffc-4551-b113-7f894de667e4","name":"Update - identifiers","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Identifiers\":                      //Contenitore identificatori\n    [\n        {\n            \"idIdentifierType\": 1,      //ID del tipo di identificatore\n            \"Value\": \"9999999999999\"      //Valore\n        },\n        {\n            \"idIdentifierType\": 1,\n            \"Value\": \"0000000000000\",\n            \"idModule\": 4,              //ID del mercato a cui è associato questo identificatore\n            \"SubmoduleName\": \"Italy\"    //Nome del mercato nazionale a cui è associato questo identificatore\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 26 Feb 2024 11:51:12 GMT"},{"key":"Content-Length","value":"1117"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 124,\n    \"ItemGuid\": \"573b5db9-abb3-4c72-ac7a-72c8bc784f5a\",\n    \"InternalName\": \"TEST\",\n    \"SKU\": \"B1530176\",\n    \"Disabled\": false,\n    \"Manufacturer\": \"Test manufaturer\",\n    \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n    \"UpdatedOn\": \"2024-02-26T11:51:11.18Z\",\n    \"Folder\": null,\n    \"Attributes\": null,\n    \"Descriptions\": null,\n    \"PricingRows\": null,\n    \"Measures\": null,\n    \"ItemImages\": null,\n    \"Availabilities\": null,\n    \"Condition\": null,\n    \"ConditionNotes\": null,\n    \"Variations\": null,\n    \"VariatesOn\": 0,\n    \"VariatesOnName\": \"\",\n    \"VariationFather\": null,\n    \"Combinations\": null,\n    \"CombinatesOn\": 39,\n    \"CombinationFather\": null,\n    \"Identifiers\": [\n        {\n            \"idItemIdentifier\": 5145582,\n            \"idItem\": 124,\n            \"idIdentifierType\": 1,\n            \"Value\": \"0000000000000\",\n            \"idModule\": 4,\n            \"SubmoduleName\": \"Italy\"\n        },\n        {\n            \"idItemIdentifier\": 5145253,\n            \"idItem\": 124,\n            \"idIdentifierType\": 1,\n            \"Value\": \"9999999999999\",\n            \"idModule\": null,\n            \"SubmoduleName\": \"\"\n        }\n    ],\n    \"FBAInfo\": null,\n    \"FiscalInformations\": null,\n    \"Exclusions\": null,\n    \"Links\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": 2,\n    \"VariationFatherId\": null,\n    \"CombinationFatherId\": null,\n    \"SupplierCustomerId\": null,\n    \"HSCode\": \"Test HS Code\",\n    \"InventoryReference\": \"INVREF\",\n    \"idCountryOfOrigin\": 108,\n    \"IsDangerousGood\": false,\n    \"Distributors\": null,\n    \"Bundles\": null\n}"},{"id":"85bff4db-01c3-4666-ada6-19707fcd76a0","name":"Update - attributes","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Attributes\":               //Contenitore degli attributi\n    [\n        {\n            \"AttributesIdItemAttribute\": 53,\n            \"Value\": \"Updated\"\n        }, \n        {\n            \"AttributesIdItemAttribute\": 54,\n            \"Value\": \"Updated 2\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 26 Feb 2024 09:54:34 GMT"},{"key":"Content-Length","value":"1283"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 124,\n    \"ItemGuid\": \"573b5db9-abb3-4c72-ac7a-72c8bc784f5a\",\n    \"InternalName\": \"TEST\",\n    \"SKU\": \"B1530176\",\n    \"Disabled\": false,\n    \"Manufacturer\": \"Test manufaturer\",\n    \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n    \"UpdatedOn\": \"2024-02-26T09:54:33.517Z\",\n    \"Folder\": null,\n    \"Attributes\": [\n        {\n            \"AttributesCultureCultureName\": \"en\",\n            \"AttributesIdItemAttribute\": 53,\n            \"AttributesName\": \"Article\",\n            \"Value\": \"Updated\",\n            \"AttributesPrimitiveTypeIdPrimitiveType\": 0,\n            \"ToBeShown\": true,\n            \"ItemId\": 124,\n            \"AttributeSetId\": 17\n        },\n        {\n            \"AttributesCultureCultureName\": \"en\",\n            \"AttributesIdItemAttribute\": 54,\n            \"AttributesName\": \"MPN\",\n            \"Value\": \"Updated 2\",\n            \"AttributesPrimitiveTypeIdPrimitiveType\": 0,\n            \"ToBeShown\": true,\n            \"ItemId\": 124,\n            \"AttributeSetId\": 17\n        }\n    ],\n    \"Descriptions\": null,\n    \"PricingRows\": null,\n    \"Measures\": null,\n    \"ItemImages\": null,\n    \"Availabilities\": null,\n    \"Condition\": null,\n    \"ConditionNotes\": null,\n    \"Variations\": null,\n    \"VariatesOn\": 0,\n    \"VariatesOnName\": \"\",\n    \"VariationFather\": null,\n    \"Combinations\": null,\n    \"CombinatesOn\": 0,\n    \"CombinationFather\": null,\n    \"Identifiers\": null,\n    \"FBAInfo\": null,\n    \"FiscalInformations\": null,\n    \"Exclusions\": null,\n    \"Links\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": 2,\n    \"VariationFatherId\": null,\n    \"CombinationFatherId\": null,\n    \"SupplierCustomerId\": null,\n    \"HSCode\": \"Test HS Code\",\n    \"InventoryReference\": \"INVREF\",\n    \"idCountryOfOrigin\": 108,\n    \"IsDangerousGood\": false,\n    \"Distributors\": null,\n    \"Bundles\": null\n}"},{"id":"28b15cd9-2293-42b0-b680-b40d13407398","name":"Update - compatibilities","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Combinations\": [\n        {\n            \"CombinationValues\": {\n                \"100\": \"12345\"\n            }\n        },\n        {\n            \"CombinationValues\": {\n                \"100\": \"34567\"\n            }\n        },\n        {\n            \"CombinationValues\": {\n                \"100\": \"67891\"\n            }\n        }\n    ],\n    \"CombinatesOn\": 39\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 26 Feb 2024 09:55:17 GMT"},{"key":"Content-Length","value":"1272"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 124,\n    \"ItemGuid\": \"573b5db9-abb3-4c72-ac7a-72c8bc784f5a\",\n    \"InternalName\": \"TEST\",\n    \"SKU\": \"B1530176\",\n    \"Disabled\": false,\n    \"Manufacturer\": \"Test manufaturer\",\n    \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n    \"UpdatedOn\": \"2024-02-26T09:55:16.9Z\",\n    \"Folder\": null,\n    \"Attributes\": null,\n    \"Descriptions\": null,\n    \"PricingRows\": null,\n    \"Measures\": null,\n    \"ItemImages\": null,\n    \"Availabilities\": null,\n    \"Condition\": null,\n    \"ConditionNotes\": null,\n    \"Variations\": null,\n    \"VariatesOn\": 0,\n    \"VariatesOnName\": \"\",\n    \"VariationFather\": null,\n    \"Combinations\": [\n        {\n            \"idItem\": 0,\n            \"CombinationGuid\": \"6d8ee688-9d8d-4a14-a1fe-a2941dab1fef\",\n            \"CombinationValues\": {\n                \"100\": \"12345\"\n            },\n            \"CombinationId\": \"100:12345\"\n        },\n        {\n            \"idItem\": 0,\n            \"CombinationGuid\": \"364c893b-009a-4e07-b84f-3d69c3f9b242\",\n            \"CombinationValues\": {\n                \"100\": \"34567\"\n            },\n            \"CombinationId\": \"100:34567\"\n        },\n        {\n            \"idItem\": 0,\n            \"CombinationGuid\": \"cf59db6f-2ff6-4ed8-8cfc-c3c2f324ee62\",\n            \"CombinationValues\": {\n                \"100\": \"67891\"\n            },\n            \"CombinationId\": \"100:67891\"\n        }\n    ],\n    \"CombinatesOn\": 39,\n    \"CombinationFather\": null,\n    \"Identifiers\": null,\n    \"FBAInfo\": null,\n    \"FiscalInformations\": null,\n    \"Exclusions\": null,\n    \"Links\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": 2,\n    \"VariationFatherId\": null,\n    \"CombinationFatherId\": null,\n    \"SupplierCustomerId\": null,\n    \"HSCode\": \"Test HS Code\",\n    \"InventoryReference\": \"INVREF\",\n    \"idCountryOfOrigin\": 108,\n    \"IsDangerousGood\": false,\n    \"Distributors\": null,\n    \"Bundles\": null\n}"},{"id":"a7ead6ab-efd5-46de-86e0-9a49775363af","name":"Update - variations","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Variations\": \n    [\n        {\n            \"Availabilities\": \n            [\n                { \"StorageIdStorage\": 3, \"Quantity\": 4  }\n            ],\n            \"VariationSKU\": \"SKU_S_Rosso\",\n            \"Attributes\": \n            [\n                { \"AttributesIdItemAttribute\": 93, \"Value\": \"S\" },\n                { \"AttributesIdItemAttribute\": 94, \"Value\": \"Rosso\" }\n            ],\n            \"VariationPricingRows\": \n            [\n                {\n                    \"PriceListIdPricing\": 1,\n                    \"Price\": 30\n                }\n            ],\n            \"Identifiers\":\n            [\n                {\n                    \"idIdentifierType\": 1,\n                    \"Value\": \"0123456789011\"\n                }\n            ],\n            \"Images\": \n            [\n                {\n                    \"ImagesPath\": \"https://fakeimg.pl/500x500\",\n                    \"OrderIndex\": \"0\"\n                }\n            ],\n            \"Descriptions\": \n            [\n                {\n                    \"CultureName\": \"it\",\n                    \"DescriptionTypeId\": 1,\n                    \"Description\": \"updated name\"\n                }\n            ]\n        },\n        {\n            \"Availabilities\": [\n                { \"StorageIdStorage\": 3, \"Quantity\": 1  }\n            ],\n            \"VariationSKU\": \"SKU_M_Rosso\",\n            \"Values\": [\n                { \"idAttribute\": 93, \"Value\": \"M\" },\n                { \"idAttribute\": 94, \"Value\": \"Rosso\" }\n            ],\n            \"Identifiers\":\n            [\n                {\n                    \"idIdentifierType\": 1,\n                    \"Value\": \"0123456789012\"\n                }\n            ]\n        },\n        {\n            \"Availabilities\": [\n                { \"StorageIdStorage\": 3, \"Quantity\": 4  }\n            ],\n            \"VariationSKU\": \"SKU_L_Rosso\",\n            \"Values\": [\n                { \"idAttribute\": 93, \"Value\": \"L\" },\n                { \"idAttribute\": 94, \"Value\": \"Rosso\" }\n            ],\n            \"Identifiers\":\n            [\n                {\n                    \"idIdentifierType\": 1,\n                    \"Value\": \"0123456789333\"\n                }\n            ]\n        }\n    ],\n    \"VariatesOn\": 34\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/26213"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 27 Feb 2024 10:19:19 GMT"},{"key":"Content-Length","value":"4746"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 26213,\n    \"ItemGuid\": \"6257f6bd-66e7-458f-9d04-c8b0f0e202c8\",\n    \"InternalName\": \"TEST\",\n    \"SKU\": \"SKU_DI_TEST_2024_r\",\n    \"Disabled\": false,\n    \"Manufacturer\": null,\n    \"CreatedOn\": \"2024-02-16T14:19:09.51Z\",\n    \"UpdatedOn\": \"2024-02-27T10:19:16.603Z\",\n    \"Folder\": null,\n    \"Attributes\": null,\n    \"Descriptions\": [],\n    \"PricingRows\": [\n        {\n            \"Price\": 25,\n            \"Discount\": 0,\n            \"DiscountTypeIdDiscountType\": null,\n            \"PriceListIdPricing\": 1,\n            \"PriceListName\": \"Listino predefinito\",\n            \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n            \"PriceListIsDiscountEnabled\": true,\n            \"PriceListIsSync\": true,\n            \"RealPrice\": 25,\n            \"IsDiscountedPrice\": false,\n            \"ItemId\": 26213,\n            \"CreatedOn\": \"2024-02-16T14:19:09.51Z\",\n            \"UpdatedOn\": \"2024-02-27T10:19:16.643Z\"\n        }\n    ],\n    \"Measures\": null,\n    \"ItemImages\": [],\n    \"Availabilities\": [\n        {\n            \"Quantity\": 9,\n            \"StorageIdStorage\": 3,\n            \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\",\n            \"ItemId\": 26213\n        }\n    ],\n    \"Condition\": null,\n    \"ConditionNotes\": null,\n    \"Variations\": [\n        {\n            \"CreatedOn\": null,\n            \"UpdatedOn\": null,\n            \"FatherIdItem\": 26213,\n            \"idVariation\": 26239,\n            \"VariationGuid\": \"6e5336b3-02ec-4f8d-b2f6-acb534f9c22f\",\n            \"VariationSKU\": \"SKU_S_Rosso\",\n            \"VariationQuantity\": 4,\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 4,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\",\n                    \"ItemId\": 26239\n                }\n            ],\n            \"VariationEAN\": null,\n            \"Values\": [\n                {\n                    \"idAttribute\": 93,\n                    \"AttributeName\": \"Colore\",\n                    \"Value\": \"S\"\n                },\n                {\n                    \"idAttribute\": 94,\n                    \"AttributeName\": \"Taglia\",\n                    \"Value\": \"Rosso\"\n                }\n            ],\n            \"Images\": [\n                {\n                    \"idItemImage\": 45556225,\n                    \"ImagesPath\": \"https://fakeimg.pl/500x500\",\n                    \"ImagesCreatedOn\": \"2024-02-27T10:18:04.937Z\",\n                    \"ImagesIsLocallyHosted\": false,\n                    \"OrderIndex\": 0,\n                    \"FullImagePath\": null,\n                    \"IsDynamicBox\": false,\n                    \"FullImagePathEncoded\": null,\n                    \"ItemId\": 26239,\n                    \"ImagesIdImage\": 24016,\n                    \"idImage\": null,\n                    \"idModule\": null\n                }\n            ],\n            \"VariationPricingRows\": [\n                {\n                    \"Price\": 30,\n                    \"Discount\": 0,\n                    \"DiscountTypeIdDiscountType\": null,\n                    \"PriceListIdPricing\": 1,\n                    \"PriceListName\": \"Listino predefinito\",\n                    \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n                    \"PriceListIsDiscountEnabled\": true,\n                    \"PriceListIsSync\": true,\n                    \"RealPrice\": 30,\n                    \"IsDiscountedPrice\": false,\n                    \"ItemId\": 26239,\n                    \"CreatedOn\": \"2024-02-27T10:18:04.937Z\",\n                    \"UpdatedOn\": null\n                }\n            ],\n            \"Identifiers\": [\n                {\n                    \"idItemIdentifier\": 5248986,\n                    \"idItem\": 26239,\n                    \"idIdentifierType\": 1,\n                    \"Value\": \"0123456789011\",\n                    \"idModule\": null,\n                    \"SubmoduleName\": \"\"\n                }\n            ],\n            \"FulfilmentDays\": null,\n            \"SupplierCustomerId\": null,\n            \"InternalName\": null,\n            \"Descriptions\": [\n                {\n                    \"CultureName\": \"it\",\n                    \"DescriptionTypeId\": 1,\n                    \"Description\": \"updated name\",\n                    \"DescriptionData\": {\n                        \"#cdata-section\": \"updated name\"\n                    },\n                    \"Modules\": null,\n                    \"ItemId\": 26239,\n                    \"idDescription\": null\n                }\n            ],\n            \"Attributes\": null,\n            \"Links\": null,\n            \"VariationImages\": [\n                null\n            ],\n            \"VariationImagesEncoded\": [\n                null\n            ],\n            \"VariationValues\": {\n                \"93\": \"S\",\n                \"94\": \"Rosso\"\n            },\n            \"Bundles\": null\n        },\n        {\n            \"CreatedOn\": null,\n            \"UpdatedOn\": null,\n            \"FatherIdItem\": 26213,\n            \"idVariation\": 26240,\n            \"VariationGuid\": \"aea5ec0e-ca65-41cd-a4c7-6b6a8c7ed3e8\",\n            \"VariationSKU\": \"SKU_M_Rosso\",\n            \"VariationQuantity\": 1,\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 1,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\",\n                    \"ItemId\": 26240\n                }\n            ],\n            \"VariationEAN\": null,\n            \"Values\": [\n                {\n                    \"idAttribute\": 93,\n                    \"AttributeName\": \"Colore\",\n                    \"Value\": \"M\"\n                },\n                {\n                    \"idAttribute\": 94,\n                    \"AttributeName\": \"Taglia\",\n                    \"Value\": \"Rosso\"\n                }\n            ],\n            \"Images\": null,\n            \"VariationPricingRows\": null,\n            \"Identifiers\": [\n                {\n                    \"idItemIdentifier\": 5248987,\n                    \"idItem\": 26240,\n                    \"idIdentifierType\": 1,\n                    \"Value\": \"0123456789012\",\n                    \"idModule\": null,\n                    \"SubmoduleName\": \"\"\n                }\n            ],\n            \"FulfilmentDays\": null,\n            \"SupplierCustomerId\": null,\n            \"InternalName\": null,\n            \"Descriptions\": null,\n            \"Attributes\": null,\n            \"Links\": null,\n            \"VariationImages\": null,\n            \"VariationImagesEncoded\": null,\n            \"VariationValues\": {\n                \"93\": \"M\",\n                \"94\": \"Rosso\"\n            },\n            \"Bundles\": null\n        },\n        {\n            \"CreatedOn\": null,\n            \"UpdatedOn\": null,\n            \"FatherIdItem\": 26213,\n            \"idVariation\": 26241,\n            \"VariationGuid\": \"5c0ac586-24ba-4315-bedc-12bf749b4b1e\",\n            \"VariationSKU\": \"SKU_L_Rosso\",\n            \"VariationQuantity\": 4,\n            \"Availabilities\": [\n                {\n                    \"Quantity\": 4,\n                    \"StorageIdStorage\": 3,\n                    \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\",\n                    \"ItemId\": 26241\n                }\n            ],\n            \"VariationEAN\": null,\n            \"Values\": [\n                {\n                    \"idAttribute\": 93,\n                    \"AttributeName\": \"Colore\",\n                    \"Value\": \"L\"\n                },\n                {\n                    \"idAttribute\": 94,\n                    \"AttributeName\": \"Taglia\",\n                    \"Value\": \"Rosso\"\n                }\n            ],\n            \"Images\": null,\n            \"VariationPricingRows\": null,\n            \"Identifiers\": [\n                {\n                    \"idItemIdentifier\": 5248988,\n                    \"idItem\": 26241,\n                    \"idIdentifierType\": 1,\n                    \"Value\": \"0123456789333\",\n                    \"idModule\": null,\n                    \"SubmoduleName\": \"\"\n                }\n            ],\n            \"FulfilmentDays\": null,\n            \"SupplierCustomerId\": null,\n            \"InternalName\": null,\n            \"Descriptions\": null,\n            \"Attributes\": null,\n            \"Links\": null,\n            \"VariationImages\": null,\n            \"VariationImagesEncoded\": null,\n            \"VariationValues\": {\n                \"93\": \"L\",\n                \"94\": \"Rosso\"\n            },\n            \"Bundles\": null\n        }\n    ],\n    \"VariatesOn\": 34,\n    \"VariatesOnName\": \"Taglie e colori\",\n    \"VariationFather\": null,\n    \"Combinations\": null,\n    \"CombinatesOn\": 0,\n    \"CombinationFather\": null,\n    \"Identifiers\": [],\n    \"FBAInfo\": null,\n    \"FiscalInformations\": null,\n    \"Exclusions\": null,\n    \"Links\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": null,\n    \"VariationFatherId\": null,\n    \"CombinationFatherId\": null,\n    \"SupplierCustomerId\": null,\n    \"HSCode\": null,\n    \"InventoryReference\": null,\n    \"idCountryOfOrigin\": null,\n    \"IsDangerousGood\": false,\n    \"Distributors\": null,\n    \"Bundles\": null\n}"},{"id":"a662039d-ae77-4d71-9b6a-2e4d0de04110","name":"Update - FBA logistics","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"FBAInfo\": {\n        \"IsFBA\": true,                          //Indica se è in FBA\n        \"BatteriesRequired\": true,             //Richiede l'uso di batterie\n        \"BatteriesInclusionMode\": \"batteries_packed_with_equipment\",       //Le batterie sono incluse? (batteries_only, batteries_contained_in_equipment, batteries_packed_with_equipment, batteries_not_included)\n        \"BatteriesComposition\": null,          //Composizione batteria\n        \"BatteriesType\": null,                 //Tipologia batteria\n        \"BatteriesCount\": null,                //Numero di batterie\n        \"BatteriesWeight\": null,               //Peso totale batterie\n        \"BatteriesNumberOfCells\": null,        //Numero di celle (se litio)\n        \"BatteriesEnergyContent\": null,           //Wattora per batteria (se litio)\n        \"BatteriesLitiumBatteryWeight\": null,  //Contenuto di litio (grammi)\n        \"SafetyDataSheetURL\": null,            //URL scheda di dati di sicurezza (SDS)\n        \"FlashPoint\": null,                    //Punto di infiammabilità (°C)\n        \"UNNumber\": null,                      //Numero ONU\n        \"GHSPictograms\": null,                 //Pittogrammi GHS (compressed_gas, corrosive, environmentally_damaging, explosive, flammable, health_hazard, irritant, oxidizing, toxic, amzn_specific_no_label_with_warning)\n        \"GHZStorage\": false,                   //Prodotto rischioso \"Archiviazione\"\n        \"GHZWaste\": false,                     //Prodotto rischioso \"Rifiuti\"\n        \"GHZTransportation\": false,            //Prodotto rischioso \"Trasporto\"\n        \"GHZGHS\": false,                       //Prodotto rischioso \"GHS\"\n        \"GHZOther\": false                      //Prodotto rischioso \"Altro\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 26 Feb 2024 09:56:28 GMT"},{"key":"Content-Length","value":"1677"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 124,\n    \"ItemGuid\": \"573b5db9-abb3-4c72-ac7a-72c8bc784f5a\",\n    \"InternalName\": \"TEST\",\n    \"SKU\": \"B1530176\",\n    \"Disabled\": false,\n    \"Manufacturer\": \"Test manufaturer\",\n    \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n    \"UpdatedOn\": \"2024-02-26T09:56:27.967Z\",\n    \"Folder\": null,\n    \"Attributes\": null,\n    \"Descriptions\": null,\n    \"PricingRows\": null,\n    \"Measures\": null,\n    \"ItemImages\": null,\n    \"Availabilities\": null,\n    \"Condition\": null,\n    \"ConditionNotes\": null,\n    \"Variations\": null,\n    \"VariatesOn\": 0,\n    \"VariatesOnName\": \"\",\n    \"VariationFather\": null,\n    \"Combinations\": null,\n    \"CombinatesOn\": 39,\n    \"CombinationFather\": null,\n    \"Identifiers\": null,\n    \"FBAInfo\": {\n        \"idItem\": 124,\n        \"IsFBA\": true,\n        \"BatteriesRequired\": true,\n        \"BatteriesInclusionMode\": \"batteries_packed_with_equipment\",\n        \"BatteriesComposition\": null,\n        \"BatteriesType\": null,\n        \"BatteriesCount\": null,\n        \"BatteriesWeight\": null,\n        \"BatteriesNumberOfCells\": null,\n        \"BatteriesEnergyContent\": null,\n        \"BatteriesLitiumBatteryWeight\": null,\n        \"DGHZRegulations\": null,\n        \"SafetyDataSheetURL\": null,\n        \"FlashPoint\": null,\n        \"UNNumber\": null,\n        \"GHSPictograms\": null,\n        \"IsRiskyProduct\": false,\n        \"GHZStorage\": false,\n        \"GHZWaste\": false,\n        \"GHZTransportation\": false,\n        \"GHZGHS\": false,\n        \"GHZOther\": false,\n        \"PictogramCompressedGas\": false,\n        \"PictogramCorrosive\": false,\n        \"PictogramEnvironmentallyDamaging\": false,\n        \"PictogramExplosive\": false,\n        \"PictogramFlammable\": false,\n        \"PictogramHealthHazard\": false,\n        \"PictogramIrritant\": false,\n        \"PictogramOxidizing\": false,\n        \"PictogramToxic\": false,\n        \"PictogramNoLabel\": false\n    },\n    \"FiscalInformations\": null,\n    \"Exclusions\": null,\n    \"Links\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": 2,\n    \"VariationFatherId\": null,\n    \"CombinationFatherId\": null,\n    \"SupplierCustomerId\": null,\n    \"HSCode\": \"Test HS Code\",\n    \"InventoryReference\": \"INVREF\",\n    \"idCountryOfOrigin\": 108,\n    \"IsDangerousGood\": false,\n    \"Distributors\": null,\n    \"Bundles\": null\n}"},{"id":"dd382646-3073-4994-a2d1-1467b5ddc219","name":"Update - fiscal informations","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"FiscalInformations\": {     //Contenitore informazioni fiscali\n        \"B2C\": { \"Id\": 3870 },     //ID classe fiscale B2C\n        \"B2B\": { \"Id\": 4 }      //ID classe fiscale B2B\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 26 Feb 2024 09:57:22 GMT"},{"key":"Content-Length","value":"952"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 124,\n    \"ItemGuid\": \"573b5db9-abb3-4c72-ac7a-72c8bc784f5a\",\n    \"InternalName\": \"TEST\",\n    \"SKU\": \"B1530176\",\n    \"Disabled\": false,\n    \"Manufacturer\": \"Test manufaturer\",\n    \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n    \"UpdatedOn\": \"2024-02-26T09:57:21.363Z\",\n    \"Folder\": null,\n    \"Attributes\": null,\n    \"Descriptions\": null,\n    \"PricingRows\": null,\n    \"Measures\": null,\n    \"ItemImages\": null,\n    \"Availabilities\": null,\n    \"Condition\": null,\n    \"ConditionNotes\": null,\n    \"Variations\": null,\n    \"VariatesOn\": 0,\n    \"VariatesOnName\": \"\",\n    \"VariationFather\": null,\n    \"Combinations\": null,\n    \"CombinatesOn\": 39,\n    \"CombinationFather\": null,\n    \"Identifiers\": null,\n    \"FBAInfo\": null,\n    \"FiscalInformations\": {\n        \"IdItem\": 124,\n        \"B2C\": {\n            \"Id\": 3870,\n            \"Disabled\": false\n        },\n        \"B2B\": {\n            \"Id\": 4,\n            \"Disabled\": false\n        }\n    },\n    \"Exclusions\": null,\n    \"Links\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": 2,\n    \"VariationFatherId\": null,\n    \"CombinationFatherId\": null,\n    \"SupplierCustomerId\": null,\n    \"HSCode\": \"Test HS Code\",\n    \"InventoryReference\": \"INVREF\",\n    \"idCountryOfOrigin\": 108,\n    \"IsDangerousGood\": false,\n    \"Distributors\": null,\n    \"Bundles\": null\n}"},{"id":"2ce8dba3-eacb-4db9-98cf-178a22ef175e","name":"Update - exclusions","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Exclusions\": [     //Contenitore esclusioni\n        {\n            \"idModule\": 4,\n            \"idSubmodule\": \"France\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 26 Feb 2024 09:57:52 GMT"},{"key":"Content-Length","value":"979"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 124,\n    \"ItemGuid\": \"573b5db9-abb3-4c72-ac7a-72c8bc784f5a\",\n    \"InternalName\": \"TEST\",\n    \"SKU\": \"B1530176\",\n    \"Disabled\": false,\n    \"Manufacturer\": \"Test manufaturer\",\n    \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n    \"UpdatedOn\": \"2024-02-26T09:57:51.177Z\",\n    \"Folder\": null,\n    \"Attributes\": null,\n    \"Descriptions\": null,\n    \"PricingRows\": null,\n    \"Measures\": null,\n    \"ItemImages\": null,\n    \"Availabilities\": null,\n    \"Condition\": null,\n    \"ConditionNotes\": null,\n    \"Variations\": null,\n    \"VariatesOn\": 0,\n    \"VariatesOnName\": \"\",\n    \"VariationFather\": null,\n    \"Combinations\": null,\n    \"CombinatesOn\": 39,\n    \"CombinationFather\": null,\n    \"Identifiers\": null,\n    \"FBAInfo\": null,\n    \"FiscalInformations\": null,\n    \"Exclusions\": [\n        {\n            \"idExclusion\": 189,\n            \"idItem\": 124,\n            \"idModule\": 4,\n            \"idSubmodule\": \"France\",\n            \"CreatedOn\": \"2024-02-26T09:57:51.24Z\"\n        }\n    ],\n    \"Links\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": 2,\n    \"VariationFatherId\": null,\n    \"CombinationFatherId\": null,\n    \"SupplierCustomerId\": null,\n    \"HSCode\": \"Test HS Code\",\n    \"InventoryReference\": \"INVREF\",\n    \"idCountryOfOrigin\": 108,\n    \"IsDangerousGood\": false,\n    \"Distributors\": null,\n    \"Bundles\": null\n}"},{"id":"dff72ec7-b1d6-4ff9-a977-6ff0f58814c7","name":"Update - purchase prices","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Distributors\": [     //Contenitore fornitori\n        {\n            \"idDistributor\": 1,         //ID fornitore\n            \"IsDefault\": true,          //Fornitore predefinito per questo prodotto\n            \"PurchasePrice\": 15.00      //Prezzo d'acquisto\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 26 Feb 2024 11:55:07 GMT"},{"key":"Content-Length","value":"961"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 124,\n    \"ItemGuid\": \"573b5db9-abb3-4c72-ac7a-72c8bc784f5a\",\n    \"InternalName\": \"TEST\",\n    \"SKU\": \"B1530176\",\n    \"Disabled\": false,\n    \"Manufacturer\": \"Test manufaturer\",\n    \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n    \"UpdatedOn\": \"2024-02-26T11:54:28.647Z\",\n    \"Folder\": null,\n    \"Attributes\": null,\n    \"Descriptions\": null,\n    \"PricingRows\": null,\n    \"Measures\": null,\n    \"ItemImages\": null,\n    \"Availabilities\": null,\n    \"Condition\": null,\n    \"ConditionNotes\": null,\n    \"Variations\": null,\n    \"VariatesOn\": 0,\n    \"VariatesOnName\": \"\",\n    \"VariationFather\": null,\n    \"Combinations\": null,\n    \"CombinatesOn\": 39,\n    \"CombinationFather\": null,\n    \"Identifiers\": null,\n    \"FBAInfo\": null,\n    \"FiscalInformations\": null,\n    \"Exclusions\": null,\n    \"Links\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": 2,\n    \"VariationFatherId\": null,\n    \"CombinationFatherId\": null,\n    \"SupplierCustomerId\": null,\n    \"HSCode\": \"Test HS Code\",\n    \"InventoryReference\": \"INVREF\",\n    \"idCountryOfOrigin\": 108,\n    \"IsDangerousGood\": false,\n    \"Distributors\": [\n        {\n            \"idItem\": 124,\n            \"idDistributor\": 1,\n            \"IsDefault\": true,\n            \"PurchasePrice\": 15,\n            \"Currency\": \"EUR\"\n        }\n    ],\n    \"Bundles\": null\n}"},{"id":"dbdf4267-d5c4-4d20-865b-30b3fd673746","name":"Update - bundles","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Bundles\": [                                //Componenti del prodotto. Questo prodotto è formato da 1 pezzo del prodotto 128 e 2 pezzi del prodotto 129\n        {\n            \"idBundledItem\": 128,             //ID del prodotto\n            \"Quantity\": 1,                      //Quantità\n            \"ReverseStockComputation\": true     //Scarica la quantità se viene venduto il bundle\n        },\n        {\n            \"idBundledItem\": 129,\n            \"Quantity\": 2,\n            \"ReverseStockComputation\": true\n        },\n        {\n            \"idBundledItem\": 130,\n            \"Quantity\": 1,\n            \"ReverseStockComputation\": true\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 26 Feb 2024 10:00:07 GMT"},{"key":"Content-Length","value":"1215"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 26225,\n    \"ItemGuid\": \"d55bbad4-3c4f-4744-992a-3ea2dff33d2d\",\n    \"InternalName\": \"TEST\",\n    \"SKU\": \"SKU_DI_TEST_2024_z\",\n    \"Disabled\": false,\n    \"Manufacturer\": null,\n    \"CreatedOn\": \"2024-02-16T15:02:26.5Z\",\n    \"UpdatedOn\": \"2024-02-26T10:00:04.417Z\",\n    \"Folder\": null,\n    \"Attributes\": null,\n    \"Descriptions\": null,\n    \"PricingRows\": null,\n    \"Measures\": null,\n    \"ItemImages\": null,\n    \"Availabilities\": [\n        {\n            \"Quantity\": 0,\n            \"StorageIdStorage\": 3,\n            \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\",\n            \"ItemId\": 26225\n        }\n    ],\n    \"Condition\": null,\n    \"ConditionNotes\": null,\n    \"Variations\": null,\n    \"VariatesOn\": 0,\n    \"VariatesOnName\": \"\",\n    \"VariationFather\": null,\n    \"Combinations\": null,\n    \"CombinatesOn\": 0,\n    \"CombinationFather\": null,\n    \"Identifiers\": null,\n    \"FBAInfo\": null,\n    \"FiscalInformations\": null,\n    \"Exclusions\": null,\n    \"Links\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": null,\n    \"VariationFatherId\": null,\n    \"CombinationFatherId\": null,\n    \"SupplierCustomerId\": null,\n    \"HSCode\": null,\n    \"InventoryReference\": null,\n    \"idCountryOfOrigin\": null,\n    \"IsDangerousGood\": false,\n    \"Distributors\": null,\n    \"Bundles\": [\n        {\n            \"idItem\": 26225,\n            \"idBundledItem\": 128,\n            \"Quantity\": 1,\n            \"ReverseStockComputation\": true\n        },\n        {\n            \"idItem\": 26225,\n            \"idBundledItem\": 129,\n            \"Quantity\": 2,\n            \"ReverseStockComputation\": true\n        },\n        {\n            \"idItem\": 26225,\n            \"idBundledItem\": 130,\n            \"Quantity\": 1,\n            \"ReverseStockComputation\": true\n        }\n    ]\n}"}],"_postman_id":"4525e6c8-ecf5-0ec3-eafb-9de9d0c3313b"},{"name":"Patch","id":"805d0ad3-35c9-4a07-bf60-3620fedc9625","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CombinatesOn\": 75,\r\n    \"Combinations\": [\r\n        {\r\n            \"CombinationValues\": {\r\n                \"254\": \"test 3\"\r\n            }\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}","description":"<p>Modify a product without changing the information not passed. The information passed is added (if it does not exist) or changed (if it does exist).</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["products","{{idItem}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"23bb9ad2-d6eb-4e71-ada6-6bc645a65f85","name":"Patch - descriptions","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Descriptions\":             //Contenitore delle descrizioni\r\n    [\r\n        {\r\n            \"CultureName\": \"it\",                //Cultura\r\n            \"DescriptionTypeId\": 1,             //Tipo di descrizione\r\n            \"Description\": \"nome in italiano\"   //Valore testuale\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 27 Feb 2024 10:28:36 GMT"},{"key":"Content-Length","value":"1222"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 124,\n    \"ItemGuid\": \"573b5db9-abb3-4c72-ac7a-72c8bc784f5a\",\n    \"InternalName\": \"TEST\",\n    \"SKU\": \"B1530176\",\n    \"Disabled\": false,\n    \"Manufacturer\": \"Test manufaturer\",\n    \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n    \"UpdatedOn\": \"2024-02-27T10:28:35.6Z\",\n    \"Folder\": null,\n    \"Attributes\": null,\n    \"Descriptions\": [\n        {\n            \"CultureName\": \"it\",\n            \"DescriptionTypeId\": 1,\n            \"Description\": \"nome in italiano\",\n            \"DescriptionData\": {\n                \"#cdata-section\": \"nome in italiano\"\n            },\n            \"Modules\": null,\n            \"ItemId\": 124,\n            \"idDescription\": null\n        },\n        {\n            \"CultureName\": \"it\",\n            \"DescriptionTypeId\": 3,\n            \"Description\": \"descrizione\",\n            \"DescriptionData\": {\n                \"#cdata-section\": \"descrizione\"\n            },\n            \"Modules\": null,\n            \"ItemId\": 124,\n            \"idDescription\": null\n        }\n    ],\n    \"PricingRows\": null,\n    \"Measures\": null,\n    \"ItemImages\": null,\n    \"Availabilities\": null,\n    \"Condition\": null,\n    \"ConditionNotes\": null,\n    \"Variations\": null,\n    \"VariatesOn\": 0,\n    \"VariatesOnName\": \"\",\n    \"VariationFather\": null,\n    \"Combinations\": null,\n    \"CombinatesOn\": 39,\n    \"CombinationFather\": null,\n    \"Identifiers\": null,\n    \"FBAInfo\": null,\n    \"FiscalInformations\": null,\n    \"Exclusions\": null,\n    \"Links\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": 2,\n    \"VariationFatherId\": null,\n    \"CombinationFatherId\": null,\n    \"SupplierCustomerId\": null,\n    \"HSCode\": \"Test HS Code\",\n    \"InventoryReference\": \"INVREF\",\n    \"idCountryOfOrigin\": 108,\n    \"IsDangerousGood\": false,\n    \"Distributors\": null,\n    \"Bundles\": null\n}"},{"id":"305f823a-6f5c-43ff-9c1d-1763da8b85e9","name":"Patch - prices","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n    \"PricingRows\":                                  //Contenitore dei prezzi\r\n    [\r\n        {\r\n            \"Price\": 29.99,\r\n            \"Discount\": 10,                         //Sconto\r\n            \"DiscountTypeIdDiscountType\": 2,        //Tipo sconto (1 = fisso, 2 = percentuale)\r\n            \"PriceListIdPricing\": 2\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 27 Feb 2024 10:29:12 GMT"},{"key":"Content-Length","value":"1569"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 124,\n    \"ItemGuid\": \"573b5db9-abb3-4c72-ac7a-72c8bc784f5a\",\n    \"InternalName\": \"TEST\",\n    \"SKU\": \"B1530176\",\n    \"Disabled\": false,\n    \"Manufacturer\": \"Test manufaturer\",\n    \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n    \"UpdatedOn\": \"2024-02-27T10:29:11.46Z\",\n    \"Folder\": null,\n    \"Attributes\": null,\n    \"Descriptions\": null,\n    \"PricingRows\": [\n        {\n            \"Price\": 49.99,\n            \"Discount\": 10,\n            \"DiscountTypeIdDiscountType\": 2,\n            \"PriceListIdPricing\": 1,\n            \"PriceListName\": \"Listino predefinito\",\n            \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n            \"PriceListIsDiscountEnabled\": true,\n            \"PriceListIsSync\": true,\n            \"RealPrice\": 44.99,\n            \"IsDiscountedPrice\": true,\n            \"ItemId\": 124,\n            \"CreatedOn\": \"2023-11-20T11:53:31.8Z\",\n            \"UpdatedOn\": \"2024-02-26T09:41:10.887Z\"\n        },\n        {\n            \"Price\": 29.99,\n            \"Discount\": 10,\n            \"DiscountTypeIdDiscountType\": 2,\n            \"PriceListIdPricing\": 2,\n            \"PriceListName\": \"Wish\",\n            \"PriceListBaseCurrencyAbbreviation\": \"EUR\",\n            \"PriceListIsDiscountEnabled\": false,\n            \"PriceListIsSync\": true,\n            \"RealPrice\": 29.99,\n            \"IsDiscountedPrice\": false,\n            \"ItemId\": 124,\n            \"CreatedOn\": \"2024-02-23T17:51:42.047Z\",\n            \"UpdatedOn\": \"2024-02-27T10:29:11.49Z\"\n        }\n    ],\n    \"Measures\": null,\n    \"ItemImages\": null,\n    \"Availabilities\": null,\n    \"Condition\": null,\n    \"ConditionNotes\": null,\n    \"Variations\": null,\n    \"VariatesOn\": 0,\n    \"VariatesOnName\": \"\",\n    \"VariationFather\": null,\n    \"Combinations\": null,\n    \"CombinatesOn\": 39,\n    \"CombinationFather\": null,\n    \"Identifiers\": null,\n    \"FBAInfo\": null,\n    \"FiscalInformations\": null,\n    \"Exclusions\": null,\n    \"Links\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": 2,\n    \"VariationFatherId\": null,\n    \"CombinationFatherId\": null,\n    \"SupplierCustomerId\": null,\n    \"HSCode\": \"Test HS Code\",\n    \"InventoryReference\": \"INVREF\",\n    \"idCountryOfOrigin\": 108,\n    \"IsDangerousGood\": false,\n    \"Distributors\": null,\n    \"Bundles\": null\n}"},{"id":"c860d3f5-6755-4c38-aa79-ca75c9fe489c","name":"Patch - measures","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Measures\":                                     //Contenitore delle misure\r\n    [\r\n        {\r\n            \"UnitOfMeasureIdUnitOfMeasure\": 32,     //ID unità di misura\r\n            \"Name\": \"NormalMeasureWidth\",           //Tipo di misura\r\n            \"Value\": 5                             //Valore della misura\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 27 Feb 2024 10:29:46 GMT"},{"key":"Content-Length","value":"1497"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 124,\n    \"ItemGuid\": \"573b5db9-abb3-4c72-ac7a-72c8bc784f5a\",\n    \"InternalName\": \"TEST\",\n    \"SKU\": \"B1530176\",\n    \"Disabled\": false,\n    \"Manufacturer\": \"Test manufaturer\",\n    \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n    \"UpdatedOn\": \"2024-02-27T10:29:46.007Z\",\n    \"Folder\": null,\n    \"Attributes\": null,\n    \"Descriptions\": null,\n    \"PricingRows\": null,\n    \"Measures\": [\n        {\n            \"UnitOfMeasureIdUnitOfMeasure\": 32,\n            \"UnitOfMeasureName\": \"centimetri\",\n            \"UnitOfMeasureAbbreviation\": \"cm\",\n            \"Name\": \"NormalMeasureHeight\",\n            \"Value\": 20,\n            \"ItemId\": 124\n        },\n        {\n            \"UnitOfMeasureIdUnitOfMeasure\": 32,\n            \"UnitOfMeasureName\": \"centimetri\",\n            \"UnitOfMeasureAbbreviation\": \"cm\",\n            \"Name\": \"NormalMeasureLenght\",\n            \"Value\": 30,\n            \"ItemId\": 124\n        },\n        {\n            \"UnitOfMeasureIdUnitOfMeasure\": 32,\n            \"UnitOfMeasureName\": \"centimetri\",\n            \"UnitOfMeasureAbbreviation\": \"cm\",\n            \"Name\": \"NormalMeasureWeight\",\n            \"Value\": 2,\n            \"ItemId\": 124\n        },\n        {\n            \"UnitOfMeasureIdUnitOfMeasure\": 32,\n            \"UnitOfMeasureName\": \"centimetri\",\n            \"UnitOfMeasureAbbreviation\": \"cm\",\n            \"Name\": \"NormalMeasureWidth\",\n            \"Value\": 5,\n            \"ItemId\": 124\n        }\n    ],\n    \"ItemImages\": null,\n    \"Availabilities\": null,\n    \"Condition\": null,\n    \"ConditionNotes\": null,\n    \"Variations\": null,\n    \"VariatesOn\": 0,\n    \"VariatesOnName\": \"\",\n    \"VariationFather\": null,\n    \"Combinations\": null,\n    \"CombinatesOn\": 39,\n    \"CombinationFather\": null,\n    \"Identifiers\": null,\n    \"FBAInfo\": null,\n    \"FiscalInformations\": null,\n    \"Exclusions\": null,\n    \"Links\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": 2,\n    \"VariationFatherId\": null,\n    \"CombinationFatherId\": null,\n    \"SupplierCustomerId\": null,\n    \"HSCode\": \"Test HS Code\",\n    \"InventoryReference\": \"INVREF\",\n    \"idCountryOfOrigin\": 108,\n    \"IsDangerousGood\": false,\n    \"Distributors\": null,\n    \"Bundles\": null\n}"},{"id":"7f136895-f5aa-44c0-b0c9-aa147482df3a","name":"Patch - images","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n    \"ItemImages\":                                     //Contenitore delle immagini\r\n    [\r\n        {\r\n            \"ImagesPath\": \"https://fakeimg.pl/600x600\",\r\n            \"OrderIndex\": \"2\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 27 Feb 2024 10:30:21 GMT"},{"key":"Content-Length","value":"1738"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 124,\n    \"ItemGuid\": \"573b5db9-abb3-4c72-ac7a-72c8bc784f5a\",\n    \"InternalName\": \"TEST\",\n    \"SKU\": \"B1530176\",\n    \"Disabled\": false,\n    \"Manufacturer\": \"Test manufaturer\",\n    \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n    \"UpdatedOn\": \"2024-02-27T10:30:20.96Z\",\n    \"Folder\": null,\n    \"Attributes\": null,\n    \"Descriptions\": null,\n    \"PricingRows\": null,\n    \"Measures\": null,\n    \"ItemImages\": [\n        {\n            \"idItemImage\": 45548612,\n            \"ImagesPath\": \"https://fakeimg.pl/500x500\",\n            \"ImagesCreatedOn\": \"2024-02-26T08:54:32.013Z\",\n            \"ImagesIsLocallyHosted\": false,\n            \"OrderIndex\": 1,\n            \"FullImagePath\": null,\n            \"IsDynamicBox\": false,\n            \"FullImagePathEncoded\": null,\n            \"ItemId\": 124,\n            \"ImagesIdImage\": 24012,\n            \"idImage\": null,\n            \"idModule\": null\n        },\n        {\n            \"idItemImage\": 45548613,\n            \"ImagesPath\": \"https://fakeimg.pl/600x600\",\n            \"ImagesCreatedOn\": \"2024-02-26T08:54:32.013Z\",\n            \"ImagesIsLocallyHosted\": false,\n            \"OrderIndex\": 2,\n            \"FullImagePath\": null,\n            \"IsDynamicBox\": false,\n            \"FullImagePathEncoded\": null,\n            \"ItemId\": 124,\n            \"ImagesIdImage\": 24013,\n            \"idImage\": null,\n            \"idModule\": null\n        },\n        {\n            \"idItemImage\": 0,\n            \"ImagesPath\": \"https://fakeimg.pl/600x600\",\n            \"ImagesCreatedOn\": \"2024-02-26T08:54:31.563Z\",\n            \"ImagesIsLocallyHosted\": false,\n            \"OrderIndex\": 0,\n            \"FullImagePath\": null,\n            \"IsDynamicBox\": false,\n            \"FullImagePathEncoded\": null,\n            \"ItemId\": 124,\n            \"ImagesIdImage\": 0,\n            \"idImage\": 167530,\n            \"idModule\": 4\n        }\n    ],\n    \"Availabilities\": null,\n    \"Condition\": null,\n    \"ConditionNotes\": null,\n    \"Variations\": null,\n    \"VariatesOn\": 0,\n    \"VariatesOnName\": \"\",\n    \"VariationFather\": null,\n    \"Combinations\": null,\n    \"CombinatesOn\": 39,\n    \"CombinationFather\": null,\n    \"Identifiers\": null,\n    \"FBAInfo\": null,\n    \"FiscalInformations\": null,\n    \"Exclusions\": null,\n    \"Links\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": 2,\n    \"VariationFatherId\": null,\n    \"CombinationFatherId\": null,\n    \"SupplierCustomerId\": null,\n    \"HSCode\": \"Test HS Code\",\n    \"InventoryReference\": \"INVREF\",\n    \"idCountryOfOrigin\": 108,\n    \"IsDangerousGood\": false,\n    \"Distributors\": null,\n    \"Bundles\": null\n}"},{"id":"ef4e6fce-eb82-43b6-b41b-dc342af8c707","name":"Patch - availabilities","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Availabilities\":                                     //Contenitore delle disponibilità\r\n    [\r\n        {\r\n            \"StorageIdStorage\": 3,                        //ID del magazzino\r\n            \"Quantity\": 1                                 //Quantità\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 27 Feb 2024 10:31:42 GMT"},{"key":"Content-Length","value":"1069"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 124,\n    \"ItemGuid\": \"573b5db9-abb3-4c72-ac7a-72c8bc784f5a\",\n    \"InternalName\": \"TEST\",\n    \"SKU\": \"B1530176\",\n    \"Disabled\": false,\n    \"Manufacturer\": \"Test manufaturer\",\n    \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n    \"UpdatedOn\": \"2024-02-27T10:31:39.573Z\",\n    \"Folder\": null,\n    \"Attributes\": null,\n    \"Descriptions\": null,\n    \"PricingRows\": null,\n    \"Measures\": null,\n    \"ItemImages\": null,\n    \"Availabilities\": [\n        {\n            \"Quantity\": 1,\n            \"StorageIdStorage\": 3,\n            \"StorageDescription\": \"eDock.ProdottiVendite.Storages.3\",\n            \"ItemId\": 124\n        },\n        {\n            \"Quantity\": 2,\n            \"StorageIdStorage\": 19,\n            \"StorageDescription\": \"Magazzino Test\",\n            \"ItemId\": 124\n        }\n    ],\n    \"Condition\": null,\n    \"ConditionNotes\": null,\n    \"Variations\": null,\n    \"VariatesOn\": 0,\n    \"VariatesOnName\": \"\",\n    \"VariationFather\": null,\n    \"Combinations\": null,\n    \"CombinatesOn\": 39,\n    \"CombinationFather\": null,\n    \"Identifiers\": null,\n    \"FBAInfo\": null,\n    \"FiscalInformations\": null,\n    \"Exclusions\": null,\n    \"Links\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": 2,\n    \"VariationFatherId\": null,\n    \"CombinationFatherId\": null,\n    \"SupplierCustomerId\": null,\n    \"HSCode\": \"Test HS Code\",\n    \"InventoryReference\": \"INVREF\",\n    \"idCountryOfOrigin\": 108,\n    \"IsDangerousGood\": false,\n    \"Distributors\": null,\n    \"Bundles\": null\n}"},{"id":"87b4b114-9b89-418b-b745-3635a3af8556","name":"Patch - conditions","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n    \"ConditionNotes\":                       //Contenitore note sulla condizione\r\n    [\r\n        {\r\n            \"CultureName\": \"en\",\r\n            \"Description\": \"bad scrathches\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 27 Feb 2024 10:32:53 GMT"},{"key":"Content-Length","value":"1053"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 124,\n    \"ItemGuid\": \"573b5db9-abb3-4c72-ac7a-72c8bc784f5a\",\n    \"InternalName\": \"TEST\",\n    \"SKU\": \"B1530176\",\n    \"Disabled\": false,\n    \"Manufacturer\": \"Test manufaturer\",\n    \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n    \"UpdatedOn\": \"2024-02-27T10:32:53.6Z\",\n    \"Folder\": null,\n    \"Attributes\": null,\n    \"Descriptions\": null,\n    \"PricingRows\": null,\n    \"Measures\": null,\n    \"ItemImages\": null,\n    \"Availabilities\": null,\n    \"Condition\": {\n        \"idItem\": 0,\n        \"idItemCondition\": 1,\n        \"Condition\": \"Nuovo\"\n    },\n    \"ConditionNotes\": [\n        {\n            \"CultureName\": \"en\",\n            \"Description\": \"bad scrathches\",\n            \"ItemId\": 124\n        },\n        {\n            \"CultureName\": \"it\",\n            \"Description\": \"Con qualche graffio\",\n            \"ItemId\": 124\n        }\n    ],\n    \"Variations\": null,\n    \"VariatesOn\": 0,\n    \"VariatesOnName\": \"\",\n    \"VariationFather\": null,\n    \"Combinations\": null,\n    \"CombinatesOn\": 39,\n    \"CombinationFather\": null,\n    \"Identifiers\": null,\n    \"FBAInfo\": null,\n    \"FiscalInformations\": null,\n    \"Exclusions\": null,\n    \"Links\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": 2,\n    \"VariationFatherId\": null,\n    \"CombinationFatherId\": null,\n    \"SupplierCustomerId\": null,\n    \"HSCode\": \"Test HS Code\",\n    \"InventoryReference\": \"INVREF\",\n    \"idCountryOfOrigin\": 108,\n    \"IsDangerousGood\": false,\n    \"Distributors\": null,\n    \"Bundles\": null\n}"},{"id":"8fc5ddb8-584e-4951-82fc-c36c047d22a5","name":"Patch - identifiers","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Identifiers\":                      //Contenitore identificatori\r\n    [\r\n        {\r\n            \"idIdentifierType\": 1,      //ID del tipo di identificatore\r\n            \"Value\": \"9999\"      //Valore\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 27 Feb 2024 10:33:39 GMT"},{"key":"Content-Length","value":"1107"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 124,\n    \"ItemGuid\": \"573b5db9-abb3-4c72-ac7a-72c8bc784f5a\",\n    \"InternalName\": \"TEST\",\n    \"SKU\": \"B1530176\",\n    \"Disabled\": false,\n    \"Manufacturer\": \"Test manufaturer\",\n    \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n    \"UpdatedOn\": \"2024-02-27T10:33:39.5Z\",\n    \"Folder\": null,\n    \"Attributes\": null,\n    \"Descriptions\": null,\n    \"PricingRows\": null,\n    \"Measures\": null,\n    \"ItemImages\": null,\n    \"Availabilities\": null,\n    \"Condition\": null,\n    \"ConditionNotes\": null,\n    \"Variations\": null,\n    \"VariatesOn\": 0,\n    \"VariatesOnName\": \"\",\n    \"VariationFather\": null,\n    \"Combinations\": null,\n    \"CombinatesOn\": 39,\n    \"CombinationFather\": null,\n    \"Identifiers\": [\n        {\n            \"idItemIdentifier\": 5145582,\n            \"idItem\": 124,\n            \"idIdentifierType\": 1,\n            \"Value\": \"0000000000000\",\n            \"idModule\": 4,\n            \"SubmoduleName\": \"Italy\"\n        },\n        {\n            \"idItemIdentifier\": 5145253,\n            \"idItem\": 124,\n            \"idIdentifierType\": 1,\n            \"Value\": \"9999\",\n            \"idModule\": null,\n            \"SubmoduleName\": \"\"\n        }\n    ],\n    \"FBAInfo\": null,\n    \"FiscalInformations\": null,\n    \"Exclusions\": null,\n    \"Links\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": 2,\n    \"VariationFatherId\": null,\n    \"CombinationFatherId\": null,\n    \"SupplierCustomerId\": null,\n    \"HSCode\": \"Test HS Code\",\n    \"InventoryReference\": \"INVREF\",\n    \"idCountryOfOrigin\": 108,\n    \"IsDangerousGood\": false,\n    \"Distributors\": null,\n    \"Bundles\": null\n}"},{"id":"2dd12e53-e27f-44e9-8305-e420e88bc902","name":"Patch - attributes","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Attributes\":               //Contenitore degli attributi\r\n    [\r\n        {\r\n            \"AttributesIdItemAttribute\": 53,\r\n            \"Value\": \"New value\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 27 Feb 2024 10:46:23 GMT"},{"key":"Content-Length","value":"1286"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 124,\n    \"ItemGuid\": \"573b5db9-abb3-4c72-ac7a-72c8bc784f5a\",\n    \"InternalName\": \"TEST\",\n    \"SKU\": \"B1530176\",\n    \"Disabled\": false,\n    \"Manufacturer\": \"Test manufaturer\",\n    \"CreatedOn\": \"2018-03-21T10:35:28.147Z\",\n    \"UpdatedOn\": \"2024-02-27T10:46:20.733Z\",\n    \"Folder\": null,\n    \"Attributes\": [\n        {\n            \"AttributesCultureCultureName\": \"en\",\n            \"AttributesIdItemAttribute\": 53,\n            \"AttributesName\": \"Article\",\n            \"Value\": \"New value\",\n            \"AttributesPrimitiveTypeIdPrimitiveType\": 0,\n            \"ToBeShown\": true,\n            \"ItemId\": 124,\n            \"AttributeSetId\": 17\n        },\n        {\n            \"AttributesCultureCultureName\": \"en\",\n            \"AttributesIdItemAttribute\": 54,\n            \"AttributesName\": \"MPN\",\n            \"Value\": \"Updated 2\",\n            \"AttributesPrimitiveTypeIdPrimitiveType\": 0,\n            \"ToBeShown\": true,\n            \"ItemId\": 124,\n            \"AttributeSetId\": 17\n        }\n    ],\n    \"Descriptions\": null,\n    \"PricingRows\": null,\n    \"Measures\": null,\n    \"ItemImages\": null,\n    \"Availabilities\": null,\n    \"Condition\": null,\n    \"ConditionNotes\": null,\n    \"Variations\": null,\n    \"VariatesOn\": 0,\n    \"VariatesOnName\": \"\",\n    \"VariationFather\": null,\n    \"Combinations\": null,\n    \"CombinatesOn\": 39,\n    \"CombinationFather\": null,\n    \"Identifiers\": null,\n    \"FBAInfo\": null,\n    \"FiscalInformations\": null,\n    \"Exclusions\": null,\n    \"Links\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": 2,\n    \"VariationFatherId\": null,\n    \"CombinationFatherId\": null,\n    \"SupplierCustomerId\": null,\n    \"HSCode\": \"Test HS Code\",\n    \"InventoryReference\": \"INVREF\",\n    \"idCountryOfOrigin\": 108,\n    \"IsDangerousGood\": false,\n    \"Distributors\": null,\n    \"Bundles\": null\n}"},{"id":"bc1aeeff-cec9-465a-bcd2-75004436ebeb","name":"Patch - bundles","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Bundles\": [\r\n        {\r\n            \"idBundledItem\": 130,\r\n            \"Quantity\": 3,\r\n            \"ReverseStockComputation\": true\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/products/26225"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 27 Feb 2024 10:53:32 GMT"},{"key":"Content-Length","value":"1108"}],"cookie":[],"responseTime":null,"body":"{\n    \"IdItem\": 26225,\n    \"ItemGuid\": \"d55bbad4-3c4f-4744-992a-3ea2dff33d2d\",\n    \"InternalName\": \"TEST\",\n    \"SKU\": \"SKU_DI_TEST_2024_z\",\n    \"Disabled\": false,\n    \"Manufacturer\": null,\n    \"CreatedOn\": \"2024-02-16T15:02:26.5Z\",\n    \"UpdatedOn\": \"2024-02-27T10:53:30.55Z\",\n    \"Folder\": null,\n    \"Attributes\": null,\n    \"Descriptions\": null,\n    \"PricingRows\": null,\n    \"Measures\": null,\n    \"ItemImages\": null,\n    \"Availabilities\": null,\n    \"Condition\": null,\n    \"ConditionNotes\": null,\n    \"Variations\": null,\n    \"VariatesOn\": 0,\n    \"VariatesOnName\": \"\",\n    \"VariationFather\": null,\n    \"Combinations\": null,\n    \"CombinatesOn\": 0,\n    \"CombinationFather\": null,\n    \"Identifiers\": null,\n    \"FBAInfo\": null,\n    \"FiscalInformations\": null,\n    \"Exclusions\": null,\n    \"Links\": null,\n    \"EAN13\": null,\n    \"FulfilmentDays\": null,\n    \"VariationFatherId\": null,\n    \"CombinationFatherId\": null,\n    \"SupplierCustomerId\": null,\n    \"HSCode\": null,\n    \"InventoryReference\": null,\n    \"idCountryOfOrigin\": null,\n    \"IsDangerousGood\": false,\n    \"Distributors\": null,\n    \"Bundles\": [\n        {\n            \"idItem\": 26225,\n            \"idBundledItem\": 128,\n            \"Quantity\": 1,\n            \"ReverseStockComputation\": true\n        },\n        {\n            \"idItem\": 26225,\n            \"idBundledItem\": 129,\n            \"Quantity\": 2,\n            \"ReverseStockComputation\": true\n        },\n        {\n            \"idItem\": 26225,\n            \"idBundledItem\": 130,\n            \"Quantity\": 3,\n            \"ReverseStockComputation\": true\n        }\n    ]\n}"}],"_postman_id":"805d0ad3-35c9-4a07-bf60-3620fedc9625"},{"name":"Delete","id":"99807e0f-85ea-4cb0-87bc-46ccbb82af91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{endpoint}}/products/{{idItem}}","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["products","{{idItem}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"ac2450c0-e697-471f-bcf3-f6dbc66f21b8","name":"Delete","originalRequest":{"method":"DELETE","header":[],"url":"{{endpoint}}/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Cache-Control","value":"private"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 20 Nov 2023 11:54:12 GMT"}],"cookie":[],"responseTime":null,"body":"OK"}],"_postman_id":"99807e0f-85ea-4cb0-87bc-46ccbb82af91"}],"id":"50787089-e701-a763-3e17-25efb7c76bf1","_postman_id":"50787089-e701-a763-3e17-25efb7c76bf1","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Suppliers","item":[{"name":"Get","id":"c6db5aa6-ec51-4138-995b-5793500aec68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/distributors","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["distributors"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"83d5cad3-c2d0-48b9-8383-d37caff8ef47","name":"Get","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/distributors"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 16 Feb 2024 14:56:45 GMT"},{"key":"Content-Length","value":"132"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"idDistributor\": 1,\n        \"Name\": \"Fornitore generico\",\n        \"CountryId\": 108,\n        \"CurrencyId\": 44,\n        \"CountryISOName\": \"IT\",\n        \"CurrencyAbbreviation\": \"EUR\"\n    }\n]"}],"_postman_id":"c6db5aa6-ec51-4138-995b-5793500aec68"}],"id":"d20172ba-0bd2-4fcb-a0ab-b27862cab098","_postman_id":"d20172ba-0bd2-4fcb-a0ab-b27862cab098","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Files and images","item":[{"name":"Upload public file","id":"39fe5061-f7bf-49ae-9e5b-9f555c3606f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"{{fileName}}","type":"file","src":"/G:/Downloads/001.JPG"}]},"url":"{{endpoint}}/uploads","description":"<p>Carica uno o più file pubblici per l'utente.</p>\n<p>Questa chiamata può essere utile, ad esempio, per caricare immagini da associare, poi, ai prodotti.</p>\n<p><strong>ATTENZIONE</strong>: i file caricati con questo metodo sono pubblicamente visibili da chiunque, senza autenticazione.</p>\n<p>Non caricare file contenenti dati personali, informazioni sensibili o simili. Per quel genere di documento (ad esempio, fatture, ricevute...) utilizzare la chiamata per caricare file privati.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["uploads"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"eb462a9d-7df9-45d8-a742-95e515760bea","name":"Upload public file","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file-name.pdf","type":"file","src":"/C:/Users/Marco/Downloads/invoice (3).pdf"}]},"url":"{{endpoint}}/uploads"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Thu, 09 Mar 2023 15:48:52 GMT"},{"key":"Content-Length","value":"73"}],"cookie":[],"responseTime":null,"body":"[\n     \"https://files.edock.it/private/users/2642/public/file-name.pdf\"\n]"}],"_postman_id":"39fe5061-f7bf-49ae-9e5b-9f555c3606f6"},{"name":"Upload private file","id":"577f4f47-2022-4ac6-be41-8bc08e46e25d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"{{fileName}}","type":"file","src":"/C:/Users/Marco/Downloads/invoice (3).pdf"}]},"url":"{{endpoint}}/uploads/private","description":"<p>Carica uno o più file privati per l'utente.</p>\n<p>Viene restituito l'URL completo per ogni file. Essendo un URL privato, questo percorso è apribile solo presentando un token di autenticazione valido nella intestazione <strong>Authorization</strong>.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["uploads","private"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"a1b2750c-033f-4102-bb07-2d644b20bacd","name":"Upload private file","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file-name.pdf","type":"file","src":"/C:/Users/Marco/Downloads/invoice (3).pdf"}]},"url":"{{endpoint}}/uploads/private"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Thu, 09 Mar 2023 15:48:52 GMT"},{"key":"Content-Length","value":"73"}],"cookie":[],"responseTime":null,"body":"[\n    \"https://files.edock.it/private/users/2642/private/file-name.pdf\"\n]"}],"_postman_id":"577f4f47-2022-4ac6-be41-8bc08e46e25d"},{"name":"Upload Image","id":"ad23db63-7318-4baf-9b6c-b0cb6eeca14d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"multipart/form-data","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","warning":"This file resides outside the working directory. Collaborators might not have the same file path.","src":["/C:/Users/Marco/Downloads/image.jpg","/C:/Users/Marco/Downloads/img_157010.png"]}]},"url":"{{endpoint}}/uploads/image","description":"<p>Con questa chiamata è possibile caricare uno o più file privati sullo spazio MarketRock.<br />Il risultato è un array contenente i percorsi assoluti (URL) dei file, così come generati da MarketRock.</p>\n<p>La chiamata deve essere di tipo \"multipart/form-data\" e contenere un parametro file con i relativi file da caricare.</p>\n<p><strong>Attenzione!</strong> MarketRock NON rinomina i file caricati per cui se un file con lo stesso nome è già presente sull'account MarketRock, questo verrà <strong>sovrascritto</strong>.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["uploads","image"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"406bac67-dc1f-4bdd-9529-b87d5c0d327a","name":"Upload Image","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"multipart/form-data","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","warning":"This file resides outside the working directory. Collaborators might not have the same file path.","src":["/C:/Users/Marco/Downloads/image.jpg","/C:/Users/Marco/Downloads/img_157010.png"]}]},"url":"https://rest.edock.it/api/Images/Upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"223"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 21 May 2019 09:46:02 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    \"https://edock.blob.core.windows.net/edock/edockcore/testing/images/image.jpg\",\n    \"https://edock.blob.core.windows.net/edock/edockcore/testing/images/img_157010.png\",\n    \"https://edock.blob.core.windows.net/edock/edockcore/testing/images/prodotti.jpeg\"\n]"}],"_postman_id":"ad23db63-7318-4baf-9b6c-b0cb6eeca14d"}],"id":"849f2514-b4e6-4c4c-aa50-14d6a506353f","description":"<p>Con questo set di chiamate è possibile caricare dei file <strong>pubblici</strong> (il cui URL può essere quindi aperto da chiuinque, senza autenticazione) o <strong>privati</strong> (il cui URL può essere aperto solo da chi possiede un valido token di autenticazione eDock).</p>\n<ul>\n<li><p><a href=\"https://documenter.getpostman.com/view/235984/edock/719ZDC8#39fe5061-f7bf-49ae-9e5b-9f555c3606f6\">Caricare un file pubblico</a></p>\n</li>\n<li><p><a href=\"https://documenter.getpostman.com/view/235984/edock/719ZDC8#577f4f47-2022-4ac6-be41-8bc08e46e25d\">Caricare un file privato</a></p>\n</li>\n</ul>\n","_postman_id":"849f2514-b4e6-4c4c-aa50-14d6a506353f","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Pricelists","item":[{"name":"Get currencies","id":"e4e8d33d-b12f-364f-20b1-80ff3090615d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{endpoint}}/currency","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["currency"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"83e6399a-e26e-4223-b2b8-835c6e1f9d76","name":"Get all currencies","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{endpoint}}/currency"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"2892"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Tue, 14 May 2024 15:17:32 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"idCurrency\": 2,\n        \"Abbreviation\": \"AFN\",\n        \"Name\": \"Afghani afgano\"\n    },\n    {\n        \"idCurrency\": 88,\n        \"Abbreviation\": \"MGA\",\n        \"Name\": \"Ariary malgascio\"\n    },\n    {\n        \"idCurrency\": 133,\n        \"Abbreviation\": \"THB\",\n        \"Name\": \"Baht thailandese\"\n    },\n    {\n        \"idCurrency\": 107,\n        \"Abbreviation\": \"PAB\",\n        \"Name\": \"Balboa panamense\"\n    },\n    {\n        \"idCurrency\": 43,\n        \"Abbreviation\": \"ETB\",\n        \"Name\": \"Birr etiope\"\n    },\n    {\n        \"idCurrency\": 147,\n        \"Abbreviation\": \"VEB\",\n        \"Name\": \"Bolivar venezuelano\"\n    },\n    {\n        \"idCurrency\": 19,\n        \"Abbreviation\": \"BOB\",\n        \"Name\": \"Boliviano boliviano\"\n    },\n    {\n        \"idCurrency\": 49,\n        \"Abbreviation\": \"GHC\",\n        \"Name\": \"Cedi ghanese\"\n    },\n    {\n        \"idCurrency\": 32,\n        \"Abbreviation\": \"CRC\",\n        \"Name\": \"Colón costaricano\"\n    },\n    {\n        \"idCurrency\": 102,\n        \"Abbreviation\": \"NIO\",\n        \"Name\": \"Cordoba nicaraguense\"\n    },\n    {\n        \"idCurrency\": 35,\n        \"Abbreviation\": \"CZK\",\n        \"Name\": \"Corona ceca\"\n    },\n    {\n        \"idCurrency\": 37,\n        \"Abbreviation\": \"DKK\",\n        \"Name\": \"Corona danese\"\n    },\n    {\n        \"idCurrency\": 40,\n        \"Abbreviation\": \"EEK\",\n        \"Name\": \"Corona estone\"\n    },\n    {\n        \"idCurrency\": 65,\n        \"Abbreviation\": \"ISK\",\n        \"Name\": \"Corona islandese\"\n    },\n    {\n        \"idCurrency\": 103,\n        \"Abbreviation\": \"NOK\",\n        \"Name\": \"Corona norvegese\"\n    },\n    {\n        \"idCurrency\": 124,\n        \"Abbreviation\": \"SEK\",\n        \"Name\": \"Corona svedese\"\n    },\n    {\n        \"idCurrency\": 51,\n        \"Abbreviation\": \"GMD\",\n        \"Name\": \"Dalasi gambese\"\n    },\n    {\n        \"idCurrency\": 39,\n        \"Abbreviation\": \"DZD\",\n        \"Name\": \"Dinaro algerino\"\n    },\n    {\n        \"idCurrency\": 15,\n        \"Abbreviation\": \"BHD\",\n        \"Name\": \"Dinaro del Bahrain\"\n    },\n    {\n        \"idCurrency\": 67,\n        \"Abbreviation\": \"JOD\",\n        \"Name\": \"Dinaro giordano\"\n    },\n    {\n        \"idCurrency\": 63,\n        \"Abbreviation\": \"IQD\",\n        \"Name\": \"Dinaro iracheno\"\n    },\n    {\n        \"idCurrency\": 75,\n        \"Abbreviation\": \"KWD\",\n        \"Name\": \"Dinaro kuwaitiano\"\n    },\n    {\n        \"idCurrency\": 85,\n        \"Abbreviation\": \"LYD\",\n        \"Name\": \"Dinaro libico\"\n    },\n    {\n        \"idCurrency\": 89,\n        \"Abbreviation\": \"MKD\",\n        \"Name\": \"Dinaro macedone\"\n    },\n    {\n        \"idCurrency\": 117,\n        \"Abbreviation\": \"RSD\",\n        \"Name\": \"Dinaro serbo\"\n    },\n    {\n        \"idCurrency\": 136,\n        \"Abbreviation\": \"TND\",\n        \"Name\": \"Dinaro tunisino\"\n    },\n    {\n        \"idCurrency\": 1,\n        \"Abbreviation\": \"AED\",\n        \"Name\": \"Dirham degli Emirati Arabi Uniti\"\n    },\n    {\n        \"idCurrency\": 86,\n        \"Abbreviation\": \"MAD\",\n        \"Name\": \"Dirham marocchino\"\n    },\n    {\n        \"idCurrency\": 130,\n        \"Abbreviation\": \"STD\",\n        \"Name\": \"Dobra di São Tomé e Príncipe\"\n    },\n    {\n        \"idCurrency\": 8,\n        \"Abbreviation\": \"AUD\",\n        \"Name\": \"Dollaro australiano\"\n    },\n    {\n        \"idCurrency\": 26,\n        \"Abbreviation\": \"CAD\",\n        \"Name\": \"Dollaro canadese\"\n    },\n    {\n        \"idCurrency\": 152,\n        \"Abbreviation\": \"XCD\",\n        \"Name\": \"Dollaro dei Caraibi Orientali\"\n    },\n    {\n        \"idCurrency\": 25,\n        \"Abbreviation\": \"BZD\",\n        \"Name\": \"Dollaro del Belize\"\n    },\n    {\n        \"idCurrency\": 18,\n        \"Abbreviation\": \"BND\",\n        \"Name\": \"Dollaro del Brunei\"\n    },\n    {\n        \"idCurrency\": 17,\n        \"Abbreviation\": \"BMD\",\n        \"Name\": \"Dollaro della Bermuda\"\n    },\n    {\n        \"idCurrency\": 54,\n        \"Abbreviation\": \"GYD\",\n        \"Name\": \"Dollaro della Guyana\"\n    },\n    {\n        \"idCurrency\": 21,\n        \"Abbreviation\": \"BSD\",\n        \"Name\": \"Dollaro delle Bahamas\"\n    },\n    {\n        \"idCurrency\": 76,\n        \"Abbreviation\": \"KYD\",\n        \"Name\": \"Dollaro delle Cayman\"\n    },\n    {\n        \"idCurrency\": 45,\n        \"Abbreviation\": \"FJD\",\n        \"Name\": \"Dollaro delle Figi\"\n    },\n    {\n        \"idCurrency\": 121,\n        \"Abbreviation\": \"SBD\",\n        \"Name\": \"Dollaro delle Salomone\"\n    },\n    {\n        \"idCurrency\": 12,\n        \"Abbreviation\": \"BBD\",\n        \"Name\": \"Dollaro di Barbados\"\n    },\n    {\n        \"idCurrency\": 55,\n        \"Abbreviation\": \"HKD\",\n        \"Name\": \"Dollaro di Hong Kong\"\n    },\n    {\n        \"idCurrency\": 125,\n        \"Abbreviation\": \"SGD\",\n        \"Name\": \"Dollaro di Singapore\"\n    },\n    {\n        \"idCurrency\": 139,\n        \"Abbreviation\": \"TTD\",\n        \"Name\": \"Dollaro di Trinidad e Tobago\"\n    },\n    {\n        \"idCurrency\": 66,\n        \"Abbreviation\": \"JMD\",\n        \"Name\": \"Dollaro giamaicano\"\n    },\n    {\n        \"idCurrency\": 81,\n        \"Abbreviation\": \"LRD\",\n        \"Name\": \"Dollaro liberiano\"\n    },\n    {\n        \"idCurrency\": 100,\n        \"Abbreviation\": \"NAD\",\n        \"Name\": \"Dollaro namibiano\"\n    },\n    {\n        \"idCurrency\": 105,\n        \"Abbreviation\": \"NZD\",\n        \"Name\": \"Dollaro neozelandese\"\n    },\n    {\n        \"idCurrency\": 144,\n        \"Abbreviation\": \"USD\",\n        \"Name\": \"Dollaro statunitense\"\n    },\n    {\n        \"idCurrency\": 129,\n        \"Abbreviation\": \"SRD\",\n        \"Name\": \"Dollaro surinamese\"\n    },\n    {\n        \"idCurrency\": 158,\n        \"Abbreviation\": \"ZWL\",\n        \"Name\": \"Dollaro zimbabwiano\"\n    },\n    {\n        \"idCurrency\": 148,\n        \"Abbreviation\": \"VND\",\n        \"Name\": \"Đồng vietnamita\"\n    },\n    {\n        \"idCurrency\": 4,\n        \"Abbreviation\": \"AMD\",\n        \"Name\": \"Dram armeno\"\n    },\n    {\n        \"idCurrency\": 34,\n        \"Abbreviation\": \"CVE\",\n        \"Name\": \"Escudo di Capo Verde\"\n    },\n    {\n        \"idCurrency\": 44,\n        \"Abbreviation\": \"EUR\",\n        \"Name\": \"Euro\"\n    },\n    {\n        \"idCurrency\": 9,\n        \"Abbreviation\": \"AWG\",\n        \"Name\": \"Fiorino arubano\"\n    },\n    {\n        \"idCurrency\": 5,\n        \"Abbreviation\": \"ANG\",\n        \"Name\": \"Fiorino delle Antille olandesi\"\n    },\n    {\n        \"idCurrency\": 59,\n        \"Abbreviation\": \"HUF\",\n        \"Name\": \"Fiorino ungherese\"\n    },\n    {\n        \"idCurrency\": 153,\n        \"Abbreviation\": \"XOF\",\n        \"Name\": \"Franco CFA BCEAO\"\n    },\n    {\n        \"idCurrency\": 151,\n        \"Abbreviation\": \"XAF\",\n        \"Name\": \"Franco CFA BEAC\"\n    },\n    {\n        \"idCurrency\": 154,\n        \"Abbreviation\": \"XPF\",\n        \"Name\": \"Franco CFP\"\n    },\n    {\n        \"idCurrency\": 27,\n        \"Abbreviation\": \"CDF\",\n        \"Name\": \"Franco congolese\"\n    },\n    {\n        \"idCurrency\": 16,\n        \"Abbreviation\": \"BIF\",\n        \"Name\": \"Franco del Burundi\"\n    },\n    {\n        \"idCurrency\": 72,\n        \"Abbreviation\": \"KMF\",\n        \"Name\": \"Franco delle Comore\"\n    },\n    {\n        \"idCurrency\": 36,\n        \"Abbreviation\": \"DJF\",\n        \"Name\": \"Franco gibutiano\"\n    },\n    {\n        \"idCurrency\": 52,\n        \"Abbreviation\": \"GNF\",\n        \"Name\": \"Franco guineano\"\n    },\n    {\n        \"idCurrency\": 119,\n        \"Abbreviation\": \"RWF\",\n        \"Name\": \"Franco ruandese\"\n    },\n    {\n        \"idCurrency\": 28,\n        \"Abbreviation\": \"CHF\",\n        \"Name\": \"Franco svizzero\"\n    },\n    {\n        \"idCurrency\": 58,\n        \"Abbreviation\": \"HTG\",\n        \"Name\": \"Gourde haitiano\"\n    },\n    {\n        \"idCurrency\": 142,\n        \"Abbreviation\": \"UAH\",\n        \"Name\": \"Grivnia ucraina\"\n    },\n    {\n        \"idCurrency\": 113,\n        \"Abbreviation\": \"PYG\",\n        \"Name\": \"Guarani paraguaiano\"\n    },\n    {\n        \"idCurrency\": 109,\n        \"Abbreviation\": \"PGK\",\n        \"Name\": \"Kina papuana\"\n    },\n    {\n        \"idCurrency\": 78,\n        \"Abbreviation\": \"LAK\",\n        \"Name\": \"Kip laotiano\"\n    },\n    {\n        \"idCurrency\": 57,\n        \"Abbreviation\": \"HRK\",\n        \"Name\": \"Kuna croata\"\n    },\n    {\n        \"idCurrency\": 96,\n        \"Abbreviation\": \"MWK\",\n        \"Name\": \"Kwacha malawiano\"\n    },\n    {\n        \"idCurrency\": 157,\n        \"Abbreviation\": \"ZMK\",\n        \"Name\": \"Kwacha zambiano\"\n    },\n    {\n        \"idCurrency\": 6,\n        \"Abbreviation\": \"AOA\",\n        \"Name\": \"Kwanza angolano\"\n    },\n    {\n        \"idCurrency\": 90,\n        \"Abbreviation\": \"MMK\",\n        \"Name\": \"Kyat birmano\"\n    },\n    {\n        \"idCurrency\": 48,\n        \"Abbreviation\": \"GEL\",\n        \"Name\": \"Lari georgiano\"\n    },\n    {\n        \"idCurrency\": 84,\n        \"Abbreviation\": \"LVL\",\n        \"Name\": \"Lats lettone\"\n    },\n    {\n        \"idCurrency\": 3,\n        \"Abbreviation\": \"ALL\",\n        \"Name\": \"Lek albanese\"\n    },\n    {\n        \"idCurrency\": 56,\n        \"Abbreviation\": \"HNL\",\n        \"Name\": \"Lempira honduregna\"\n    },\n    {\n        \"idCurrency\": 127,\n        \"Abbreviation\": \"SLL\",\n        \"Name\": \"Leone della Sierra Leone\"\n    },\n    {\n        \"idCurrency\": 87,\n        \"Abbreviation\": \"MDL\",\n        \"Name\": \"Leu moldavo\"\n    },\n    {\n        \"idCurrency\": 115,\n        \"Abbreviation\": \"ROL\",\n        \"Name\": \"Leu rumeno\"\n    },\n    {\n        \"idCurrency\": 132,\n        \"Abbreviation\": \"SZL\",\n        \"Name\": \"Lilangeni dello Swaziland\"\n    },\n    {\n        \"idCurrency\": 41,\n        \"Abbreviation\": \"EGP\",\n        \"Name\": \"Lira egiziana\"\n    },\n    {\n        \"idCurrency\": 79,\n        \"Abbreviation\": \"LBP\",\n        \"Name\": \"Lira libanese\"\n    },\n    {\n        \"idCurrency\": 131,\n        \"Abbreviation\": \"SYP\",\n        \"Name\": \"Lira siriana\"\n    },\n    {\n        \"idCurrency\": 83,\n        \"Abbreviation\": \"LTL\",\n        \"Name\": \"Lita lituano\"\n    },\n    {\n        \"idCurrency\": 82,\n        \"Abbreviation\": \"LSL\",\n        \"Name\": \"Loti lesothiano\"\n    },\n    {\n        \"idCurrency\": 10,\n        \"Abbreviation\": \"AZN\",\n        \"Name\": \"Manat azero\"\n    },\n    {\n        \"idCurrency\": 135,\n        \"Abbreviation\": \"TMM\",\n        \"Name\": \"Manat turkmeno\"\n    },\n    {\n        \"idCurrency\": 11,\n        \"Abbreviation\": \"BAM\",\n        \"Name\": \"Marco bosniaco\"\n    },\n    {\n        \"idCurrency\": 99,\n        \"Abbreviation\": \"MZN\",\n        \"Name\": \"Metical mozambicano\"\n    },\n    {\n        \"idCurrency\": 101,\n        \"Abbreviation\": \"NGN\",\n        \"Name\": \"Naira nigeriana\"\n    },\n    {\n        \"idCurrency\": 42,\n        \"Abbreviation\": \"ERN\",\n        \"Name\": \"Nakfa eritreo\"\n    },\n    {\n        \"idCurrency\": 22,\n        \"Abbreviation\": \"BTN\",\n        \"Name\": \"Ngultrum del Bhutan\"\n    },\n    {\n        \"idCurrency\": 108,\n        \"Abbreviation\": \"PEN\",\n        \"Name\": \"Nuevo sol peruviano\"\n    },\n    {\n        \"idCurrency\": 138,\n        \"Abbreviation\": \"TRY\",\n        \"Name\": \"Nuova lira turca\"\n    },\n    {\n        \"idCurrency\": 140,\n        \"Abbreviation\": \"TWD\",\n        \"Name\": \"Nuovo dollaro taiwanese\"\n    },\n    {\n        \"idCurrency\": 116,\n        \"Abbreviation\": \"RON\",\n        \"Name\": \"Nuovo leu rumeno\"\n    },\n    {\n        \"idCurrency\": 14,\n        \"Abbreviation\": \"BGN\",\n        \"Name\": \"Nuovo lev bulgaro\"\n    },\n    {\n        \"idCurrency\": 61,\n        \"Abbreviation\": \"ILS\",\n        \"Name\": \"Nuovo shekel israeliano\"\n    },\n    {\n        \"idCurrency\": 93,\n        \"Abbreviation\": \"MRO\",\n        \"Name\": \"Ouguiya mauritana\"\n    },\n    {\n        \"idCurrency\": 137,\n        \"Abbreviation\": \"TOP\",\n        \"Name\": \"Pa'anga tongano\"\n    },\n    {\n        \"idCurrency\": 92,\n        \"Abbreviation\": \"MOP\",\n        \"Name\": \"Pataca di Macao\"\n    },\n    {\n        \"idCurrency\": 7,\n        \"Abbreviation\": \"ARS\",\n        \"Name\": \"Peso argentino\"\n    },\n    {\n        \"idCurrency\": 29,\n        \"Abbreviation\": \"CLP\",\n        \"Name\": \"Peso cileno\"\n    },\n    {\n        \"idCurrency\": 31,\n        \"Abbreviation\": \"COP\",\n        \"Name\": \"Peso colombiano\"\n    },\n    {\n        \"idCurrency\": 33,\n        \"Abbreviation\": \"CUP\",\n        \"Name\": \"Peso cubano\"\n    },\n    {\n        \"idCurrency\": 38,\n        \"Abbreviation\": \"DOP\",\n        \"Name\": \"Peso dominicano\"\n    },\n    {\n        \"idCurrency\": 110,\n        \"Abbreviation\": \"PHP\",\n        \"Name\": \"Peso filippino\"\n    },\n    {\n        \"idCurrency\": 97,\n        \"Abbreviation\": \"MXN\",\n        \"Name\": \"Peso messicano\"\n    },\n    {\n        \"idCurrency\": 145,\n        \"Abbreviation\": \"UYU\",\n        \"Name\": \"Peso uruguaiano\"\n    },\n    {\n        \"idCurrency\": 23,\n        \"Abbreviation\": \"BWP\",\n        \"Name\": \"Pula del Botswana\"\n    },\n    {\n        \"idCurrency\": 53,\n        \"Abbreviation\": \"GTQ\",\n        \"Name\": \"Quetzal guatemalteco\"\n    },\n    {\n        \"idCurrency\": 156,\n        \"Abbreviation\": \"ZAR\",\n        \"Name\": \"Rand sudafricano\"\n    },\n    {\n        \"idCurrency\": 20,\n        \"Abbreviation\": \"BRL\",\n        \"Name\": \"Real brasiliano\"\n    },\n    {\n        \"idCurrency\": 30,\n        \"Abbreviation\": \"CNY\",\n        \"Name\": \"Renminbi cinese\"\n    },\n    {\n        \"idCurrency\": 114,\n        \"Abbreviation\": \"QAR\",\n        \"Name\": \"Rial del Qatar\"\n    },\n    {\n        \"idCurrency\": 106,\n        \"Abbreviation\": \"OMR\",\n        \"Name\": \"Rial dell'Oman\"\n    },\n    {\n        \"idCurrency\": 64,\n        \"Abbreviation\": \"IRR\",\n        \"Name\": \"Rial iraniano\"\n    },\n    {\n        \"idCurrency\": 120,\n        \"Abbreviation\": \"SAR\",\n        \"Name\": \"Rial saudita\"\n    },\n    {\n        \"idCurrency\": 155,\n        \"Abbreviation\": \"YER\",\n        \"Name\": \"Rial yemenita\"\n    },\n    {\n        \"idCurrency\": 71,\n        \"Abbreviation\": \"KHR\",\n        \"Name\": \"Riel cambogiano\"\n    },\n    {\n        \"idCurrency\": 98,\n        \"Abbreviation\": \"MYR\",\n        \"Name\": \"Ringgit malese\"\n    },\n    {\n        \"idCurrency\": 24,\n        \"Abbreviation\": \"BYR\",\n        \"Name\": \"Rublo bielorusso\"\n    },\n    {\n        \"idCurrency\": 118,\n        \"Abbreviation\": \"RUB\",\n        \"Name\": \"Rublo russo\"\n    },\n    {\n        \"idCurrency\": 95,\n        \"Abbreviation\": \"MVR\",\n        \"Name\": \"Rufiyaa delle Maldive\"\n    },\n    {\n        \"idCurrency\": 122,\n        \"Abbreviation\": \"SCR\",\n        \"Name\": \"Rupia delle Seychelles\"\n    },\n    {\n        \"idCurrency\": 62,\n        \"Abbreviation\": \"INR\",\n        \"Name\": \"Rupia indiana\"\n    },\n    {\n        \"idCurrency\": 60,\n        \"Abbreviation\": \"IDR\",\n        \"Name\": \"Rupia indonesiana\"\n    },\n    {\n        \"idCurrency\": 94,\n        \"Abbreviation\": \"MUR\",\n        \"Name\": \"Rupia mauriziana\"\n    },\n    {\n        \"idCurrency\": 104,\n        \"Abbreviation\": \"NPR\",\n        \"Name\": \"Rupia nepalese\"\n    },\n    {\n        \"idCurrency\": 111,\n        \"Abbreviation\": \"PKR\",\n        \"Name\": \"Rupia pakistana\"\n    },\n    {\n        \"idCurrency\": 80,\n        \"Abbreviation\": \"LKR\",\n        \"Name\": \"Rupia singalese\"\n    },\n    {\n        \"idCurrency\": 69,\n        \"Abbreviation\": \"KES\",\n        \"Name\": \"Scellino keniota\"\n    },\n    {\n        \"idCurrency\": 128,\n        \"Abbreviation\": \"SOS\",\n        \"Name\": \"Scellino somalo\"\n    },\n    {\n        \"idCurrency\": 141,\n        \"Abbreviation\": \"TZS\",\n        \"Name\": \"Scellino tanzaniano\"\n    },\n    {\n        \"idCurrency\": 143,\n        \"Abbreviation\": \"UGX\",\n        \"Name\": \"Scellino ugandese\"\n    },\n    {\n        \"idCurrency\": 70,\n        \"Abbreviation\": \"KGS\",\n        \"Name\": \"Som kirghizo\"\n    },\n    {\n        \"idCurrency\": 146,\n        \"Abbreviation\": \"UZS\",\n        \"Name\": \"Som uzbeco\"\n    },\n    {\n        \"idCurrency\": 134,\n        \"Abbreviation\": \"TJS\",\n        \"Name\": \"Somoni tagico\"\n    },\n    {\n        \"idCurrency\": 47,\n        \"Abbreviation\": \"GBP\",\n        \"Name\": \"Sterlina britannica\"\n    },\n    {\n        \"idCurrency\": 46,\n        \"Abbreviation\": \"FKP\",\n        \"Name\": \"Sterlina delle Falkland\"\n    },\n    {\n        \"idCurrency\": 50,\n        \"Abbreviation\": \"GIP\",\n        \"Name\": \"Sterlina di Gibilterra\"\n    },\n    {\n        \"idCurrency\": 126,\n        \"Abbreviation\": \"SHP\",\n        \"Name\": \"Sterlina di Sant'Elena\"\n    },\n    {\n        \"idCurrency\": 123,\n        \"Abbreviation\": \"SDG\",\n        \"Name\": \"Sterlina sudanese\"\n    },\n    {\n        \"idCurrency\": 13,\n        \"Abbreviation\": \"BDT\",\n        \"Name\": \"Taka bengalese\"\n    },\n    {\n        \"idCurrency\": 150,\n        \"Abbreviation\": \"WST\",\n        \"Name\": \"Tala samoano\"\n    },\n    {\n        \"idCurrency\": 77,\n        \"Abbreviation\": \"KZT\",\n        \"Name\": \"Tenge kazako\"\n    },\n    {\n        \"idCurrency\": 91,\n        \"Abbreviation\": \"MNT\",\n        \"Name\": \"Tugrik mongolo\"\n    },\n    {\n        \"idCurrency\": 149,\n        \"Abbreviation\": \"VUV\",\n        \"Name\": \"Vatu di Vanuatu\"\n    },\n    {\n        \"idCurrency\": 73,\n        \"Abbreviation\": \"KPW\",\n        \"Name\": \"Won nordcoreano\"\n    },\n    {\n        \"idCurrency\": 74,\n        \"Abbreviation\": \"KRW\",\n        \"Name\": \"Won sudcoreano\"\n    },\n    {\n        \"idCurrency\": 68,\n        \"Abbreviation\": \"JPY\",\n        \"Name\": \"Yen giapponese\"\n    },\n    {\n        \"idCurrency\": 112,\n        \"Abbreviation\": \"PLN\",\n        \"Name\": \"Zloty polacco\"\n    }\n]"}],"_postman_id":"e4e8d33d-b12f-364f-20b1-80ff3090615d"},{"name":"Get all pricelists","id":"5de9b185-917f-44f0-998d-5f620a5b6148","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{endpoint}}/pricelists","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["pricelists"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5de9b185-917f-44f0-998d-5f620a5b6148"},{"name":"Create pricelist","id":"00472718-e1eb-4f55-a11f-0d2ef38f72b1","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"Name\": \"{{PricelistName}}\",\r\n    \"idCurrency\": {{idCurrency}},\r\n    \"isSync\": true,\r\n    \"isDiscountEnabled\": true\r\n}"},"url":"{{endpoint}}/pricelists","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["pricelists"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"90053e6e-749c-40a1-bbf7-7b234db62b16","name":"Create pricelist","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"Name\": \"Pricelist name\",\r\n    \"idCurrency\": 44,\r\n    \"isSync\": true,\r\n    \"isDiscountEnabled\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/pricelists"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"342"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Tue, 14 May 2024 15:19:22 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"Modules\": [],\n    \"CreatedOn\": \"2024-05-14T15:19:22.917Z\",\n    \"idPricing\": 33,\n    \"isAutomaticExchange\": null,\n    \"isDiscountEnabled\": true,\n    \"isSync\": true,\n    \"Name\": \"Pricelist name\",\n    \"BaseCurrencyName\": null,\n    \"BaseCurrencyAbbreviation\": null,\n    \"PricingGuid\": \"46b6b4b1-f86d-4873-a1dd-5af60fdc4fed\",\n    \"UpdatedOn\": null,\n    \"PricingRows\": []\n}"}],"_postman_id":"00472718-e1eb-4f55-a11f-0d2ef38f72b1"},{"name":"Update pricelist","id":"f421274c-5079-4887-bbd6-66e4c8d90e8b","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"idPricing\": {{idPricelist}},\r\n    \"Name\": \"{{PricelistName}}\",\r\n    \"idCurrency\": {{idCurrency}},\r\n    \"isSync\": false,\r\n    \"isDiscountEnabled\": false\r\n}"},"url":"{{endpoint}}/pricelists","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["pricelists"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"3465b99e-f3ff-43ef-8e18-df455e819931","name":"Update pricelist","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"idPricing\": 33,\r\n    \"Name\": \"New pricelist name\",\r\n    \"idCurrency\": 44,\r\n    \"isSync\": false,\r\n    \"isDiscountEnabled\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/pricelists"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"79"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Tue, 14 May 2024 15:20:57 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"Modules\": [],\n    \"CreatedOn\": \"2024-05-14T15:19:22.917Z\",\n    \"idPricing\": 33,\n    \"isAutomaticExchange\": null,\n    \"isDiscountEnabled\": false,\n    \"isSync\": false,\n    \"Name\": \"New pricelist name\",\n    \"BaseCurrencyName\": null,\n    \"BaseCurrencyAbbreviation\": null,\n    \"PricingGuid\": \"46b6b4b1-f86d-4873-a1dd-5af60fdc4fed\",\n    \"UpdatedOn\": null,\n    \"PricingRows\": []\n}"}],"_postman_id":"f421274c-5079-4887-bbd6-66e4c8d90e8b"}],"id":"856bd321-e2e2-8331-0379-b8161e68b355","_postman_id":"856bd321-e2e2-8331-0379-b8161e68b355","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Inventories","item":[{"name":"Get all storages","id":"fab0011e-ba47-4fff-98d8-9bbe645f68c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/storages","description":"<p>Recupera i magazzini attualmente definiti sull'account eDock.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["storages"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"0c6d6a5d-8a11-4f06-8178-9a58af06e073","name":"Get all storages","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/storages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 18 Apr 2023 12:59:31 GMT"},{"key":"Content-Length","value":"439"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"Address\": \"Via Montefeltro n. 6\",\n        \"City\": \"Milano\",\n        \"CountiesAbbreviation\": null,\n        \"Description\": \"Magazzino Predefinito\",\n        \"Fax\": null,\n        \"idStorage\": 3,\n        \"IsSync\": false,\n        \"Telephone1\": \"800219219\",\n        \"Telephone2\": null,\n        \"ZIPCode\": \"20156\",\n        \"Availabilities\": []\n    },\n    {\n        \"Address\": null,\n        \"City\": null,\n        \"CountiesAbbreviation\": null,\n        \"Description\": \"Magazzino Test\",\n        \"Fax\": null,\n        \"idStorage\": 19,\n        \"IsSync\": false,\n        \"Telephone1\": null,\n        \"Telephone2\": null,\n        \"ZIPCode\": null,\n        \"Availabilities\": []\n    }\n]"}],"_postman_id":"fab0011e-ba47-4fff-98d8-9bbe645f68c8"},{"name":"Create storage movement","id":"d741cfa6-3a0d-4b5a-a79e-9749408fef69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"idStorage\": {{idStorage}},\r\n    \"idItem\": {{idItem}},\r\n    \"Quantity\": 1,\r\n    \"MovementType\": 1,\r\n    \"Reason\": \"Cambio magazzino\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/storages/movements/add","description":"<p>Per movimentare il magazzino è possibile procedere in due modi:</p>\n<ol>\n<li>modificando direttamente la quantità del prodotto, con una chiamata di Update. Questo corrisponde all'inserimento di un movimento di <strong>rettifica</strong>, ovvero sovrascrittura della quantità disponibile per quel prodotto in un dato magazzino</li>\n<li>inserendo esplicitamente un movimento che, di conseguenza, determina il ricalcolo della quantità effettivamente disponibile</li>\n</ol>\n<p>Il corpo per la creazione di un movimento di magazzino è composto dai seguenti parametri:</p>\n<ul>\n<li><strong>idStorage</strong>: id del magazzino su cui si vuole effettuare il movimento. Vedere la chiamata \"Get all storages\".</li>\n<li><strong>idItem</strong>: id del prodotto che si vuole movimentare</li>\n<li><strong>Quantity</strong>: quantità che si intende movimentare</li>\n<li><strong>MovementType</strong>: tipo di movimento, si veda paragravo nel seguito</li>\n<li><strong>Reason</strong>: messaggio legato alla movimentazione di magazzino</li>\n</ul>\n<h2 id=\"tipologia-di-movimentazione\">Tipologia di movimentazione</h2>\n<p>Un movimento di magazzino può essere di tre tipi (parametro MovementType):</p>\n<ul>\n<li><strong>Carico</strong> (ID = 1): aggiunge la quantità specificata alla quantità attualmente disponibile. Ad esempio, se carico 1 pezzo per un prodotto nel magazzino predefinito e, attualmente, ne sono presenti 3, la quantità finale sarà 4 (3+1 = 4).</li>\n<li><strong>Scarico</strong> (ID = 2): sottrae la quantità specificata alla quantità attualmente disponibile. Ad esempio, se scarico 1 pezzo per un prodotto nel magazzino predefinito e, attualmente, ne sono presenti 3, la quantità finale sarà 2 (3-1 = 2).</li>\n<li><strong>Rettifica</strong> (ID = 3): sovrascrive la quantità specificata, facendola diventare la quantità disponibile. Ad esempio se rettifico a 1 pezzo la quantità di un prodotto nel magazzino predefinito e, attualmente, ne sono presenti 4, la quantità finale sarà 1.</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["storages","movements","add"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"b33081db-221d-48f1-b7ef-c70cba0806aa","name":"Create storage movement","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"idStorage\": {{idStorage}},\r\n    \"idItem\": {{idItem}},\r\n    \"Quantity\": 1,\r\n    \"MovementType\": 1,\r\n    \"Reason\": \"Cambio magazzino\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/storages/movements/add"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 18 Apr 2023 10:34:01 GMT"},{"key":"Content-Length","value":"82"}],"cookie":[],"responseTime":null,"body":"{\n    \"Date\": \"2023-04-18T10:34:01.2703151Z\",\n    \"idStorage\": 3,\n    \"idItem\": 123,\n    \"Quantity\": 12\n}"}],"_postman_id":"d741cfa6-3a0d-4b5a-a79e-9749408fef69"},{"name":"Get all movements","id":"5c2386d4-16fc-41d5-94a0-aa67bb9ff03d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"page\": 0,\r\n    \"pageSize\": 20\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/storages/movements","description":"<p>Recupera tutti i movimenti di magazzino, su tutti i magazzini, per tutti i prodotti, ordinati per data, dal più recente al più vecchio.</p>\n<p>La chiamata è paginata, massimo 500 elementi per pagina.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["storages","movements"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"09cb2f9c-0665-444c-93b4-3b9b10e431b2","name":"All storage movements","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"page\": 0,\r\n    \"pageSize\": 20\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/storages/movements"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 18 Apr 2023 10:28:02 GMT"},{"key":"Content-Length","value":"3064"}],"cookie":[],"responseTime":null,"body":"{\n    \"PageSize\": 20,\n    \"Page\": 0,\n    \"TotalCount\": 108,\n    \"Content\": [\n        {\n            \"idMovement\": 107,\n            \"Date\": \"2023-04-13T12:42:31.27Z\",\n            \"idStorage\": 3,\n            \"idItem\": 25901,\n            \"Quantity\": 5,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": true\n        },\n        {\n            \"idMovement\": 108,\n            \"Date\": \"2023-04-13T12:42:31.27Z\",\n            \"idStorage\": 3,\n            \"idItem\": 25902,\n            \"Quantity\": 5,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": true\n        },\n        {\n            \"idMovement\": 106,\n            \"Date\": \"2023-04-13T12:42:30.86Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 10,\n            \"MovementType\": 2,\n            \"Reason\": \"Order 1372 updated\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 104,\n            \"Date\": \"2023-04-13T12:41:44.64Z\",\n            \"idStorage\": 3,\n            \"idItem\": 25901,\n            \"Quantity\": 5,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": true\n        },\n        {\n            \"idMovement\": 105,\n            \"Date\": \"2023-04-13T12:41:44.64Z\",\n            \"idStorage\": 3,\n            \"idItem\": 25902,\n            \"Quantity\": 5,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": true\n        },\n        {\n            \"idMovement\": 103,\n            \"Date\": \"2023-04-13T12:41:44.247Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 19,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 101,\n            \"Date\": \"2023-04-13T12:40:33.75Z\",\n            \"idStorage\": 3,\n            \"idItem\": 25901,\n            \"Quantity\": 5,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": true\n        },\n        {\n            \"idMovement\": 102,\n            \"Date\": \"2023-04-13T12:40:33.75Z\",\n            \"idStorage\": 3,\n            \"idItem\": 25902,\n            \"Quantity\": 5,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": true\n        },\n        {\n            \"idMovement\": 99,\n            \"Date\": \"2023-04-13T12:40:33.297Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 5,\n            \"MovementType\": 1,\n            \"Reason\": \"Order 1372 updated\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 100,\n            \"Date\": \"2023-04-13T12:40:33.297Z\",\n            \"idStorage\": 3,\n            \"idItem\": 124,\n            \"Quantity\": 1,\n            \"MovementType\": 2,\n            \"Reason\": \"Order 1372 updated\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 97,\n            \"Date\": \"2023-04-13T12:39:50.283Z\",\n            \"idStorage\": 3,\n            \"idItem\": 25901,\n            \"Quantity\": 6,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": true\n        },\n        {\n            \"idMovement\": 98,\n            \"Date\": \"2023-04-13T12:39:50.283Z\",\n            \"idStorage\": 3,\n            \"idItem\": 25902,\n            \"Quantity\": 6,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": true\n        },\n        {\n            \"idMovement\": 96,\n            \"Date\": \"2023-04-13T12:39:49.86Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 4,\n            \"MovementType\": 2,\n            \"Reason\": \"Order 1372 updated\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 94,\n            \"Date\": \"2023-04-13T12:38:51.157Z\",\n            \"idStorage\": 3,\n            \"idItem\": 25901,\n            \"Quantity\": 6,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": true\n        },\n        {\n            \"idMovement\": 95,\n            \"Date\": \"2023-04-13T12:38:51.157Z\",\n            \"idStorage\": 3,\n            \"idItem\": 25902,\n            \"Quantity\": 6,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": true\n        },\n        {\n            \"idMovement\": 93,\n            \"Date\": \"2023-04-13T12:38:50.68Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 1,\n            \"MovementType\": 1,\n            \"Reason\": \"Order 1372 updated\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 91,\n            \"Date\": \"2023-04-13T12:38:27.087Z\",\n            \"idStorage\": 3,\n            \"idItem\": 25901,\n            \"Quantity\": 6,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": true\n        },\n        {\n            \"idMovement\": 92,\n            \"Date\": \"2023-04-13T12:38:27.087Z\",\n            \"idStorage\": 3,\n            \"idItem\": 25902,\n            \"Quantity\": 6,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": true\n        },\n        {\n            \"idMovement\": 90,\n            \"Date\": \"2023-04-13T12:38:26.457Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 1,\n            \"MovementType\": 2,\n            \"Reason\": \"Order 1372 updated\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 88,\n            \"Date\": \"2023-04-13T12:14:59.543Z\",\n            \"idStorage\": 3,\n            \"idItem\": 25901,\n            \"Quantity\": 6,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": true\n        }\n    ]\n}"}],"_postman_id":"5c2386d4-16fc-41d5-94a0-aa67bb9ff03d"},{"name":"Get all movements in a storage","id":"69c51d23-d8a6-4323-a59e-1926f1b72ca9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"page\": 0,\r\n    \"pageSize\": 20\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/storages/{{idStorage}}/movements","description":"<p>Recupera tutti i movimenti di magazzino di un magazzino in particolare, per tutti i prodotti, ordinati per data, dal più recente al più vecchio.</p>\n<p>La chiamata è paginata, massimo 500 elementi per pagina.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["storages","{{idStorage}}","movements"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"f6b7277d-c793-49f7-a172-068b77bdaea3","name":"Particular storage movement","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"page\": 0,\r\n    \"pageSize\": 20\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/storages/{{idStorage}}/movements"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 18 Apr 2023 10:29:18 GMT"},{"key":"Content-Length","value":"3064"}],"cookie":[],"responseTime":null,"body":"{\n    \"PageSize\": 20,\n    \"Page\": 0,\n    \"TotalCount\": 103,\n    \"Content\": [\n        {\n            \"idMovement\": 107,\n            \"Date\": \"2023-04-13T12:42:31.27Z\",\n            \"idStorage\": 3,\n            \"idItem\": 25901,\n            \"Quantity\": 5,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": true\n        },\n        {\n            \"idMovement\": 108,\n            \"Date\": \"2023-04-13T12:42:31.27Z\",\n            \"idStorage\": 3,\n            \"idItem\": 25902,\n            \"Quantity\": 5,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": true\n        },\n        {\n            \"idMovement\": 106,\n            \"Date\": \"2023-04-13T12:42:30.86Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 10,\n            \"MovementType\": 2,\n            \"Reason\": \"Order 1372 updated\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 104,\n            \"Date\": \"2023-04-13T12:41:44.64Z\",\n            \"idStorage\": 3,\n            \"idItem\": 25901,\n            \"Quantity\": 5,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": true\n        },\n        {\n            \"idMovement\": 105,\n            \"Date\": \"2023-04-13T12:41:44.64Z\",\n            \"idStorage\": 3,\n            \"idItem\": 25902,\n            \"Quantity\": 5,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": true\n        },\n        {\n            \"idMovement\": 103,\n            \"Date\": \"2023-04-13T12:41:44.247Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 19,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 101,\n            \"Date\": \"2023-04-13T12:40:33.75Z\",\n            \"idStorage\": 3,\n            \"idItem\": 25901,\n            \"Quantity\": 5,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": true\n        },\n        {\n            \"idMovement\": 102,\n            \"Date\": \"2023-04-13T12:40:33.75Z\",\n            \"idStorage\": 3,\n            \"idItem\": 25902,\n            \"Quantity\": 5,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": true\n        },\n        {\n            \"idMovement\": 99,\n            \"Date\": \"2023-04-13T12:40:33.297Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 5,\n            \"MovementType\": 1,\n            \"Reason\": \"Order 1372 updated\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 100,\n            \"Date\": \"2023-04-13T12:40:33.297Z\",\n            \"idStorage\": 3,\n            \"idItem\": 124,\n            \"Quantity\": 1,\n            \"MovementType\": 2,\n            \"Reason\": \"Order 1372 updated\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 97,\n            \"Date\": \"2023-04-13T12:39:50.283Z\",\n            \"idStorage\": 3,\n            \"idItem\": 25901,\n            \"Quantity\": 6,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": true\n        },\n        {\n            \"idMovement\": 98,\n            \"Date\": \"2023-04-13T12:39:50.283Z\",\n            \"idStorage\": 3,\n            \"idItem\": 25902,\n            \"Quantity\": 6,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": true\n        },\n        {\n            \"idMovement\": 96,\n            \"Date\": \"2023-04-13T12:39:49.86Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 4,\n            \"MovementType\": 2,\n            \"Reason\": \"Order 1372 updated\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 94,\n            \"Date\": \"2023-04-13T12:38:51.157Z\",\n            \"idStorage\": 3,\n            \"idItem\": 25901,\n            \"Quantity\": 6,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": true\n        },\n        {\n            \"idMovement\": 95,\n            \"Date\": \"2023-04-13T12:38:51.157Z\",\n            \"idStorage\": 3,\n            \"idItem\": 25902,\n            \"Quantity\": 6,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": true\n        },\n        {\n            \"idMovement\": 93,\n            \"Date\": \"2023-04-13T12:38:50.68Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 1,\n            \"MovementType\": 1,\n            \"Reason\": \"Order 1372 updated\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 91,\n            \"Date\": \"2023-04-13T12:38:27.087Z\",\n            \"idStorage\": 3,\n            \"idItem\": 25901,\n            \"Quantity\": 6,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": true\n        },\n        {\n            \"idMovement\": 92,\n            \"Date\": \"2023-04-13T12:38:27.087Z\",\n            \"idStorage\": 3,\n            \"idItem\": 25902,\n            \"Quantity\": 6,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": true\n        },\n        {\n            \"idMovement\": 90,\n            \"Date\": \"2023-04-13T12:38:26.457Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 1,\n            \"MovementType\": 2,\n            \"Reason\": \"Order 1372 updated\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 88,\n            \"Date\": \"2023-04-13T12:14:59.543Z\",\n            \"idStorage\": 3,\n            \"idItem\": 25901,\n            \"Quantity\": 6,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": true\n        }\n    ]\n}"}],"_postman_id":"69c51d23-d8a6-4323-a59e-1926f1b72ca9"},{"name":"Get item's movements","id":"c78a752c-bbba-4688-9d9c-6e52348aac5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"page\": 0,\r\n    \"pageSize\": 20\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/storages/movements/products/{{idItem}}","description":"<p>Recupera tutti i movimenti di magazzino, su tutti i magazzini, per un prodotto in particolare, ordinati per data, dal più recente al più vecchio.</p>\n<p>La chiamata è paginata, massimo 500 elementi per pagina.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["storages","movements","products","{{idItem}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"755a9469-c5f9-4dee-ba65-84978a2867c9","name":"All storage movements for an item","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"page\": 0,\r\n    \"pageSize\": 20\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/storages/movements/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 18 Apr 2023 10:30:56 GMT"},{"key":"Content-Length","value":"2775"}],"cookie":[],"responseTime":null,"body":"{\n    \"PageSize\": 20,\n    \"Page\": 0,\n    \"TotalCount\": 18,\n    \"Content\": [\n        {\n            \"idMovement\": 106,\n            \"Date\": \"2023-04-13T12:42:30.86Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 10,\n            \"MovementType\": 2,\n            \"Reason\": \"Order 1372 updated\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 103,\n            \"Date\": \"2023-04-13T12:41:44.247Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 19,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 99,\n            \"Date\": \"2023-04-13T12:40:33.297Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 5,\n            \"MovementType\": 1,\n            \"Reason\": \"Order 1372 updated\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 96,\n            \"Date\": \"2023-04-13T12:39:49.86Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 4,\n            \"MovementType\": 2,\n            \"Reason\": \"Order 1372 updated\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 93,\n            \"Date\": \"2023-04-13T12:38:50.68Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 1,\n            \"MovementType\": 1,\n            \"Reason\": \"Order 1372 updated\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 90,\n            \"Date\": \"2023-04-13T12:38:26.457Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 1,\n            \"MovementType\": 2,\n            \"Reason\": \"Order 1372 updated\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 87,\n            \"Date\": \"2023-04-13T12:14:58.967Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 1,\n            \"MovementType\": 2,\n            \"Reason\": \"Order 1372\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 84,\n            \"Date\": \"2023-04-13T12:10:34.897Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 1,\n            \"MovementType\": 2,\n            \"Reason\": \"Order 1371\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 81,\n            \"Date\": \"2023-04-13T11:00:17.853Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 1,\n            \"MovementType\": 2,\n            \"Reason\": \"Order 1370\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 78,\n            \"Date\": \"2023-04-13T10:41:27.85Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 1,\n            \"MovementType\": 2,\n            \"Reason\": \"Order 1369\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 72,\n            \"Date\": \"2023-04-12T13:25:43.167Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 21,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 69,\n            \"Date\": \"2023-04-12T13:24:04.69Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 20,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 64,\n            \"Date\": \"2023-04-12T08:12:37.37Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 25,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 61,\n            \"Date\": \"2023-04-12T08:12:13.03Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 23,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 58,\n            \"Date\": \"2023-04-12T08:11:45.963Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 22,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 43,\n            \"Date\": \"2023-04-04T15:58:02.367Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 7,\n            \"MovementType\": 1,\n            \"Reason\": null,\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 39,\n            \"Date\": \"2023-04-04T15:56:07.643Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 7,\n            \"MovementType\": 1,\n            \"Reason\": null,\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 32,\n            \"Date\": \"2023-04-04T15:43:52.863Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 2,\n            \"MovementType\": 2,\n            \"Reason\": null,\n            \"IsAutomatic\": true\n        }\n    ]\n}"}],"_postman_id":"c78a752c-bbba-4688-9d9c-6e52348aac5c"},{"name":"Get item's movements in a storage","id":"cda20514-547e-4274-aa46-fadd7d283222","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"page\": 0,\r\n    \"pageSize\": 20\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/storages/{{idStorage}}/movements/products/{{idItem}}","description":"<p>Recupera tutti i movimenti di magazzino di un magazzino in particolare, per un prodotto in particolare, ordinati per data, dal più recente al più vecchio.</p>\n<p>La chiamata è paginata, massimo 500 elementi per pagina.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["storages","{{idStorage}}","movements","products","{{idItem}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"0a4c3720-fe39-4bde-b67d-ba7a50119e05","name":"All storage movements for an item in a particular storage","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"page\": 0,\r\n    \"pageSize\": 20\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/storages/{{idStorage}}/movements/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 18 Apr 2023 10:34:09 GMT"},{"key":"Content-Length","value":"3111"}],"cookie":[],"responseTime":null,"body":"{\n    \"PageSize\": 20,\n    \"Page\": 0,\n    \"TotalCount\": 21,\n    \"Content\": [\n        {\n            \"idMovement\": 115,\n            \"Date\": \"2023-04-18T10:34:01.187Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 1,\n            \"MovementType\": 1,\n            \"Reason\": \"Cambio magazzino\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 112,\n            \"Date\": \"2023-04-18T10:33:58.963Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 1,\n            \"MovementType\": 1,\n            \"Reason\": \"Cambio magazzino\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 109,\n            \"Date\": \"2023-04-18T10:33:54.397Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 1,\n            \"MovementType\": 1,\n            \"Reason\": \"Cambio magazzino\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 106,\n            \"Date\": \"2023-04-13T12:42:30.86Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 10,\n            \"MovementType\": 2,\n            \"Reason\": \"Order 1372 updated\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 103,\n            \"Date\": \"2023-04-13T12:41:44.247Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 19,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 99,\n            \"Date\": \"2023-04-13T12:40:33.297Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 5,\n            \"MovementType\": 1,\n            \"Reason\": \"Order 1372 updated\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 96,\n            \"Date\": \"2023-04-13T12:39:49.86Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 4,\n            \"MovementType\": 2,\n            \"Reason\": \"Order 1372 updated\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 93,\n            \"Date\": \"2023-04-13T12:38:50.68Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 1,\n            \"MovementType\": 1,\n            \"Reason\": \"Order 1372 updated\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 90,\n            \"Date\": \"2023-04-13T12:38:26.457Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 1,\n            \"MovementType\": 2,\n            \"Reason\": \"Order 1372 updated\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 87,\n            \"Date\": \"2023-04-13T12:14:58.967Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 1,\n            \"MovementType\": 2,\n            \"Reason\": \"Order 1372\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 84,\n            \"Date\": \"2023-04-13T12:10:34.897Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 1,\n            \"MovementType\": 2,\n            \"Reason\": \"Order 1371\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 81,\n            \"Date\": \"2023-04-13T11:00:17.853Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 1,\n            \"MovementType\": 2,\n            \"Reason\": \"Order 1370\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 78,\n            \"Date\": \"2023-04-13T10:41:27.85Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 1,\n            \"MovementType\": 2,\n            \"Reason\": \"Order 1369\",\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 72,\n            \"Date\": \"2023-04-12T13:25:43.167Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 21,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 69,\n            \"Date\": \"2023-04-12T13:24:04.69Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 20,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 64,\n            \"Date\": \"2023-04-12T08:12:37.37Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 25,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 61,\n            \"Date\": \"2023-04-12T08:12:13.03Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 23,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 58,\n            \"Date\": \"2023-04-12T08:11:45.963Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 22,\n            \"MovementType\": 3,\n            \"Reason\": null,\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 43,\n            \"Date\": \"2023-04-04T15:58:02.367Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 7,\n            \"MovementType\": 1,\n            \"Reason\": null,\n            \"IsAutomatic\": false\n        },\n        {\n            \"idMovement\": 39,\n            \"Date\": \"2023-04-04T15:56:07.643Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 7,\n            \"MovementType\": 1,\n            \"Reason\": null,\n            \"IsAutomatic\": false\n        }\n    ]\n}"}],"_postman_id":"cda20514-547e-4274-aa46-fadd7d283222"},{"name":"Get item's statuses","id":"c82e5364-dc77-4ee2-862b-75b3026cc284","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/storages/status/products/{{idItem}}","description":"<p>Recupera lo stato a magazzino di un particolare prodotto, su tutti i magazzini. Se un magazzino non è ritornato, è perché quel prodotto, in quel magazzino, non è presente.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["storages","status","products","{{idItem}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"69945a3d-a7eb-4cbb-acac-1031552e06bd","name":"Item status in all storages","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/storages/status/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 18 Apr 2023 10:59:22 GMT"},{"key":"Content-Length","value":"84"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"Date\": \"2023-04-18T10:59:23.7988304Z\",\n        \"idStorage\": 3,\n        \"idItem\": 123,\n        \"Quantity\": 12\n    }\n]"}],"_postman_id":"c82e5364-dc77-4ee2-862b-75b3026cc284"},{"name":"Get item's status in a storage","id":"fe4e438f-1eb6-4974-8df8-72f784cfcd34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/storages/{{idStorage}}/status/products/{{idItem}}","description":"<p>Recupera lo stato di un determinato prodotto in un magazzino particolare. Se non viene ritornato nulla, è perché quel prodotto, in quel magazzino non è presente.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["storages","{{idStorage}}","status","products","{{idItem}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"34757672-da83-4b3f-adcc-f0df8d36c6a3","name":"Item status in a particular storage","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/storages/{{idStorage}}/status/products/{{idItem}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 18 Apr 2023 12:45:52 GMT"},{"key":"Content-Length","value":"82"}],"cookie":[],"responseTime":null,"body":"{\n    \"Date\": \"2023-04-18T12:45:52.8435803Z\",\n    \"idStorage\": 3,\n    \"idItem\": 123,\n    \"Quantity\": 12\n}"}],"_postman_id":"fe4e438f-1eb6-4974-8df8-72f784cfcd34"},{"name":"Get all storage's statuses","id":"f94abc41-138d-478d-b3e4-92773ab27f71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"page\": 0,\r\n    \"pageSize\": 20\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/storages/{{idStorage}}/status","description":"<p>Recupera lo stato di tutti i prodotti, in un determinato magazzino.</p>\n<p>La chiamata è paginata, massimo 500 elementi per pagina.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["storages","{{idStorage}}","status"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"afd7a0de-e887-4061-9ddc-06dcc6b4a10b","name":"All items status in a particular storage","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"page\": 0,\r\n    \"pageSize\": 20\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/storages/{{idStorage}}/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 18 Apr 2023 12:46:17 GMT"},{"key":"Content-Length","value":"1696"}],"cookie":[],"responseTime":null,"body":"{\n    \"PageSize\": 20,\n    \"Page\": 0,\n    \"TotalCount\": 25651,\n    \"Content\": [\n        {\n            \"Date\": \"2023-04-18T12:46:17.3278908Z\",\n            \"idStorage\": 3,\n            \"idItem\": 122,\n            \"Quantity\": 0\n        },\n        {\n            \"Date\": \"2023-04-18T12:46:17.3278908Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 12\n        },\n        {\n            \"Date\": \"2023-04-18T12:46:17.3278908Z\",\n            \"idStorage\": 3,\n            \"idItem\": 124,\n            \"Quantity\": 5\n        },\n        {\n            \"Date\": \"2023-04-18T12:46:17.3278908Z\",\n            \"idStorage\": 3,\n            \"idItem\": 125,\n            \"Quantity\": 8\n        },\n        {\n            \"Date\": \"2023-04-18T12:46:17.3278908Z\",\n            \"idStorage\": 3,\n            \"idItem\": 126,\n            \"Quantity\": 3\n        },\n        {\n            \"Date\": \"2023-04-18T12:46:17.3278908Z\",\n            \"idStorage\": 3,\n            \"idItem\": 127,\n            \"Quantity\": 6\n        },\n        {\n            \"Date\": \"2023-04-18T12:46:17.3278908Z\",\n            \"idStorage\": 3,\n            \"idItem\": 128,\n            \"Quantity\": 8\n        },\n        {\n            \"Date\": \"2023-04-18T12:46:17.3278908Z\",\n            \"idStorage\": 3,\n            \"idItem\": 129,\n            \"Quantity\": 8\n        },\n        {\n            \"Date\": \"2023-04-18T12:46:17.3278908Z\",\n            \"idStorage\": 3,\n            \"idItem\": 130,\n            \"Quantity\": 8\n        },\n        {\n            \"Date\": \"2023-04-18T12:46:17.3278908Z\",\n            \"idStorage\": 3,\n            \"idItem\": 131,\n            \"Quantity\": 8\n        },\n        {\n            \"Date\": \"2023-04-18T12:46:17.3278908Z\",\n            \"idStorage\": 3,\n            \"idItem\": 132,\n            \"Quantity\": 8\n        },\n        {\n            \"Date\": \"2023-04-18T12:46:17.3278908Z\",\n            \"idStorage\": 3,\n            \"idItem\": 133,\n            \"Quantity\": 8\n        },\n        {\n            \"Date\": \"2023-04-18T12:46:17.3278908Z\",\n            \"idStorage\": 3,\n            \"idItem\": 134,\n            \"Quantity\": 8\n        },\n        {\n            \"Date\": \"2023-04-18T12:46:17.3278908Z\",\n            \"idStorage\": 3,\n            \"idItem\": 135,\n            \"Quantity\": 8\n        },\n        {\n            \"Date\": \"2023-04-18T12:46:17.3278908Z\",\n            \"idStorage\": 3,\n            \"idItem\": 136,\n            \"Quantity\": 8\n        },\n        {\n            \"Date\": \"2023-04-18T12:46:17.3278908Z\",\n            \"idStorage\": 3,\n            \"idItem\": 137,\n            \"Quantity\": 8\n        },\n        {\n            \"Date\": \"2023-04-18T12:46:17.3278908Z\",\n            \"idStorage\": 3,\n            \"idItem\": 138,\n            \"Quantity\": 8\n        },\n        {\n            \"Date\": \"2023-04-18T12:46:17.3278908Z\",\n            \"idStorage\": 3,\n            \"idItem\": 139,\n            \"Quantity\": 8\n        },\n        {\n            \"Date\": \"2023-04-18T12:46:17.3278908Z\",\n            \"idStorage\": 3,\n            \"idItem\": 140,\n            \"Quantity\": 8\n        },\n        {\n            \"Date\": \"2023-04-18T12:46:17.3278908Z\",\n            \"idStorage\": 3,\n            \"idItem\": 141,\n            \"Quantity\": 8\n        }\n    ]\n}"}],"_postman_id":"f94abc41-138d-478d-b3e4-92773ab27f71"},{"name":"Get storages' statues","id":"f2b28d2d-75c5-46a9-b364-ac0a08d84c3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"page\": 0,\r\n    \"pageSize\": 20\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/storages/status","description":"<p>Recupera lo stato di tutti i prodotti, in tutti i magazzini.</p>\n<p>La chiamata è paginata, massimo 500 elementi per pagina.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["storages","status"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"72741f2a-f9dd-4f54-aca3-6e40853b3dac","name":"All items status in all storages","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"page\": 0,\r\n    \"pageSize\": 20\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/storages/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 18 Apr 2023 13:08:12 GMT"},{"key":"Content-Length","value":"1697"}],"cookie":[],"responseTime":null,"body":"{\n    \"PageSize\": 20,\n    \"Page\": 0,\n    \"TotalCount\": 25657,\n    \"Content\": [\n        {\n            \"Date\": \"2023-04-18T13:08:12.8711737Z\",\n            \"idStorage\": 3,\n            \"idItem\": 122,\n            \"Quantity\": 0\n        },\n        {\n            \"Date\": \"2023-04-18T13:08:12.8711737Z\",\n            \"idStorage\": 19,\n            \"idItem\": 122,\n            \"Quantity\": 0\n        },\n        {\n            \"Date\": \"2023-04-18T13:08:12.8711737Z\",\n            \"idStorage\": 3,\n            \"idItem\": 123,\n            \"Quantity\": 12\n        },\n        {\n            \"Date\": \"2023-04-18T13:08:12.8711737Z\",\n            \"idStorage\": 3,\n            \"idItem\": 124,\n            \"Quantity\": 5\n        },\n        {\n            \"Date\": \"2023-04-18T13:08:12.8711737Z\",\n            \"idStorage\": 3,\n            \"idItem\": 125,\n            \"Quantity\": 8\n        },\n        {\n            \"Date\": \"2023-04-18T13:08:12.8711737Z\",\n            \"idStorage\": 3,\n            \"idItem\": 126,\n            \"Quantity\": 3\n        },\n        {\n            \"Date\": \"2023-04-18T13:08:12.8711737Z\",\n            \"idStorage\": 3,\n            \"idItem\": 127,\n            \"Quantity\": 6\n        },\n        {\n            \"Date\": \"2023-04-18T13:08:12.8711737Z\",\n            \"idStorage\": 3,\n            \"idItem\": 128,\n            \"Quantity\": 8\n        },\n        {\n            \"Date\": \"2023-04-18T13:08:12.8711737Z\",\n            \"idStorage\": 3,\n            \"idItem\": 129,\n            \"Quantity\": 8\n        },\n        {\n            \"Date\": \"2023-04-18T13:08:12.8711737Z\",\n            \"idStorage\": 3,\n            \"idItem\": 130,\n            \"Quantity\": 8\n        },\n        {\n            \"Date\": \"2023-04-18T13:08:12.8711737Z\",\n            \"idStorage\": 3,\n            \"idItem\": 131,\n            \"Quantity\": 8\n        },\n        {\n            \"Date\": \"2023-04-18T13:08:12.8711737Z\",\n            \"idStorage\": 3,\n            \"idItem\": 132,\n            \"Quantity\": 8\n        },\n        {\n            \"Date\": \"2023-04-18T13:08:12.8711737Z\",\n            \"idStorage\": 3,\n            \"idItem\": 133,\n            \"Quantity\": 8\n        },\n        {\n            \"Date\": \"2023-04-18T13:08:12.8711737Z\",\n            \"idStorage\": 3,\n            \"idItem\": 134,\n            \"Quantity\": 8\n        },\n        {\n            \"Date\": \"2023-04-18T13:08:12.8711737Z\",\n            \"idStorage\": 3,\n            \"idItem\": 135,\n            \"Quantity\": 8\n        },\n        {\n            \"Date\": \"2023-04-18T13:08:12.8711737Z\",\n            \"idStorage\": 3,\n            \"idItem\": 136,\n            \"Quantity\": 8\n        },\n        {\n            \"Date\": \"2023-04-18T13:08:12.8711737Z\",\n            \"idStorage\": 3,\n            \"idItem\": 137,\n            \"Quantity\": 8\n        },\n        {\n            \"Date\": \"2023-04-18T13:08:12.8711737Z\",\n            \"idStorage\": 3,\n            \"idItem\": 138,\n            \"Quantity\": 8\n        },\n        {\n            \"Date\": \"2023-04-18T13:08:12.8711737Z\",\n            \"idStorage\": 3,\n            \"idItem\": 139,\n            \"Quantity\": 8\n        },\n        {\n            \"Date\": \"2023-04-18T13:08:12.8711737Z\",\n            \"idStorage\": 3,\n            \"idItem\": 140,\n            \"Quantity\": 8\n        }\n    ]\n}"}],"_postman_id":"f2b28d2d-75c5-46a9-b364-ac0a08d84c3c"}],"id":"380aaed2-fbc2-4ba0-894e-a44ec471315d","description":"<p><strong>Funzionalità BETA</strong></p>\n<p>Su eDock è possibile associare valori di quantità diversi per magazzini diversi. È possibile associare un magazzino specifico ad un particolare mercato. Nel caso in cui un magazzino specifico non venisse associato, un mercato è sempre associato al <strong>Magazzino Predefinito</strong>.</p>\n","_postman_id":"380aaed2-fbc2-4ba0-894e-a44ec471315d","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Attributes","item":[{"name":"Get set","id":"7220ea84-6f04-4292-a9c8-70ca9e5d85f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/attributes/get?GetSets=true","description":"<p>Recupera i set di attributi definiti sull'account eDock.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["attributes","get"],"host":["{{endpoint}}"],"query":[{"key":"GetSets","value":"true"}],"variable":[]}},"response":[{"id":"78448ba6-eeb7-4abc-b8a5-4da0dc815ae9","name":"Get set","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"https://rest.edock.it/api/attributes/get?GetSets=true","protocol":"https","host":["rest","edock","it"],"path":["api","attributes","get"],"query":[{"key":"GetSets","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Length","value":"496","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 01 Jun 2018 14:34:42 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Microsoft-IIS/10.0","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"ASP.NET","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"rest.edock.it","path":"/","secure":false,"value":"06aa404d3a1dc01d63b08f920d1eeddaf61618bebf9857afcc1833a3b7039c19","key":"ARRAffinity"}],"responseTime":null,"body":"[{\"idAttributeSet\":17,\"Name\":\"Article-MPN\",\"CultureName\":\"en\",\"Attributes\":null,\"ToBeShown\":true},{\"idAttributeSet\":18,\"Name\":\"Articolo-MPN\",\"CultureName\":\"it\",\"Attributes\":null,\"ToBeShown\":true},{\"idAttributeSet\":20,\"Name\":\"Artikel-Herstellernummer\",\"CultureName\":\"de\",\"Attributes\":null,\"ToBeShown\":true},{\"idAttributeSet\":19,\"Name\":\"Colore principale-Taglia\",\"CultureName\":\"it\",\"Attributes\":null,\"ToBeShown\":true},{\"idAttributeSet\":22,\"Name\":\"Colore principale-Taglia scarpa\",\"CultureName\":\"it\",\"Attributes\":null,\"ToBeShown\":true},{\"idAttributeSet\":14,\"Name\":\"COLORE-TAGLIA\",\"CultureName\":\"it\",\"Attributes\":null,\"ToBeShown\":true},{\"idAttributeSet\":15,\"Name\":\"COLOUR-SIZE\",\"CultureName\":\"en\",\"Attributes\":null,\"ToBeShown\":true},{\"idAttributeSet\":25,\"Name\":\"eBay Item Specifics (de)\",\"CultureName\":\"de\",\"Attributes\":null,\"ToBeShown\":true},{\"idAttributeSet\":24,\"Name\":\"eBay Item Specifics (en)\",\"CultureName\":\"en\",\"Attributes\":null,\"ToBeShown\":true},{\"idAttributeSet\":27,\"Name\":\"eBay Item Specifics (es)\",\"CultureName\":\"es\",\"Attributes\":null,\"ToBeShown\":true},{\"idAttributeSet\":26,\"Name\":\"eBay Item Specifics (fr)\",\"CultureName\":\"fr\",\"Attributes\":null,\"ToBeShown\":true},{\"idAttributeSet\":23,\"Name\":\"eBay Item Specifics (it)\",\"CultureName\":\"it\",\"Attributes\":null,\"ToBeShown\":true},{\"idAttributeSet\":28,\"Name\":\"eBay Item Specifics (nl)\",\"CultureName\":\"nl\",\"Attributes\":null,\"ToBeShown\":true},{\"idAttributeSet\":21,\"Name\":\"GRANA-MPN\",\"CultureName\":\"it\",\"Attributes\":null,\"ToBeShown\":true},{\"idAttributeSet\":16,\"Name\":\"MPN-Ø BLADE AND CENTRAL BORE\",\"CultureName\":\"en\",\"Attributes\":null,\"ToBeShown\":true},{\"idAttributeSet\":29,\"Name\":\"TEST LINGUE (it)\",\"CultureName\":\"it\",\"Attributes\":null,\"ToBeShown\":true}]"}],"_postman_id":"7220ea84-6f04-4292-a9c8-70ca9e5d85f2"},{"name":"Get attributes","id":"527d9b34-7f76-4a7b-ad44-327f29146378","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/attributes/get/{{idAttributeSet}}?isSetId=true","description":"<p>Recupera gli attributi all'interno di un set di attributi, di cui si conosce l'ID.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["attributes","get","{{idAttributeSet}}"],"host":["{{endpoint}}"],"query":[{"key":"isSetId","value":"true"}],"variable":[]}},"response":[{"id":"7c239bd2-7bed-4172-ba25-d7e505aaabe2","name":"Get attributes","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"https://rest.edock.it/api/attributes/get/{{idAttributeSet}}?isSetId=true","protocol":"https","host":["rest","edock","it"],"path":["api","attributes","get","{{idAttributeSet}}"],"query":[{"key":"isSetId","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Length","value":"286","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 01 Jun 2018 14:36:50 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Microsoft-IIS/10.0","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"ASP.NET","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"rest.edock.it","path":"/","secure":false,"value":"06aa404d3a1dc01d63b08f920d1eeddaf61618bebf9857afcc1833a3b7039c19","key":"ARRAffinity"}],"responseTime":null,"body":"{\"idAttributeSet\":19,\"Name\":\"Colore principale-Taglia\",\"CultureName\":\"it\",\"Attributes\":[{\"idAttributeSetAttribute\":57,\"Name\":\"Colore principale\",\"idAttributeType\":8,\"Order\":0,\"Values\":null,\"GroupByThisOneBay\":true},{\"idAttributeSetAttribute\":58,\"Name\":\"Taglia\",\"idAttributeType\":8,\"Order\":0,\"Values\":null,\"GroupByThisOneBay\":false}],\"ToBeShown\":true}"}],"_postman_id":"527d9b34-7f76-4a7b-ad44-327f29146378"},{"name":"Create attribute set","id":"f98895d4-b95c-463e-a88e-86793194ba5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"Name\":\"KTypes\",\n\t\"CultureName\":\"it\",\n\t\"Attributes\":[\n\t\t{\n\t\t\t\"Name\":\"KTypes\",\n\t\t\t\"idAttributeType\":\"8\"\n\t\t}\n\t]\n}"},"url":"https://rest.edock.it/api/attributes/post","description":"<p>Con questa chiamata è possibile creare un set di attributi contenente un numero variabile di attributi.\nIl set è costituito da un nome (\"Name\"), una cultura (\"CultureName\") e un elenco, appunto, di attributi (\"Attributes\").\nLe culture disponibili sono quelle ottenibili con la chiamata \"GET Cultures\" in \"Prodotti\".\nPer ogni attributo è definito da un nome (\"Name\") e un tipo (\"idAttributeType\") da valorizzare sempre con 8.</p>\n<p>Come risultato si ottiene l'ID del set di attributi da usarsi, ad esempio, nel campo \"VariatesOn\" della richiesta di creazione di prodotti con variante (\"POST Create with Variations\" in \"Prodotti\") oppure nel campo \"CombinatesOn\" della richiesta di creazione di prodotti con compatibilità.</p>\n<p>Gli ID dei singoli attributi, invece, sono ottenibili effettuando la chiamata alla \"GET GetSet\".</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"protocol":"https","path":["api","attributes","post"],"host":["rest","edock","it"],"query":[],"variable":[]}},"response":[{"id":"62db1301-8570-4b08-a512-5bbd90a7947e","name":"Create attribute set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"Name\":\"KTypes\",\n\t\"CultureName\":\"it\",\n\t\"Attributes\":[\n\t\t{\n\t\t\t\"Name\":\"KTypes\",\n\t\t\t\"idAttributeType\":\"8\"\n\t\t}\n\t]\n\t\n}"},"url":"https://rest.edock.it/api/attributes/post"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"87"}],"_postman_id":"f98895d4-b95c-463e-a88e-86793194ba5e"},{"name":"Update attribute set","id":"c8efc1b4-d7a6-4b7c-bcf3-b16358ea9ce1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\"Name\":\"Caratteristiche (it-IT)\",\"CultureName\":\"it\",\"Attributes\":[{\"Name\":\"DIAMETRO\"}],\"IdAttributeSet\":7}"},"url":"{{endpoint}}/attributes/put","description":"<p>Con questa chiamata è possibile modificare un set di attributi esistente.</p>\n<p>La richiesta è identica a quella di creazione, con l'aggiunta di un parametro \"idAttributeSet\".\nÈ necessario, per gli attributi già esistenti, che vengano passati, ognuno con il suo \"idAttributeSetAttribute\" correttamente valorizzato.\n** Gli attributi che non vengono passati, verranno cancellati - se possibile **</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["attributes","put"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"0dd2ddb9-174e-47ff-9df0-0f935ae61eb9","name":"Update attribute set","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Name\": \"eBay Item Specifics (it)\",\n\t\"CultureName\": \"it\",\n\t\"Attributes\": [\n\t\t{\n\t\t\t\"idAttributeSetAttribute\": 65,\n\t\t\t\"Name\": \"Marca\",\n\t\t\t\"idAttributeType\": 8,\n\t\t\t\"Order\": 0,\n\t\t\t\"Values\": null,\n\t\t\t\"GroupByThisOneBay\": false\n\t\t},\n\t\t{\n\t\t\t\"idAttributeSetAttribute\": 66,\n\t\t\t\"Name\": \"MPN\",\n\t\t\t\"idAttributeType\": 8,\n\t\t\t\"Order\": 0,\n\t\t\t\"Values\": null,\n\t\t\t\"GroupByThisOneBay\": false\n\t\t},\n\t\t{\n\t\t\t\"Name\": \"Modello\",\n\t\t\t\"idAttributeType\": \"8\",\n\t\t\t\"GroupByThisOneBay\": false,\n\t\t\t\"Values\": []\n\t\t}\n\t],\n\t\"idAttributeSet\": 39\n}"},"url":"https://rest.edock.it/api/attributes/put"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Fri, 10 Jul 2020 10:25:51 GMT"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c8efc1b4-d7a6-4b7c-bcf3-b16358ea9ce1"},{"name":"Get attributes","id":"f97356ce-931d-44dd-9350-f54a02125af9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://rest.edock.it/api/attributes/","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"protocol":"https","path":["api","attributes",""],"host":["rest","edock","it"],"query":[],"variable":[]}},"response":[],"_postman_id":"f97356ce-931d-44dd-9350-f54a02125af9"}],"id":"5cf1a782-0717-4b76-9508-b5795568abd6","_postman_id":"5cf1a782-0717-4b76-9508-b5795568abd6","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Manufacturer Center","item":[{"name":"Manufacturers","item":[{"name":"Create","id":"fcf6d85d-f4ca-45e0-88e1-b936a9b9fc3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CompanyName\": \"{{CompanyName}}\",\r\n    \"Address1\": \"{{Address1}}\",\r\n    \"ZipCode\": \"{{ZipCode}}\",\r\n    \"City\": \"{{City}}\",\r\n    \"CountyOrState\": \"{{CountyOrState}}\",\r\n    \"idCountry\": {{idCountry}},\r\n    \"PhoneNumber\": \"{{PhoneNumber}}\",\r\n    \"EnabledForAmazon\": {{EnabledForAmazon}}\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/manufacturers","description":"<p>Creates a new manufacturer. Properties:</p>\n<ul>\n<li><p><strong>CompanyName</strong>: must be unique inside the whole Manufacturer Center</p>\n</li>\n<li><p><strong>Address1:</strong> address row 1</p>\n</li>\n<li><p><strong>Address2</strong>: address row 2</p>\n</li>\n<li><p><strong>City</strong>: city</p>\n</li>\n<li><p><strong>ZipCode</strong>: postal code</p>\n</li>\n<li><p><strong>CountyOrState</strong>: county abbreviation</p>\n</li>\n<li><p><strong>Phone</strong>: phone number</p>\n</li>\n<li><p><strong>Email1</strong>: email address 1</p>\n</li>\n<li><p><strong>Email2</strong>: email address 2</p>\n</li>\n<li><p><strong>URL</strong>: website URL</p>\n</li>\n<li><p><strong>VatCode</strong>: vat code</p>\n</li>\n<li><p><strong>idCountry</strong>: country ID</p>\n</li>\n<li><p><strong>EnabledForAmazon</strong>: is set to true, informations will be sent to Amazon. Please ensure that manufacturer is known and validated on Amazon Seller Central before setting this to true</p>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["manufacturers"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"86cd2e54-f18e-4ccb-ba1a-5a76ebffe591","name":"Create","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CompanyName\": \"Test company\",\r\n    \"Address1\": \"Corso Acqui, 382\",\r\n    \"ZipCode\": \"15121\",\r\n    \"City\": \"Alessandria\",\r\n    \"CountyOrState\": \"AL\",\r\n    \"idCountry\": 108,\r\n    \"PhoneNumber\": \"00390131251385\",\r\n    \"EnabledForAmazon\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/manufacturers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"340"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 15 Nov 2024 15:02:18 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"idManufacturerPerson\": 92,\n    \"CompanyName\": \"Test company\",\n    \"Address1\": \"Corso Acqui, 382\",\n    \"Address2\": null,\n    \"City\": \"Alessandria\",\n    \"ZipCode\": \"15121\",\n    \"CountyOrState\": \"AL\",\n    \"Phone\": null,\n    \"Email1\": null,\n    \"Email2\": null,\n    \"URL\": null,\n    \"VatCode\": null,\n    \"idCountry\": 108,\n    \"CountryIsoName\": null,\n    \"PersonType\": 0,\n    \"idParentPerson\": null,\n    \"OrderIndex\": 0,\n    \"EnabledForAmazon\": true\n}"}],"_postman_id":"fcf6d85d-f4ca-45e0-88e1-b936a9b9fc3b"},{"name":"Get","id":"05f5def7-086b-4ab8-8754-7198b54f5b18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/manufacturers/{{idManufacturer}}","description":"<p>Retrieves a manufacturer</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["manufacturers","{{idManufacturer}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"7a46ceab-f660-4a91-bf00-15bb9f859fc1","name":"Get","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/manufacturers/{{idManufacturer}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"342"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 15 Nov 2024 15:18:01 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"idManufacturerPerson\": 94,\n    \"CompanyName\": \"Test manufacturer\",\n    \"Address1\": \"Corso Acqui, 382\",\n    \"Address2\": null,\n    \"City\": \"Alessandria\",\n    \"ZipCode\": \"15121\",\n    \"CountyOrState\": \"AL\",\n    \"Phone\": null,\n    \"Email1\": null,\n    \"Email2\": null,\n    \"URL\": null,\n    \"VatCode\": null,\n    \"idCountry\": 108,\n    \"CountryIsoName\": \"IT\",\n    \"PersonType\": 0,\n    \"idParentPerson\": null,\n    \"OrderIndex\": 0,\n    \"EnabledForAmazon\": true\n}"}],"_postman_id":"05f5def7-086b-4ab8-8754-7198b54f5b18"},{"name":"Update","id":"04247918-f5b6-47b4-860c-a5d0a0af4e1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CompanyName\": \"{{CompanyName}}\",\r\n    \"Address1\": \"{{Address1}}\",\r\n    \"ZipCode\": \"{{ZipCode}}\",\r\n    \"City\": \"{{City}}\",\r\n    \"CountyOrState\": \"{{CountyOrState}}\",\r\n    \"idCountry\": {{idCountry}},\r\n    \"PhoneNumber\": \"{{PhoneNumber}}\",\r\n    \"EnabledForAmazon\": {{EnabledForAmazon}}\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/manufacturers/{{idManufacturer}}","description":"<p>Updates an existing manufacturer. Properties:</p>\n<ul>\n<li><p><strong>CompanyName</strong>: must be unique inside the whole Manufacturer Center</p>\n</li>\n<li><p><strong>Address1:</strong> address row 1</p>\n</li>\n<li><p><strong>Address2</strong>: address row 2</p>\n</li>\n<li><p><strong>City</strong>: city</p>\n</li>\n<li><p><strong>ZipCode</strong>: postal code</p>\n</li>\n<li><p><strong>CountyOrState</strong>: county abbreviation</p>\n</li>\n<li><p><strong>Phone</strong>: phone number</p>\n</li>\n<li><p><strong>Email1</strong>: email address 1</p>\n</li>\n<li><p><strong>Email2</strong>: email address 2</p>\n</li>\n<li><p><strong>URL</strong>: website URL</p>\n</li>\n<li><p><strong>VatCode</strong>: vat code</p>\n</li>\n<li><p><strong>idCountry</strong>: country ID</p>\n</li>\n<li><p><strong>EnabledForAmazon</strong>: is set to true, informations will be sent to Amazon. Please ensure that manufacturer is known and validated on Amazon Seller Central before setting this to true</p>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["manufacturers","{{idManufacturer}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"a1e35e21-f626-4b8d-9b2b-d7b66eed433b","name":"Update","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CompanyName\": \"Test company\",\r\n    \"Address1\": \"Corso Acqui, 382\",\r\n    \"ZipCode\": \"15121\",\r\n    \"City\": \"Alessandria\",\r\n    \"CountyOrState\": \"AL\",\r\n    \"idCountry\": 108,\r\n    \"PhoneNumber\": \"00390131251385\",\r\n    \"EnabledForAmazon\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/manufacturers/92"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"341"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 15 Nov 2024 15:09:26 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"idManufacturerPerson\": 92,\n    \"CompanyName\": \"Test company\",\n    \"Address1\": \"Corso Acqui, 382\",\n    \"Address2\": null,\n    \"City\": \"Alessandria\",\n    \"ZipCode\": \"15121\",\n    \"CountyOrState\": \"AL\",\n    \"Phone\": null,\n    \"Email1\": null,\n    \"Email2\": null,\n    \"URL\": null,\n    \"VatCode\": null,\n    \"idCountry\": 108,\n    \"CountryIsoName\": null,\n    \"PersonType\": 0,\n    \"idParentPerson\": null,\n    \"OrderIndex\": 0,\n    \"EnabledForAmazon\": false\n}"}],"_postman_id":"04247918-f5b6-47b4-860c-a5d0a0af4e1b"},{"name":"Delete","id":"92ad8ae3-36f9-4b19-bafd-a49b8e3424e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{endpoint}}/manufacturers/{{idManufacturer}}","description":"<p>Removes a Manufacturer, its responsible persons and its brands</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["manufacturers","{{idManufacturer}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"30351c34-6dff-46af-843d-41f55d730d65","name":"Delete","originalRequest":{"method":"DELETE","header":[],"url":"{{endpoint}}/manufacturers/92"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"341"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 15 Nov 2024 15:10:53 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"idManufacturerPerson\": 92,\n    \"CompanyName\": \"Test company\",\n    \"Address1\": \"Corso Acqui, 382\",\n    \"Address2\": null,\n    \"City\": \"Alessandria\",\n    \"ZipCode\": \"15121\",\n    \"CountyOrState\": \"AL\",\n    \"Phone\": null,\n    \"Email1\": null,\n    \"Email2\": null,\n    \"URL\": null,\n    \"VatCode\": null,\n    \"idCountry\": 108,\n    \"CountryIsoName\": null,\n    \"PersonType\": 0,\n    \"idParentPerson\": null,\n    \"OrderIndex\": 0,\n    \"EnabledForAmazon\": false\n}"}],"_postman_id":"92ad8ae3-36f9-4b19-bafd-a49b8e3424e1"}],"id":"a511dd17-49ca-42b5-b917-19bd7d60263c","_postman_id":"a511dd17-49ca-42b5-b917-19bd7d60263c","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Responsible Persons","item":[{"name":"Create","id":"35e05217-d7d9-4988-b53f-bd4851be4f0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CompanyName\": \"{{CompanyName}}\",\r\n    \"Address1\": \"{{Address1}}\",\r\n    \"ZipCode\": \"{{ZipCode}}\",\r\n    \"City\": \"{{City}}\",\r\n    \"CountyOrState\": \"{{CountyOrState}}\",\r\n    \"idCountry\": {{idCountry}},\r\n    \"PhoneNumber\": \"{{PhoneNumber}}\",\r\n    \"EnabledForAmazon\": {{EnabledForAmazon}}\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/manufacturers/{{idManufacturer}}/ResponsiblePerson","description":"<p>Creates a new responsible person related to the manufacturer whose ID is in the idManufacturer parameter. Properties:</p>\n<ul>\n<li><p><strong>CompanyName</strong>: must be unique inside the whole Manufacturer Center</p>\n</li>\n<li><p><strong>Address1:</strong> address row 1</p>\n</li>\n<li><p><strong>Address2</strong>: address row 2</p>\n</li>\n<li><p><strong>City</strong>: city</p>\n</li>\n<li><p><strong>ZipCode</strong>: postal code</p>\n</li>\n<li><p><strong>CountyOrState</strong>: county abbreviation</p>\n</li>\n<li><p><strong>Phone</strong>: phone number</p>\n</li>\n<li><p><strong>Email1</strong>: email address 1</p>\n</li>\n<li><p><strong>Email2</strong>: email address 2</p>\n</li>\n<li><p><strong>URL</strong>: website URL</p>\n</li>\n<li><p><strong>VatCode</strong>: vat code</p>\n</li>\n<li><p><strong>idCountry</strong>: country ID</p>\n</li>\n<li><p><strong>EnabledForAmazon</strong>: is set to true, informations will be sent to Amazon. Please ensure that manufacturer is known and validated on Amazon Seller Central before setting this to true</p>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["manufacturers","{{idManufacturer}}","ResponsiblePerson"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"c6d6b533-d45a-48c4-b0a5-8be083924f4b","name":"Create","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CompanyName\": \"Test RP\",\r\n    \"Address1\": \"Corso Acqui, 382\",\r\n    \"ZipCode\": \"15121\",\r\n    \"City\": \"Alessandria\",\r\n    \"CountyOrState\": \"AL\",\r\n    \"idCountry\": 108,\r\n    \"PhoneNumber\": \"00390131251385\",\r\n    \"EnabledForAmazon\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"https://rest.marketrock.it/api/manufacturers/92/responsibleperson"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"345"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 15 Nov 2024 15:05:13 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"idManufacturerPerson\": 93,\n    \"CompanyName\": \"Test RP\",\n    \"Address1\": \"Corso Acqui, 382\",\n    \"Address2\": null,\n    \"City\": \"Alessandria\",\n    \"ZipCode\": \"15121\",\n    \"CountyOrState\": \"AL\",\n    \"Phone\": null,\n    \"Email1\": null,\n    \"Email2\": null,\n    \"URL\": null,\n    \"VatCode\": null,\n    \"idCountry\": 108,\n    \"CountryIsoName\": null,\n    \"PersonType\": 1,\n    \"idParentPerson\": 92,\n    \"OrderIndex\": 0,\n    \"EnabledForAmazon\": true\n}"}],"_postman_id":"35e05217-d7d9-4988-b53f-bd4851be4f0d"},{"name":"Update","id":"57ab2c08-b660-406e-ae5c-ef6f203b98aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CompanyName\": \"{{CompanyName}}\",\r\n    \"Address1\": \"{{Address1}}\",\r\n    \"ZipCode\": \"{{ZipCode}}\",\r\n    \"City\": \"{{City}}\",\r\n    \"CountyOrState\": \"{{CountyOrState}}\",\r\n    \"idCountry\": {{idCountry}},\r\n    \"PhoneNumber\": \"{{PhoneNumber}}\",\r\n    \"EnabledForAmazon\": {{EnabledForAmazon}}\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/manufacturers/{{idManufacturer}}/ResponsiblePerson/{{idResponsiblePerson}}","description":"<p>Updates an existing responsible person related to the manufacturer whose ID is in the idManufacturer parameter. Properties:</p>\n<ul>\n<li><p><strong>CompanyName</strong>: must be unique inside the whole Manufacturer Center</p>\n</li>\n<li><p><strong>Address1:</strong> address row 1</p>\n</li>\n<li><p><strong>Address2</strong>: address row 2</p>\n</li>\n<li><p><strong>City</strong>: city</p>\n</li>\n<li><p><strong>ZipCode</strong>: postal code</p>\n</li>\n<li><p><strong>CountyOrState</strong>: county abbreviation</p>\n</li>\n<li><p><strong>Phone</strong>: phone number</p>\n</li>\n<li><p><strong>Email1</strong>: email address 1</p>\n</li>\n<li><p><strong>Email2</strong>: email address 2</p>\n</li>\n<li><p><strong>URL</strong>: website URL</p>\n</li>\n<li><p><strong>VatCode</strong>: vat code</p>\n</li>\n<li><p><strong>idCountry</strong>: country ID</p>\n</li>\n<li><p><strong>EnabledForAmazon</strong>: is set to true, informations will be sent to Amazon. Please ensure that manufacturer is known and validated on Amazon Seller Central before setting this to true</p>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["manufacturers","{{idManufacturer}}","ResponsiblePerson","{{idResponsiblePerson}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"c877d8e3-8a57-41e1-81e3-06343d012038","name":"Update","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CompanyName\": \"Test RP\",\r\n    \"Address1\": \"Corso Acqui, 382\",\r\n    \"ZipCode\": \"15121\",\r\n    \"City\": \"Alessandria\",\r\n    \"CountyOrState\": \"AL\",\r\n    \"idCountry\": 108,\r\n    \"PhoneNumber\": \"00390131251385\",\r\n    \"EnabledForAmazon\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/manufacturers/{{idManufacturer}}/ResponsiblePerson/{{idResponsiblePerson}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"346"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 15 Nov 2024 15:16:15 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"idManufacturerPerson\": 95,\n    \"CompanyName\": \"Test RP\",\n    \"Address1\": \"Corso Acqui, 382\",\n    \"Address2\": null,\n    \"City\": \"Alessandria\",\n    \"ZipCode\": \"15121\",\n    \"CountyOrState\": \"AL\",\n    \"Phone\": null,\n    \"Email1\": null,\n    \"Email2\": null,\n    \"URL\": null,\n    \"VatCode\": null,\n    \"idCountry\": 108,\n    \"CountryIsoName\": null,\n    \"PersonType\": 1,\n    \"idParentPerson\": 94,\n    \"OrderIndex\": 0,\n    \"EnabledForAmazon\": false\n}"}],"_postman_id":"57ab2c08-b660-406e-ae5c-ef6f203b98aa"},{"name":"Delete","id":"a55346de-ff8d-492e-909d-24240ac8d25e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{endpoint}}/manufacturers/{{idManufacturer}}/ResponsiblePerson/{{idResponsiblePerson}}","description":"<p>Deletes a Responsible Person</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["manufacturers","{{idManufacturer}}","ResponsiblePerson","{{idResponsiblePerson}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"3df13fc2-98be-4a8a-bc5e-657ab4c67d3b","name":"New Request","originalRequest":{"method":"DELETE","header":[],"url":"{{endpoint}}/manufacturers/94/ResponsiblePerson/95"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"337"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 15 Nov 2024 15:17:24 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"idManufacturerPerson\": 95,\n    \"CompanyName\": \"Test RP\",\n    \"Address1\": \"Corso Acqui, 382\",\n    \"Address2\": null,\n    \"City\": \"Alessandria\",\n    \"ZipCode\": \"15121\",\n    \"CountyOrState\": \"AL\",\n    \"Phone\": null,\n    \"Email1\": null,\n    \"Email2\": null,\n    \"URL\": null,\n    \"VatCode\": null,\n    \"idCountry\": 108,\n    \"CountryIsoName\": null,\n    \"PersonType\": 1,\n    \"idParentPerson\": 94,\n    \"OrderIndex\": 0,\n    \"EnabledForAmazon\": false\n}"}],"_postman_id":"a55346de-ff8d-492e-909d-24240ac8d25e"},{"name":"Get","id":"650e6d79-d1ad-49ed-8e60-f6383ac46b5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/manufacturers/{{idManufacturer}}/ResponsiblePerson/{{idResponsiblePerson}}","description":"<p>Retrieves a manufacturer</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["manufacturers","{{idManufacturer}}","ResponsiblePerson","{{idResponsiblePerson}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"766dae28-bd57-4dee-a44e-7fe73c7ed424","name":"Get","originalRequest":{"method":"GET","header":[],"url":"https://rest.marketrock.it/api/manufacturers/92/responsibleperson/93"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"342"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 15 Nov 2024 15:18:01 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"idManufacturerPerson\": 93,\n    \"CompanyName\": \"Test RP\",\n    \"Address1\": \"Corso Acqui, 382\",\n    \"Address2\": null,\n    \"City\": \"Alessandria\",\n    \"ZipCode\": \"15121\",\n    \"CountyOrState\": \"AL\",\n    \"Phone\": null,\n    \"Email1\": null,\n    \"Email2\": null,\n    \"URL\": null,\n    \"VatCode\": null,\n    \"idCountry\": 108,\n    \"CountryIsoName\": null,\n    \"PersonType\": 1,\n    \"idParentPerson\": 92,\n    \"OrderIndex\": 0,\n    \"EnabledForAmazon\": true\n}"}],"_postman_id":"650e6d79-d1ad-49ed-8e60-f6383ac46b5f"}],"id":"be6ce90d-7854-4951-995f-442b81697dfa","_postman_id":"be6ce90d-7854-4951-995f-442b81697dfa","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Brands","item":[{"name":"Create","id":"eda48ccb-c24a-4ff4-bfe0-988ddfb565f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Brand\": \"{{Brand}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/manufacturers/{{idManufacturer}}/brands","description":"<p>Creates a new brand related to the manufacturer whose ID is in the idManufacturer parameter. Properties:</p>\n<ul>\n<li><strong>Brand</strong>: brand name</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["manufacturers","{{idManufacturer}}","brands"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"8a555a14-6f28-48a9-a7ed-d6500a58d579","name":"Create Brand","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Brand\": \"Test brand\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/manufacturers/92/brands"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"162"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 15 Nov 2024 15:07:09 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"idManufacturerPerson\": 92,\n    \"Brand\": \"Test brand\"\n}"}],"_postman_id":"eda48ccb-c24a-4ff4-bfe0-988ddfb565f1"},{"name":"List","id":"578955af-3604-4af0-91c9-ad2aec800deb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/manufacturers/{{idManufacturer}}/brands","description":"<p>Get all brands associated to a manufacturer</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["manufacturers","{{idManufacturer}}","brands"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"2279ada3-5957-4eec-ac35-b8624ee2167d","name":"List","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/manufacturers/94/brands"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"165"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 15 Nov 2024 15:21:00 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"idManufacturerPerson\": 94,\n        \"Brand\": \"Test brand\"\n    }\n]"}],"_postman_id":"578955af-3604-4af0-91c9-ad2aec800deb"},{"name":"Delete","id":"68d7dc75-b0b5-4017-92fa-722a3e515c7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Brand\": \"{{BrandName}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/manufacturers/{{idManufacturer}}/brands","description":"<p>Removes a brand from a manufacturer</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["manufacturers","{{idManufacturer}}","brands"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"ff8ca466-ad38-44da-a67a-648c32828a74","name":"Delete","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Brand\": \"Test Brand\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/manufacturers/94/brands"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"162"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 15 Nov 2024 15:23:00 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"idManufacturerPerson\": 94,\n    \"Brand\": \"Test brand\"\n}"}],"_postman_id":"68d7dc75-b0b5-4017-92fa-722a3e515c7d"}],"id":"73868f74-12ce-4641-9d88-207cb7898cb5","_postman_id":"73868f74-12ce-4641-9d88-207cb7898cb5","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Search","id":"d66df28f-cdf4-4493-a74b-7eabbbc6cc45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"description":"<p>Searches for manufacturers or responsible persons inside MarketRock's \"Manufacturer Center\".</p>\n<p>Available fields:</p>\n<ul>\n<li><p><strong>page</strong>: page number, starting from 0</p>\n</li>\n<li><p><strong>pageSize</strong>: page size, max value 200</p>\n</li>\n<li><p><strong>filters</strong>: array of filter. Each filter contains:</p>\n<ul>\n<li><p><strong>field</strong>: field to filter on. Valid values: <em>Brand</em>, <em>CompanyName</em>, <em>PersonType</em> (0 = Manufacturer, 1 = ResponsiblePerson)</p>\n</li>\n<li><p><strong>values</strong>: array of values to filter. Some filters may accept only one value</p>\n</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"query":[],"variable":[]},"url":""},"response":[{"id":"a22cdfae-1c92-4174-b9d9-4e8b13d7ca06","name":"Search","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"page\": 0,\r\n  \"pageSize\": 20\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/manufacturers/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"2474"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 15 Nov 2024 14:54:54 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"PageSize\": 20,\n    \"Page\": 0,\n    \"TotalCount\": 59,\n    \"Content\": [\n        {\n            \"idManufacturerPerson\": 30,\n            \"CompanyName\": \"274152\",\n            \"Address1\": null,\n            \"Address2\": null,\n            \"City\": null,\n            \"ZipCode\": null,\n            \"CountyOrState\": null,\n            \"Phone\": null,\n            \"Email1\": null,\n            \"Email2\": null,\n            \"URL\": null,\n            \"VatCode\": null,\n            \"idCountry\": null,\n            \"CountryIsoName\": null,\n            \"PersonType\": 0,\n            \"idParentPerson\": null,\n            \"OrderIndex\": 0,\n            \"EnabledForAmazon\": false\n        },\n        {\n            \"idManufacturerPerson\": 40,\n            \"CompanyName\": \"AB Electrolux (publ)\",\n            \"Address1\": \"S:t Göransgatan 143, Stadshagen\",\n            \"Address2\": null,\n            \"City\": \"Stockholm\",\n            \"ZipCode\": null,\n            \"CountyOrState\": null,\n            \"Phone\": \"+46 (0)8-7386000\",\n            \"Email1\": \"customerservice@electrolux.com\",\n            \"Email2\": null,\n            \"URL\": \"https://www.electroluxgroup.com/\",\n            \"VatCode\": null,\n            \"idCountry\": 212,\n            \"CountryIsoName\": \"SE\",\n            \"PersonType\": 0,\n            \"idParentPerson\": null,\n            \"OrderIndex\": 0,\n            \"EnabledForAmazon\": false\n        },\n        {\n            \"idManufacturerPerson\": 60,\n            \"CompanyName\": \"Adeva SAS\",\n            \"Address1\": \"8 Rue Marc Seguin\",\n            \"Address2\": null,\n            \"City\": \"Compans\",\n            \"ZipCode\": \"77290\",\n            \"CountyOrState\": null,\n            \"Phone\": null,\n            \"Email1\": \"contact@hkoenig.com\",\n            \"Email2\": null,\n            \"URL\": \"https://www.hkoenig.com/\",\n            \"VatCode\": null,\n            \"idCountry\": 74,\n            \"CountryIsoName\": \"FR\",\n            \"PersonType\": 0,\n            \"idParentPerson\": null,\n            \"OrderIndex\": 0,\n            \"EnabledForAmazon\": false\n        },\n        {\n            \"idManufacturerPerson\": 64,\n            \"CompanyName\": \"Alfred Kärcher SE & Co. KG\",\n            \"Address1\": \"Friedrich-List-Straße 4\",\n            \"Address2\": null,\n            \"City\": \"Winnenden\",\n            \"ZipCode\": \"D-71364\",\n            \"CountyOrState\": null,\n            \"Phone\": \"(07195) 903-0\",\n            \"Email1\": \"info@vertrieb.kaercher.com\",\n            \"Email2\": null,\n            \"URL\": \"https://www.kaercher.com/\",\n            \"VatCode\": \"DE176055816\",\n            \"idCountry\": 81,\n            \"CountryIsoName\": \"DE\",\n            \"PersonType\": 0,\n            \"idParentPerson\": null,\n            \"OrderIndex\": 0,\n            \"EnabledForAmazon\": false\n        },\n        {\n            \"idManufacturerPerson\": 71,\n            \"CompanyName\": \"ASACHIMICI DI CARUBELLI GIANCARLO E C. SNC\",\n            \"Address1\": \"VIA NAZARIO SAURO 24\",\n            \"Address2\": null,\n            \"City\": \"VESCOVATO\",\n            \"ZipCode\": \"26039\",\n            \"CountyOrState\": \"CR\",\n            \"Phone\": null,\n            \"Email1\": \"asachimici@legalmail.it\",\n            \"Email2\": null,\n            \"URL\": \"https://www.pulicaff.com/\",\n            \"VatCode\": \"00831230198\",\n            \"idCountry\": 108,\n            \"CountryIsoName\": \"IT\",\n            \"PersonType\": 0,\n            \"idParentPerson\": null,\n            \"OrderIndex\": 0,\n            \"EnabledForAmazon\": false\n        },\n        {\n            \"idManufacturerPerson\": 36,\n            \"CompanyName\": \"Axor S.r.l.\",\n            \"Address1\": \"Via dell'Artigianato, 8,\",\n            \"Address2\": null,\n            \"City\": \"Pernumia\",\n            \"ZipCode\": \"35020\",\n            \"CountyOrState\": \"PD\",\n            \"Phone\": \"05178190285\",\n            \"Email1\": \"info@axor.net\",\n            \"Email2\": null,\n            \"URL\": \"https://www.axor.net/\",\n            \"VatCode\": null,\n            \"idCountry\": 108,\n            \"CountryIsoName\": \"IT\",\n            \"PersonType\": 0,\n            \"idParentPerson\": null,\n            \"OrderIndex\": 0,\n            \"EnabledForAmazon\": false\n        },\n        {\n            \"idManufacturerPerson\": 86,\n            \"CompanyName\": \"B&W Handelsgesellschaft mbH\",\n            \"Address1\": \"Thormeyerstr. 1\",\n            \"Address2\": null,\n            \"City\": \"Bischofswerda\",\n            \"ZipCode\": \"01877\",\n            \"CountyOrState\": null,\n            \"Phone\": \"+49 3594 79989491\",\n            \"Email1\": \"info.de@electropapa.com\",\n            \"Email2\": null,\n            \"URL\": \"https://electropapa.com\",\n            \"VatCode\": null,\n            \"idCountry\": 81,\n            \"CountryIsoName\": \"DE\",\n            \"PersonType\": 0,\n            \"idParentPerson\": null,\n            \"OrderIndex\": 0,\n            \"EnabledForAmazon\": false\n        },\n        {\n            \"idManufacturerPerson\": 46,\n            \"CompanyName\": \"BEKO ITALY S.R.L.\",\n            \"Address1\": \"VIA VARESINA 162\",\n            \"Address2\": null,\n            \"City\": \"MILANO\",\n            \"ZipCode\": \"20156\",\n            \"CountyOrState\": \"MI\",\n            \"Phone\": null,\n            \"Email1\": \"beko.italy.postacert@legalmail.it\",\n            \"Email2\": null,\n            \"URL\": \"https://www.beko.com/it-it\",\n            \"VatCode\": null,\n            \"idCountry\": 108,\n            \"CountryIsoName\": \"IT\",\n            \"PersonType\": 0,\n            \"idParentPerson\": null,\n            \"OrderIndex\": 0,\n            \"EnabledForAmazon\": false\n        },\n        {\n            \"idManufacturerPerson\": 50,\n            \"CompanyName\": \"BSH Hausgeräte GmbH\",\n            \"Address1\": \"Carl-Wery-Str. 34\",\n            \"Address2\": null,\n            \"City\": \"München\",\n            \"ZipCode\": \"81739\",\n            \"CountyOrState\": null,\n            \"Phone\": null,\n            \"Email1\": \"Corporate.Communications@bshg.com\",\n            \"Email2\": null,\n            \"URL\": \"https://www.bsh-group.com/\",\n            \"VatCode\": \"DE811150483\",\n            \"idCountry\": 81,\n            \"CountryIsoName\": \"DE\",\n            \"PersonType\": 0,\n            \"idParentPerson\": null,\n            \"OrderIndex\": 0,\n            \"EnabledForAmazon\": false\n        },\n        {\n            \"idManufacturerPerson\": 49,\n            \"CompanyName\": \"CAMAR s.r.l.s\",\n            \"Address1\": \"Viale Salvo D’Acquisto\",\n            \"Address2\": null,\n            \"City\": \"Trentola Ducenta\",\n            \"ZipCode\": \"81038\",\n            \"CountyOrState\": \"CE\",\n            \"Phone\": null,\n            \"Email1\": \"info@macchinearoma.com\",\n            \"Email2\": null,\n            \"URL\": \"https://macchinearoma.com/\",\n            \"VatCode\": null,\n            \"idCountry\": 108,\n            \"CountryIsoName\": \"IT\",\n            \"PersonType\": 0,\n            \"idParentPerson\": null,\n            \"OrderIndex\": 0,\n            \"EnabledForAmazon\": false\n        },\n        {\n            \"idManufacturerPerson\": 48,\n            \"CompanyName\": \"CANDY HOOVER GROUP S.R.L.\",\n            \"Address1\": \"VIA COMOLLI 0016\",\n            \"Address2\": null,\n            \"City\": \"BRUGHERIO\",\n            \"ZipCode\": \"20861\",\n            \"CountyOrState\": \"MB\",\n            \"Phone\": null,\n            \"Email1\": \"candyhoovergroupsrl@legalmail.it\",\n            \"Email2\": null,\n            \"URL\": \"https://www.candy-home.com/it_IT/\",\n            \"VatCode\": null,\n            \"idCountry\": 108,\n            \"CountryIsoName\": \"IT\",\n            \"PersonType\": 0,\n            \"idParentPerson\": null,\n            \"OrderIndex\": 0,\n            \"EnabledForAmazon\": false\n        },\n        {\n            \"idManufacturerPerson\": 84,\n            \"CompanyName\": \"CEME S.P.A.\",\n            \"Address1\": \"VIALE DELL'INDUSTRIA 5\",\n            \"Address2\": null,\n            \"City\": \"TRIVOLZIO\",\n            \"ZipCode\": \"27020\",\n            \"CountyOrState\": \"PV\",\n            \"Phone\": null,\n            \"Email1\": \"cemespa@legalmail.it\",\n            \"Email2\": null,\n            \"URL\": \"https://www.cemegroup.com/\",\n            \"VatCode\": \"06259720966\",\n            \"idCountry\": 108,\n            \"CountryIsoName\": \"IT\",\n            \"PersonType\": 0,\n            \"idParentPerson\": null,\n            \"OrderIndex\": 0,\n            \"EnabledForAmazon\": false\n        },\n        {\n            \"idManufacturerPerson\": 39,\n            \"CompanyName\": \"Classic Service Parts GmbH\",\n            \"Address1\": \"Rodensteiner Str. 40\",\n            \"Address2\": null,\n            \"City\": \"Reichelsheim\",\n            \"ZipCode\": \"64385\",\n            \"CountyOrState\": null,\n            \"Phone\": \"+49616451590\",\n            \"Email1\": \"mail@classic-serviceparts.com\",\n            \"Email2\": null,\n            \"URL\": null,\n            \"VatCode\": null,\n            \"idCountry\": 81,\n            \"CountryIsoName\": \"DE\",\n            \"PersonType\": 0,\n            \"idParentPerson\": null,\n            \"OrderIndex\": 0,\n            \"EnabledForAmazon\": false\n        },\n        {\n            \"idManufacturerPerson\": 41,\n            \"CompanyName\": \"Conair Italy Srl\",\n            \"Address1\": \"VIA EMILIO MOROSINI 32\",\n            \"Address2\": null,\n            \"City\": \"MILANO\",\n            \"ZipCode\": \"20135\",\n            \"CountyOrState\": \"MI\",\n            \"Phone\": null,\n            \"Email1\": \"conairitaly@legalmail.it\",\n            \"Email2\": null,\n            \"URL\": \"https://www.babyliss.com/it-it/home/\",\n            \"VatCode\": null,\n            \"idCountry\": 108,\n            \"CountryIsoName\": \"IT\",\n            \"PersonType\": 0,\n            \"idParentPerson\": null,\n            \"OrderIndex\": 0,\n            \"EnabledForAmazon\": false\n        },\n        {\n            \"idManufacturerPerson\": 24,\n            \"CompanyName\": \"DBN Communication srl\",\n            \"Address1\": \"Corso Acqui, 382\",\n            \"Address2\": null,\n            \"City\": \"Alessandria\",\n            \"ZipCode\": \"15121\",\n            \"CountyOrState\": \"AL\",\n            \"Phone\": \"0131251385\",\n            \"Email1\": \"info@dontbenegative.it\",\n            \"Email2\": null,\n            \"URL\": \"www.dontbenegative.it\",\n            \"VatCode\": null,\n            \"idCountry\": 108,\n            \"CountryIsoName\": \"IT\",\n            \"PersonType\": 0,\n            \"idParentPerson\": null,\n            \"OrderIndex\": 0,\n            \"EnabledForAmazon\": false\n        },\n        {\n            \"idManufacturerPerson\": 26,\n            \"CompanyName\": \"De'Longhi Appliances s.r.l\",\n            \"Address1\": \"Via San Quirico, 300\",\n            \"Address2\": null,\n            \"City\": \"Campi Bisenzio\",\n            \"ZipCode\": \"50013\",\n            \"CountyOrState\": \"FI\",\n            \"Phone\": \"800809065\",\n            \"Email1\": \"corporate.affairs@delonghigroup.com\",\n            \"Email2\": null,\n            \"URL\": \"https://www.ariete.net\",\n            \"VatCode\": \"00698370962\",\n            \"idCountry\": 108,\n            \"CountryIsoName\": \"IT\",\n            \"PersonType\": 0,\n            \"idParentPerson\": null,\n            \"OrderIndex\": 0,\n            \"EnabledForAmazon\": false\n        },\n        {\n            \"idManufacturerPerson\": 35,\n            \"CompanyName\": \"De'Longhi Appliances S.r.l.\",\n            \"Address1\": \"Via L. Seitz, 47\",\n            \"Address2\": null,\n            \"City\": \"Treviso\",\n            \"ZipCode\": \"31100\",\n            \"CountyOrState\": null,\n            \"Phone\": null,\n            \"Email1\": \"delonghiappliances@pec.delonghiappliances.it\",\n            \"Email2\": null,\n            \"URL\": \"https://www.delonghi.com\",\n            \"VatCode\": null,\n            \"idCountry\": 108,\n            \"CountryIsoName\": \"IT\",\n            \"PersonType\": 0,\n            \"idParentPerson\": null,\n            \"OrderIndex\": 0,\n            \"EnabledForAmazon\": false\n        },\n        {\n            \"idManufacturerPerson\": 51,\n            \"CompanyName\": \"DIDIESSE S.R.L.\",\n            \"Address1\": \"ZONA ASI LOCALITA' PASCAROLA SNC\",\n            \"Address2\": null,\n            \"City\": \"Caivano\",\n            \"ZipCode\": \"80023\",\n            \"CountyOrState\": \"NA\",\n            \"Phone\": null,\n            \"Email1\": \"info@pec.didiessesrl.eu\",\n            \"Email2\": null,\n            \"URL\": \"https://didiessesrl.eu/\",\n            \"VatCode\": null,\n            \"idCountry\": 108,\n            \"CountryIsoName\": \"IT\",\n            \"PersonType\": 0,\n            \"idParentPerson\": null,\n            \"OrderIndex\": 0,\n            \"EnabledForAmazon\": false\n        },\n        {\n            \"idManufacturerPerson\": 52,\n            \"CompanyName\": \"DYSON S.R.L.\",\n            \"Address1\": \"PIAZZA GAE AULENTI 4\",\n            \"Address2\": null,\n            \"City\": \"MILANO\",\n            \"ZipCode\": \"20154\",\n            \"CountyOrState\": \"MI\",\n            \"Phone\": null,\n            \"Email1\": \"dyson@cert.fidiger.it\",\n            \"Email2\": null,\n            \"URL\": \"https://www.dyson.it/it\",\n            \"VatCode\": null,\n            \"idCountry\": 108,\n            \"CountryIsoName\": \"IT\",\n            \"PersonType\": 0,\n            \"idParentPerson\": null,\n            \"OrderIndex\": 0,\n            \"EnabledForAmazon\": false\n        },\n        {\n            \"idManufacturerPerson\": 53,\n            \"CompanyName\": \"ELCHIM S.p.A.\",\n            \"Address1\": \"CORSO INDIPENDENZA 5\",\n            \"Address2\": null,\n            \"City\": \"MILANO\",\n            \"ZipCode\": \"20129\",\n            \"CountyOrState\": \"MI\",\n            \"Phone\": null,\n            \"Email1\": \"elchimspa@legalmail.it\",\n            \"Email2\": null,\n            \"URL\": \"https://elchim.com/\",\n            \"VatCode\": null,\n            \"idCountry\": 108,\n            \"CountryIsoName\": \"IT\",\n            \"PersonType\": 0,\n            \"idParentPerson\": null,\n            \"OrderIndex\": 0,\n            \"EnabledForAmazon\": false\n        }\n    ]\n}"}],"_postman_id":"d66df28f-cdf4-4493-a74b-7eabbbc6cc45"}],"id":"7b8aed17-3309-4ccc-a827-cc7d8070cf9f","description":"<p>Set of calls to manage Manufacturers, brands and UE responsible persons defined inside the Manufacturers Center.</p>\n","_postman_id":"7b8aed17-3309-4ccc-a827-cc7d8070cf9f","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}}],"id":"f13d7694-1082-47ae-af2a-69b74e66b592","_postman_id":"f13d7694-1082-47ae-af2a-69b74e66b592","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Distribution Hub","item":[{"name":"Marketplaces","item":[{"name":"Users","item":[{"name":"Parameters","item":[{"name":"Parameter Values","id":"fedc9241-f9b2-4b12-9361-740ca4c51c00","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Parameters\": \r\n    {\r\n        \"ShopId\": \"ABC\",\r\n        \"APIKey\": \"test\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/marketplaces/{{marketplace}}/users/params/{{parameterName}}/values","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["marketplaces","{{marketplace}}","users","params","{{parameterName}}","values"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fedc9241-f9b2-4b12-9361-740ca4c51c00"}],"id":"162da708-cb5e-4701-accf-6b353c7f50b6","_postman_id":"162da708-cb5e-4701-accf-6b353c7f50b6","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Users","id":"5be4d93d-6dc7-4b46-bf1f-8883bbd7d249","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/marketplaces/{{marketplace}}/users","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["marketplaces","{{marketplace}}","users"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"25bc99d0-c52b-4b6f-b9b9-9b9b95898fba","name":"Users","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/marketplaces/{{idModule}}/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 30 Oct 2023 16:29:19 GMT"},{"key":"Content-Length","value":"1397"}],"cookie":[],"responseTime":null,"body":"{\n    \"PageSize\": 6,\n    \"Page\": 0,\n    \"TotalCount\": 6,\n    \"Content\": [\n        {\n            \"CustomerId\": 2642,\n            \"idUser\": 631,\n            \"Name\": \"DBN.CA\",\n            \"idModule\": 4,\n            \"Expired\": false,\n            \"ExpiredOn\": null,\n            \"LastStockSync\": \"2023-10-30T16:07:20.067Z\",\n            \"LastOrderSync\": null,\n            \"IsLegacy\": true,\n            \"Parameters\": [],\n            \"PrivateParameters\": null\n        },\n        {\n            \"CustomerId\": 2642,\n            \"idUser\": 988,\n            \"Name\": \"test2\",\n            \"idModule\": 4,\n            \"Expired\": false,\n            \"ExpiredOn\": null,\n            \"LastStockSync\": \"2023-10-30T16:25:59.61Z\",\n            \"LastOrderSync\": null,\n            \"IsLegacy\": true,\n            \"Parameters\": [],\n            \"PrivateParameters\": null\n        },\n        {\n            \"CustomerId\": 2642,\n            \"idUser\": 987,\n            \"Name\": \"test\",\n            \"idModule\": 4,\n            \"Expired\": false,\n            \"ExpiredOn\": null,\n            \"LastStockSync\": \"2023-10-30T16:25:59.563Z\",\n            \"LastOrderSync\": null,\n            \"IsLegacy\": true,\n            \"Parameters\": [],\n            \"PrivateParameters\": null\n        },\n        {\n            \"CustomerId\": 2642,\n            \"idUser\": 1047,\n            \"Name\": \"Amazon Poland\",\n            \"idModule\": 4,\n            \"Expired\": false,\n            \"ExpiredOn\": null,\n            \"LastStockSync\": \"2023-10-30T16:26:35.56Z\",\n            \"LastOrderSync\": \"2023-10-30T16:07:01.91Z\",\n            \"IsLegacy\": true,\n            \"Parameters\": [],\n            \"PrivateParameters\": null\n        },\n        {\n            \"CustomerId\": 2642,\n            \"idUser\": 1048,\n            \"Name\": \"Amazon Italy\",\n            \"idModule\": 4,\n            \"Expired\": false,\n            \"ExpiredOn\": null,\n            \"LastStockSync\": \"2023-10-30T16:26:42.327Z\",\n            \"LastOrderSync\": \"2023-10-30T16:07:01.91Z\",\n            \"IsLegacy\": true,\n            \"Parameters\": [],\n            \"PrivateParameters\": null\n        },\n        {\n            \"CustomerId\": 2642,\n            \"idUser\": 989,\n            \"Name\": \"test 3\",\n            \"idModule\": 4,\n            \"Expired\": false,\n            \"ExpiredOn\": null,\n            \"LastStockSync\": \"2023-10-30T16:26:06.05Z\",\n            \"LastOrderSync\": null,\n            \"IsLegacy\": true,\n            \"Parameters\": [],\n            \"PrivateParameters\": null\n        }\n    ]\n}"}],"_postman_id":"5be4d93d-6dc7-4b46-bf1f-8883bbd7d249"}],"id":"d7cb3a01-829d-4675-afea-16a50423c3d8","_postman_id":"d7cb3a01-829d-4675-afea-16a50423c3d8","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Synchronization","item":[{"name":"Download offers","id":"2a246cb1-6025-4d33-a569-b9a17a7ca7a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"idUser\": {{idUser}},\r\n\t\"SubModuleName\": \"{{SubModuleName}}\",\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/marketplaces/{{marketplace}}/offers/download","description":"<p>Download offers for a particular marketplace.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["marketplaces","{{marketplace}}","offers","download"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2a246cb1-6025-4d33-a569-b9a17a7ca7a4"},{"name":"Get offers","id":"71911ae5-6af0-405e-b1f4-0f31fcffd618","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"idUser\": {{idUser}},\r\n\t\"SubModuleName\": \"{{SubModuleName}}\",\r\n\t\"Page\": 0,\r\n\t\"PageSize\": 100,\r\n\t\"Filters\": []\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/marketplaces/{{marketplace}}/offers","description":"<p>Retrieve offers for a particular marketplace.</p>\n<p>You can use the following filters:</p>\n<ul>\n<li><p><strong>MarketplaceSKU</strong>: you can pass multiple values, filters offers using the SKU set on the marketplace</p>\n</li>\n<li><p><strong>Connected</strong>: true / false, in order tro retrieve offers which are or aren't yet connected to a product on MarketRock</p>\n</li>\n<li><p><strong>MarketplaceName</strong>: you can pass multiple values, filters offers using the name</p>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["marketplaces","{{marketplace}}","offers"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"71911ae5-6af0-405e-b1f4-0f31fcffd618"},{"name":"Link offers","id":"ead3be14-cdab-4c13-aed7-1ed077f2a4d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"idUser\": {{idUser}},\r\n    \"SubModuleName\": \"{{SubModuleName}}\",\r\n    \"Links\": \r\n    [\r\n        {\r\n            \"idOffer\": {{idOffer}},\r\n            \"idItem\": {{idItem}},\r\n\t\t\t\t\t\t\"OverwriteQuantity\": {{OverwriteQuantity}},\r\n\t\t\t\t\t\t\"OverwritePrice\": {{OverwritePrice}}\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/marketplaces/{{marketplace}}/offers/link","description":"<p>Connects one or more offers to one or more products on MarketRocks' inventory. In order to create a link you must pass:</p>\n<ul>\n<li><p><strong>idItem</strong>: id of the product on MarketRock inventory</p>\n</li>\n<li><p><strong>idOffer</strong>: id of the offer as retrieved by the call \"Get offers\"</p>\n</li>\n<li><p><strong>OverwriteQuantity</strong>: boolean which tells MarketRock to overwrite the quantity with the value taken from this marketplace. <strong>Attention:</strong> this means that this value will be sent to all the connected marketplaces</p>\n</li>\n<li><p><strong>OverwritePrice</strong>: boolean which tells MarketRock to overwrite the price with the value taken from this marketplace. <strong>Attention:</strong> this means that this value will be sent to all the connected marketplaces</p>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["marketplaces","{{marketplace}}","offers","link"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ead3be14-cdab-4c13-aed7-1ed077f2a4d8"},{"name":"Create product from offer","id":"cced0a7a-8bce-4310-80d9-75cd207b591a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"idUser\": {{idUser}},\r\n    \"SubModuleName\": \"{{SubModuleName}}\",\r\n    \"Offers\": \r\n    [\r\n        {\r\n            \"idOffer\": {{idOffer}},\r\n            \"SKU\": {{SKU}}\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/marketplaces/{{marketplace}}/offers/convert","description":"<p>Creates a product on MarketRock's catalog by using informations contained in an offer.</p>\n<p>You can bulk create multiple products, by specifying multiple offers.</p>\n<p>For each offer you must specify:</p>\n<ul>\n<li><p><strong>idOffer</strong>: which is the ID of the offer, as returned by the \"Get offers\" call</p>\n</li>\n<li><p><strong>SKU</strong>: which is the SKU that you want to be created on MarketRoc</p>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["marketplaces","{{marketplace}}","offers","convert"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cced0a7a-8bce-4310-80d9-75cd207b591a"},{"name":"Unlink offers","id":"ea1b2a1c-ccb0-4ac1-9d7c-9325dcf7a7ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Links\": \r\n    [\r\n        {\r\n            \"idUser\": 832,\r\n            \"SubModuleName\": \"paradiso-della-brugola-edock\",\r\n            \"idItem\": 124,\r\n            \"MarketplaceSKU\": \"2_Cameradaria_Goccia4\",\r\n            \"LinkIdentifier\": \r\n            [\r\n                {\r\n                    \"Name\": \"ProductId\",\r\n                    \"Value\": \"7430501236936\"\r\n                },\r\n                {\r\n                    \"Name\": \"VariationId\",\r\n                    \"Value\": \"42287082635464\"\r\n                },\r\n                {\r\n                    \"Name\": \"InventoryItemId\",\r\n                    \"Value\": \"44381968990408\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/marketplaces/{{marketplace}}/offers/unlink","description":"<p>Scollega il prodotto / i prodotti passati al marketplace selezionato. Ogni link è composto dai seguenti parametri:</p>\n<ul>\n<li>idItem: id del prodotto MarketRock per il quale si vuole creare il collegamento</li>\n<li>idSubscription: id dell'utente del marketplace, così come recuperato da Distribuzione &gt; Utenti &gt; Users</li>\n<li>MarketplaceItemId: identificativo del marketplace</li>\n<li>MarketplaceSKU: non obbligatorio, indica se questo prodotto, su questo marketplace, fa uso di uno SKU diverso. Verrà creato come identificatore SKU</li>\n<li>SubModule: mercato nazionale del marketplace</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["marketplaces","{{marketplace}}","offers","unlink"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ea1b2a1c-ccb0-4ac1-9d7c-9325dcf7a7ff"}],"id":"05a45981-c681-446c-86c3-2ac7702d74ca","_postman_id":"05a45981-c681-446c-86c3-2ac7702d74ca","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Distribution","item":[{"name":"Rules","item":[{"name":"Parametri","item":[{"name":"Get parameters","id":"d004ad88-1ff5-4582-9f1c-699aadf74b15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/marketplaces/{{idModule}}/{{idUser}}/rules/parameters","description":"<p>Recupera i parametri definiti dal marketplace.</p>\n<p>Passando il parametro <code>categoryId</code> è possibile recuperare i parametri dipendenti da questa categoria.</p>\n<p>Per ogni parametro vengono passati i seguenti attributi:</p>\n<ul>\n<li><p><strong>IsRequired</strong>: boolean (true / false) che specifica se il parametro è richiesto per poter creare una regola</p>\n</li>\n<li><p><strong>GroupName</strong>: un nome che permette di raggruppare i parametri per una qualche caratteristica comune</p>\n</li>\n<li><p><strong>Name</strong>: nome del parametro</p>\n</li>\n<li><p><strong>IsUserDependent</strong>: boolean (true / false) che indica se i valori del parametro sono dipendenti dall'utente del marketplace con cui si crea la regola</p>\n</li>\n<li><p><strong>IsCategoryDependent</strong>: boolean (true / false) che indica se il parametro dipende dalla categoria marketplace in cui si crea la regola</p>\n</li>\n<li><p><strong>Type</strong>: tipologia di parametro:</p>\n<ul>\n<li><p>0 = Stringa</p>\n</li>\n<li><p>1 = Numero intero</p>\n</li>\n<li><p>2 = Numero decimale</p>\n</li>\n<li><p>3 = Password</p>\n</li>\n<li><p>4 = Selezione (i valori sono definiti dal marketplace)</p>\n</li>\n<li><p>5 = Boolean (true / false)</p>\n</li>\n<li><p>6 = Hierarchy (gerarchia, valori a cascata)</p>\n</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["marketplaces","{{idModule}}","{{idUser}}","rules","parameters"],"host":["{{endpoint}}"],"query":[{"disabled":true,"description":{"content":"<p>Id della categoria del marketplace</p>\n","type":"text/plain"},"key":"categoryId","value":"{{categoryId}}"}],"variable":[]}},"response":[{"id":"54977d0e-5f59-43ca-a3bf-ba424c336bc8","name":"Get parameters","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{endpoint}}/marketplaces/{{idModule}}/{{idUser}}/rules/parameters","host":["{{endpoint}}"],"path":["marketplaces","{{idModule}}","{{idUser}}","rules","parameters"],"query":[{"key":"categoryId","value":"6198093031","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 12 Sep 2023 13:53:24 GMT"},{"key":"Content-Length","value":"134"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"IsRequired\": true,\n        \"GroupName\": \"Category\",\n        \"Name\": \"category\",\n        \"IsUserDependent\": true,\n        \"IsCategoryDependent\": false,\n        \"Type\": 6,\n        \"Values\": []\n    }\n]"},{"id":"96fe62f8-4cca-4171-98ae-cef2c4fdee3e","name":"Get parameters (category dependent)","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{endpoint}}/marketplaces/{{idModule}}/{{idUser}}/rules/parameters?categoryId=6377736031","host":["{{endpoint}}"],"path":["marketplaces","{{idModule}}","{{idUser}}","rules","parameters"],"query":[{"key":"categoryId","value":"6377736031"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 12 Sep 2023 13:53:36 GMT"},{"key":"Content-Length","value":"130"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"IsRequired\": true,\n        \"GroupName\": null,\n        \"Name\": \"ProductType\",\n        \"IsUserDependent\": true,\n        \"IsCategoryDependent\": true,\n        \"Type\": 4,\n        \"Values\": []\n    }\n]"}],"_postman_id":"d004ad88-1ff5-4582-9f1c-699aadf74b15"},{"name":"Get parameter values","id":"44b26c4b-2290-4746-a3c7-5e7c270cd052","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/marketplaces/{{idModule}}/{{idUser}}/rules/parameters/{{parameterName}}/values","description":"<p>Recupera i valori di un determinato parametro.</p>\n<p>Se il parametro è dipendente dalla categoria, è necessario passare un valore per il parametro <strong>categoryId</strong>.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["marketplaces","{{idModule}}","{{idUser}}","rules","parameters","{{parameterName}}","values"],"host":["{{endpoint}}"],"query":[{"disabled":true,"description":{"content":"<p>Id categoria del marketplace</p>\n","type":"text/plain"},"key":"categoryId","value":"{{categoryId}}"}],"variable":[]}},"response":[{"id":"df510b0c-e09e-43cd-8c63-e45008c0322d","name":"Get parameter values","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/marketplaces/{{idModule}}/{{idUser}}/rules/parameters/category/values"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 12 Sep 2023 13:48:49 GMT"},{"key":"Content-Length","value":"1763"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"Name\": \"Alimentari e cura della casa\",\n        \"Value\": \"6198093031\"\n    },\n    {\n        \"Name\": \"Altro\",\n        \"Value\": \"425920031\"\n    },\n    {\n        \"Name\": \"App e Giochi\",\n        \"Value\": \"9378505031\"\n    },\n    {\n        \"Name\": \"Auto e Moto\",\n        \"Value\": \"1571281031\"\n    },\n    {\n        \"Name\": \"Bellezza\",\n        \"Value\": \"6198083031\"\n    },\n    {\n        \"Name\": \"Bodhi\",\n        \"Value\": \"17453528031\"\n    },\n    {\n        \"Name\": \"Buoni regalo\",\n        \"Value\": \"3557018031\"\n    },\n    {\n        \"Name\": \"Cancelleria e prodotti per ufficio\",\n        \"Value\": \"3606311031\"\n    },\n    {\n        \"Name\": \"Casa e cucina\",\n        \"Value\": \"524016031\"\n    },\n    {\n        \"Name\": \"CD e Vinili\",\n        \"Value\": \"412601031\"\n    },\n    {\n        \"Name\": \"Commercio, Industria e Scienza\",\n        \"Value\": \"5866069031\"\n    },\n    {\n        \"Name\": \"Elettronica\",\n        \"Value\": \"412610031\"\n    },\n    {\n        \"Name\": \"Fai da te\",\n        \"Value\": \"2454161031\"\n    },\n    {\n        \"Name\": \"Film e TV\",\n        \"Value\": \"412607031\"\n    },\n    {\n        \"Name\": \"Giardino e giardinaggio\",\n        \"Value\": \"635017031\"\n    },\n    {\n        \"Name\": \"Giochi e giocattoli\",\n        \"Value\": \"523998031\"\n    },\n    {\n        \"Name\": \"Grandi elettrodomestici\",\n        \"Value\": \"14437357031\"\n    },\n    {\n        \"Name\": \"Illuminazione\",\n        \"Value\": \"1571293031\"\n    },\n    {\n        \"Name\": \"Informatica\",\n        \"Value\": \"425917031\"\n    },\n    {\n        \"Name\": \"it-classification-attributes\",\n        \"Value\": \"425926031\"\n    },\n    {\n        \"Name\": \"Kindle Store\",\n        \"Value\": \"818939031\"\n    },\n    {\n        \"Name\": \"Libri\",\n        \"Value\": \"411664031\"\n    },\n    {\n        \"Name\": \"Luxury Stores\",\n        \"Value\": \"22942556031\"\n    },\n    {\n        \"Name\": \"Moda\",\n        \"Value\": \"5512287031\"\n    },\n    {\n        \"Name\": \"Musica Digitale\",\n        \"Value\": \"1748204031\"\n    },\n    {\n        \"Name\": \"Prima infanzia\",\n        \"Value\": \"1571287031\"\n    },\n    {\n        \"Name\": \"Prime Video\",\n        \"Value\": \"16296150031\"\n    },\n    {\n        \"Name\": \"Prodotti Handmade\",\n        \"Value\": \"9699426031\"\n    },\n    {\n        \"Name\": \"Prodotti per animali domestici\",\n        \"Value\": \"12472500031\"\n    },\n    {\n        \"Name\": \"Salute e cura della persona\",\n        \"Value\": \"1571290031\"\n    },\n    {\n        \"Name\": \"Skill Alexa\",\n        \"Value\": \"13944606031\"\n    },\n    {\n        \"Name\": \"Software\",\n        \"Value\": \"412613031\"\n    },\n    {\n        \"Name\": \"Sport e tempo libero\",\n        \"Value\": \"524013031\"\n    },\n    {\n        \"Name\": \"Strumenti musicali\",\n        \"Value\": \"3628630031\"\n    },\n    {\n        \"Name\": \"Veicoli\",\n        \"Value\": \"14700959031\"\n    },\n    {\n        \"Name\": \"Videogiochi\",\n        \"Value\": \"412604031\"\n    },\n    {\n        \"Name\": \"Yggdrasil\",\n        \"Value\": \"17161695031\"\n    }\n]"},{"id":"fe550506-c4e5-4912-9385-a9e055eefeda","name":"Get parameter values","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{endpoint}}/marketplaces/{{idModule}}/{{idUser}}/rules/parameters/producttype/values?categoryId=6198093031","host":["{{endpoint}}"],"path":["marketplaces","{{idModule}}","{{idUser}}","rules","parameters","producttype","values"],"query":[{"key":"categoryId","value":"6198093031"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 12 Sep 2023 13:54:43 GMT"},{"key":"Content-Length","value":"38"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"Name\": \"GROCERY\",\n        \"Value\": \"GROCERY\"\n    }\n]"}],"_postman_id":"44b26c4b-2290-4746-a3c7-5e7c270cd052"}],"id":"bfb2a524-70bd-4a1d-8f9b-ddee734c6a86","_postman_id":"bfb2a524-70bd-4a1d-8f9b-ddee734c6a86","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Categorie","item":[{"name":"Get hierarchies","id":"8e376786-7616-4bdc-b5d9-3dba1ec3184e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/marketplaces/{{idModule}}/{{idUser}}/rules/hierarchies","description":"<p>Recupera le categorie di un particolare marketplace, passando, opzionalmente, un parametro <code>parentCategoryId</code> che permette di ottenere le categorie figlie di un determinato nodo.</p>\n<p>Per ogni categoria vengono ritornati i seguenti attributi:</p>\n<ul>\n<li><p><strong>CategoryId</strong>: id della categoria</p>\n</li>\n<li><p><strong>ParentCategoryId</strong>: id della categoria padre. Se la categoria è una categoria radice, il valore è null.</p>\n</li>\n<li><p><strong>CategoryName</strong>: nome della categoria</p>\n</li>\n<li><p><strong>IsLeaf</strong>: boolean (true / false) che identifica se questo nodo è un nodo foglia (e quindi non esistono categorie figlie di questo nodo) oppure no</p>\n</li>\n<li><p><strong>CanBeSelected</strong>: boolean (true / false) che indica se questa categoria può essere selezionata per poter creare la regola di pubblicazione.</p>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["marketplaces","{{idModule}}","{{idUser}}","rules","hierarchies"],"host":["{{endpoint}}"],"query":[{"disabled":true,"key":"parentCategoryId","value":"6198093031"}],"variable":[]}},"response":[{"id":"ec140f6b-dbcf-4bd4-8afc-cc7c9a175348","name":"Get hierarchies","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{endpoint}}/marketplaces/{{idModule}}/{{idUser}}/rules/hierarchies","host":["{{endpoint}}"],"path":["marketplaces","{{idModule}}","{{idUser}}","rules","hierarchies"],"query":[{"key":"parentCategoryId","value":"6198093031","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 12 Sep 2023 13:47:48 GMT"},{"key":"Content-Length","value":"4462"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"CategoryId\": \"6198093031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Alimentari e cura della casa\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"425920031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Altro\",\n        \"IsLeaf\": true,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"9378505031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"App e Giochi\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"1571281031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Auto e Moto\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"6198083031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Bellezza\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"17453528031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Bodhi\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"3557018031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Buoni regalo\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"3606311031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Cancelleria e prodotti per ufficio\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"524016031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Casa e cucina\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"412601031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"CD e Vinili\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"5866069031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Commercio, Industria e Scienza\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"412610031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Elettronica\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"2454161031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Fai da te\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"412607031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Film e TV\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"635017031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Giardino e giardinaggio\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"523998031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Giochi e giocattoli\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"14437357031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Grandi elettrodomestici\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"1571293031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Illuminazione\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"425917031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Informatica\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"425926031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"it-classification-attributes\",\n        \"IsLeaf\": true,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"818939031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Kindle Store\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"411664031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Libri\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"22942556031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Luxury Stores\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"5512287031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Moda\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"1748204031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Musica Digitale\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"1571287031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Prima infanzia\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"16296150031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Prime Video\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"9699426031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Prodotti Handmade\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"12472500031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Prodotti per animali domestici\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"1571290031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Salute e cura della persona\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"13944606031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Skill Alexa\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"412613031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Software\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"524013031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Sport e tempo libero\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"3628630031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Strumenti musicali\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"14700959031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Veicoli\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"412604031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Videogiochi\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"17161695031\",\n        \"ParentCategoryId\": null,\n        \"CategoryName\": \"Yggdrasil\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    }\n]"},{"id":"c09056bf-f358-455a-acc6-4aa7837d10b1","name":"Get hierarchies (children)","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{endpoint}}/marketplaces/{{idModule}}/{{idUser}}/rules/hierarchies?parentCategoryId=6198093031","host":["{{endpoint}}"],"path":["marketplaces","{{idModule}}","{{idUser}}","rules","hierarchies"],"query":[{"key":"parentCategoryId","value":"6198093031"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 12 Sep 2023 13:47:59 GMT"},{"key":"Content-Length","value":"2916"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"CategoryId\": \"21902039031\",\n        \"ParentCategoryId\": \"6198093031\",\n        \"CategoryName\": \"Alimenti freschi e refrigerati\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"6377736031\",\n        \"ParentCategoryId\": \"6198093031\",\n        \"CategoryName\": \"Birra, vino e alcolici\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"6377842031\",\n        \"ParentCategoryId\": \"6198093031\",\n        \"CategoryName\": \"Caffè, tè e bevande\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"6377950031\",\n        \"ParentCategoryId\": \"6198093031\",\n        \"CategoryName\": \"Carne\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"88363333031\",\n        \"ParentCategoryId\": \"6198093031\",\n        \"CategoryName\": \"Cereali da colazione\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"6378086031\",\n        \"ParentCategoryId\": \"6198093031\",\n        \"CategoryName\": \"Cesti e confezioni regalo\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"6378100031\",\n        \"ParentCategoryId\": \"6198093031\",\n        \"CategoryName\": \"Cibi in scatola e conserve\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"6378317031\",\n        \"ParentCategoryId\": \"6198093031\",\n        \"CategoryName\": \"Erbe aromatiche e spezie\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"6387848031\",\n        \"ParentCategoryId\": \"6198093031\",\n        \"CategoryName\": \"Frutta e verdura\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"6392887031\",\n        \"ParentCategoryId\": \"6198093031\",\n        \"CategoryName\": \"Ingredienti per birrificazione e vinificazione\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"6394133031\",\n        \"ParentCategoryId\": \"6198093031\",\n        \"CategoryName\": \"Latticini, uova e alternative vegetali\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"6392956031\",\n        \"ParentCategoryId\": \"6198093031\",\n        \"CategoryName\": \"Marmellate, miele e creme spalmabili\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"6392971031\",\n        \"ParentCategoryId\": \"6198093031\",\n        \"CategoryName\": \"Oli, aceti e condimenti per insalata\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"6392912031\",\n        \"ParentCategoryId\": \"6198093031\",\n        \"CategoryName\": \"Pasta, riso e legumi secchi\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"6394639031\",\n        \"ParentCategoryId\": \"6198093031\",\n        \"CategoryName\": \"Pasticceria e prodotti da forno\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"20934044031\",\n        \"ParentCategoryId\": \"6198093031\",\n        \"CategoryName\": \"Pesce e frutti di mare\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"6393113031\",\n        \"ParentCategoryId\": \"6198093031\",\n        \"CategoryName\": \"Preparati da cucina e da forno\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"6394812031\",\n        \"ParentCategoryId\": \"6198093031\",\n        \"CategoryName\": \"Salse e sughi\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"6394874031\",\n        \"ParentCategoryId\": \"6198093031\",\n        \"CategoryName\": \"Snack dolci e salati\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"6377517031\",\n        \"ParentCategoryId\": \"6198093031\",\n        \"CategoryName\": \"Surgelati\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    },\n    {\n        \"CategoryId\": \"1806695031\",\n        \"ParentCategoryId\": \"6198093031\",\n        \"CategoryName\": \"Svezzamento e pappine\",\n        \"IsLeaf\": false,\n        \"CanBeSelected\": true\n    }\n]"}],"_postman_id":"8e376786-7616-4bdc-b5d9-3dba1ec3184e"}],"id":"fb1a8ef5-6985-4af9-b611-e1a1e7dc7a8f","_postman_id":"fb1a8ef5-6985-4af9-b611-e1a1e7dc7a8f","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Attributi","item":[{"name":"Get attributes","id":"f30addc8-000e-47e0-94cb-88e108d0c873","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Configs\": \r\n    {\r\n        \"Parameters\": [\r\n            {\r\n                \"Name\": \"ProductType\",\r\n                \"Value\": \"SHOES\"\r\n            }\r\n        ]\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/marketplaces/{{idModule}}/{{idUser}}/rules/attributes?categoryId={{categoryId}}","description":"<p>Recupera gli attributi che il mercato richiede in una particolare categoria, il cui valore è passato nel parametro <strong>categoryId</strong>.</p>\n<p>Ogni attributo è caratterizzato dalle seguenti proprietà:</p>\n<ul>\n<li><p><strong>AttributeId</strong>: identificativo dell'attributo</p>\n</li>\n<li><p><strong>AttributeName</strong>: nome dell'attributo</p>\n</li>\n<li><p><strong>IsRequired</strong>: boolean (true / false) che specifica se l'attributo è richiesto obbligatoriamente dal mercato</p>\n</li>\n<li><p><strong>IsVariationAttribute</strong>: boolean (true / false) che specifica se l'attributo è utilizzabile per creare delle varianti prodotto sul mercato</p>\n</li>\n<li><p><strong>SupportDefaultValue</strong>: boolean (true / false) che specifica se è possibile definire, per questo attributo, un valore predefinito nella regola</p>\n</li>\n<li><p><strong>SupportsMultipleValues</strong>: boolean (true / false) che specifica se è possibile indicare più valori per questo attributo</p>\n</li>\n<li><p><strong>IsAutomaticallyMapped</strong>: boolean (true / false) che indica se MarketRock, nel caso in cui non venga specificato un valore per questo attributo, provvederà a valorizzarlo in automatico</p>\n</li>\n<li><p><strong>AttributeType</strong>: numero intero che identifica la tipologia di attributo.</p>\n<ul>\n<li><p>0 = testo libero</p>\n</li>\n<li><p>1 = numero intero</p>\n</li>\n<li><p>2 = numero decimale</p>\n</li>\n<li><p>3 = password</p>\n</li>\n<li><p>4 = selezione (valori definiti dal mercato)</p>\n</li>\n<li><p>5 = boolean</p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>Attenzione</strong>: è necessario passare anche tutti i parametri obbligatori nel corpo della chiamata.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["marketplaces","{{idModule}}","{{idUser}}","rules","attributes"],"host":["{{endpoint}}"],"query":[{"key":"categoryId","value":"{{categoryId}}"}],"variable":[]}},"response":[{"id":"37e2ca6d-1a9a-4bde-94da-4acef743b325","name":"Get attributes","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Configs\": \r\n    {\r\n        \"Parameters\": [\r\n            {\r\n                \"Name\": \"ProductType\",\r\n                \"Value\": \"SHOES\"\r\n            }\r\n        ],\r\n        \"Attributes\": []\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{endpoint}}/marketplaces/{{idModule}}/{{idUser}}/rules/attributes?categoryId={{hierarchyId}}","host":["{{endpoint}}"],"path":["marketplaces","{{idModule}}","{{idUser}}","rules","attributes"],"query":[{"key":"categoryId","value":"{{hierarchyId}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 12 Sep 2023 13:57:01 GMT"},{"key":"Content-Length","value":"22502"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"AttributeId\": \"brand>value\",\n        \"AttributeName\": \"Nome del marchio\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": true,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"supplier_declared_has_product_identifier_exemption>value\",\n        \"AttributeName\": \"È esente da un identificatore esterno dichiarato dal fornitore\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"manufacturer>value\",\n        \"AttributeName\": \"Produttore\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": true,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"fulfillment_availability>fulfillment_channel_code\",\n        \"AttributeName\": \"Codice canale di gestione\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": true,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"fulfillment_availability>quantity\",\n        \"AttributeName\": \"Quantità\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 1,\n        \"IsAutomaticallyMapped\": true,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"fulfillment_availability>lead_time_to_ship_max_days\",\n        \"AttributeName\": \"Tempo di gestione\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 1,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"map_policy>value\",\n        \"AttributeName\": \"Visualizzazione del prezzo minimo pubblicizzato\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"purchasable_offer>currency\",\n        \"AttributeName\": \"moneta\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"purchasable_offer>discounted_price>schedule>end_at\",\n        \"AttributeName\": \"Data di fine vendita\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"purchasable_offer>discounted_price>schedule>start_at\",\n        \"AttributeName\": \"Data di inizio della vendita\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"purchasable_offer>discounted_price>schedule>value_with_tax\",\n        \"AttributeName\": \"Prezzo di vendita\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 2,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"purchasable_offer>end_at>value\",\n        \"AttributeName\": \"Data interruzione della vendita\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"purchasable_offer>map_price>schedule>value_with_tax\",\n        \"AttributeName\": \"Prezzo minimo pubblicizzato\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 2,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"purchasable_offer>maximum_seller_allowed_price>schedule>value_with_tax\",\n        \"AttributeName\": \"Prezzo massimo consentito al venditore\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 2,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"purchasable_offer>minimum_order_quantity>minimum\",\n        \"AttributeName\": \"Quantità minima per l'ordine\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 1,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"purchasable_offer>minimum_order_quantity>liquidate_remainder\",\n        \"AttributeName\": \"Vendi rimanenza\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"purchasable_offer>minimum_seller_allowed_price>schedule>value_with_tax\",\n        \"AttributeName\": \"Prezzo minimo consentito al venditore\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 2,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"purchasable_offer>our_price>schedule>value_with_tax\",\n        \"AttributeName\": \"Prezzo\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 2,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"purchasable_offer>start_at>value\",\n        \"AttributeName\": \"Data di inizio dell'offerta\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"condition_type>value\",\n        \"AttributeName\": \"Tipo di condizione dell'articolo in offerta\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": true,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"condition_note>value\",\n        \"AttributeName\": \"Nota sulle condizioni dell'offerta\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"product_tax_code>value\",\n        \"AttributeName\": \"Codice fiscale del prodotto\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"merchant_release_date>value\",\n        \"AttributeName\": \"Data di uscita\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"main_offer_image_locator>media_location\",\n        \"AttributeName\": \"Posizione dell'immagine principale\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"other_offer_image_locator_1>media_location\",\n        \"AttributeName\": \"Altra posizione dell'immagine\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"other_offer_image_locator_2>media_location\",\n        \"AttributeName\": \"Altra posizione dell'immagine\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"other_offer_image_locator_3>media_location\",\n        \"AttributeName\": \"Altra posizione dell'immagine\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"other_offer_image_locator_4>media_location\",\n        \"AttributeName\": \"Altra posizione dell'immagine\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"other_offer_image_locator_5>media_location\",\n        \"AttributeName\": \"Altra posizione dell'immagine\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"handmade_classification>value\",\n        \"AttributeName\": \"Classificazione realizzata a mano\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"generic_keyword>value\",\n        \"AttributeName\": \"Chiavi di ricerca\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"special_feature>value\",\n        \"AttributeName\": \"Funzioni speciali\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"lining_description>value\",\n        \"AttributeName\": \"Imbottitura\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"pattern_type>value\",\n        \"AttributeName\": \"Motivo\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"item_package_quantity>value\",\n        \"AttributeName\": \"Quantità per pacco dell’articolo\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 1,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"subject_character>value\",\n        \"AttributeName\": \"Personaggio rappresentato\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"occasion_type>value\",\n        \"AttributeName\": \"Occasione\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"theme>value\",\n        \"AttributeName\": \"Tema\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"toe_style>value\",\n        \"AttributeName\": \"Stile della punta\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"language>type\",\n        \"AttributeName\": \"Tipo di lingua\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"language>value\",\n        \"AttributeName\": \"Lingua\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"arch_type>value\",\n        \"AttributeName\": \"arch-type\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"is_expiration_dated_product>value\",\n        \"AttributeName\": \"Il prodotto ha una scadenza\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"product_expiration_type>value\",\n        \"AttributeName\": \"Tipo di scadenza del prodotto\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"fc_shelf_life>value\",\n        \"AttributeName\": \"Shelf Life (periodo di conservazione) garantito ad Amazon\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 2,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"fc_shelf_life>unit\",\n        \"AttributeName\": \"Giorni di shelf life (periodo di conservazione)  garantiti ad Amazon\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"specific_uses_for_product>value\",\n        \"AttributeName\": \"Usi specifici per il prodotto\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"sport_type>value\",\n        \"AttributeName\": \"Tipo di sport\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"is_autographed>value\",\n        \"AttributeName\": \"È autografato\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"embellishment_feature>value\",\n        \"AttributeName\": \"Caratteristica dell'ornamento\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"insole>material>value\",\n        \"AttributeName\": \"Materiale soletta\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"seasons>value\",\n        \"AttributeName\": \"Stagioni\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"shoe_type>value\",\n        \"AttributeName\": \"Tipo di scarpa\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"dsa_responsible_party_address>value\",\n        \"AttributeName\": \"Indirizzo del responsabile DSA\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"parentage_level>value\",\n        \"AttributeName\": \"Livello di parentela\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"batteries_required>value\",\n        \"AttributeName\": \"Le batterie sono necessarie?\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"batteries_included>value\",\n        \"AttributeName\": \"Le batterie sono incluse?\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"safety_data_sheet_url>value\",\n        \"AttributeName\": \"URL scheda dati sicurezza (SDS o MSDS)\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"item_weight>value\",\n        \"AttributeName\": \"Peso dell’articolo\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 2,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"item_weight>unit\",\n        \"AttributeName\": \"Unità di peso dell’articolo\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"ec_medical_device_sales_channel>value\",\n        \"AttributeName\": \"Canale di vendita di dispositivi medici\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"footwear_size>size_system\",\n        \"AttributeName\": \"Sistema delle misure delle calzature\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"footwear_size>age_group\",\n        \"AttributeName\": \"Fascia di età delle calzature\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"footwear_size>gender\",\n        \"AttributeName\": \"Genere della calzatura\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"footwear_size>size_class\",\n        \"AttributeName\": \"Classe di misura della calzatura\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"footwear_size>width\",\n        \"AttributeName\": \"Larghezza calzatura\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"footwear_size>size\",\n        \"AttributeName\": \"Misura calzatura\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"footwear_size>to_size\",\n        \"AttributeName\": \"Misura della calzatura fino a misura\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"color>standardized_values\",\n        \"AttributeName\": \"Mappa dei colori\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"color>value\",\n        \"AttributeName\": \"Colore\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"merchant_shipping_group>value\",\n        \"AttributeName\": \"Groopo spedizione venditore\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"age_range_description>value\",\n        \"AttributeName\": \"Descrizione della fascia di età\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"closure>type>value\",\n        \"AttributeName\": \"Tipo di chiusura\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"heel>height>decimal_value\",\n        \"AttributeName\": \"Altezza del tacco, valore decimale\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 2,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"heel>height>unit\",\n        \"AttributeName\": \"Unità dell'altezza del tacco\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"heel>type>value\",\n        \"AttributeName\": \"Tipo di tacco\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"height_map>value\",\n        \"AttributeName\": \"Altezza collo\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"inner>material>value\",\n        \"AttributeName\": \"Materiale interno\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"item_type_name>value\",\n        \"AttributeName\": \"Nome del tipo di prodotto\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"leather_type>value\",\n        \"AttributeName\": \"Tipo di pelle\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"lifestyle>value\",\n        \"AttributeName\": \"Lifestyle\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"model_name>value\",\n        \"AttributeName\": \"Nome del modello\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"model_number>value\",\n        \"AttributeName\": \"Numero di modello\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"outer>material>value\",\n        \"AttributeName\": \"Materiale esterno\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"shaft>height>value\",\n        \"AttributeName\": \"Altezza asta\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"sole_material>value\",\n        \"AttributeName\": \"Materiale della suola\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"strap_type>value\",\n        \"AttributeName\": \"Tipo di spalline\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"style>value\",\n        \"AttributeName\": \"Stile\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"target_gender>value\",\n        \"AttributeName\": \"Sesso a cui è destinato\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"water_resistance_level>value\",\n        \"AttributeName\": \"Livello di resistenza all'acqua\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"bullet_point>value\",\n        \"AttributeName\": \"Elenco puntato\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"country_of_origin>value\",\n        \"AttributeName\": \"Paese di origine\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"supplier_declared_dg_hz_regulation>value\",\n        \"AttributeName\": \"Regolamentazioni di merci pericolose\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    }\n]"}],"_postman_id":"f30addc8-000e-47e0-94cb-88e108d0c873"},{"name":"Get attribute","id":"d67c3926-ebb7-473c-992e-75c16f825315","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"AttributeId\": \"{{attributeId}}\",\r\n    \"Configs\": \r\n    {\r\n        \"Parameters\": [\r\n            {\r\n                \"Name\": \"ProductType\",\r\n                \"Value\": \"SHOES\"\r\n            }\r\n        ]\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/marketplaces/{{idModule}}/{{idUser}}/rules/attributes/attribute","description":"<p>Recupera gli attributi che il mercato richiede in una particolare categoria, il cui valore è passato nel parametro <strong>categoryId</strong>.</p>\n<p>Ogni attributo è caratterizzato dalle seguenti proprietà:</p>\n<ul>\n<li><p><strong>AttributeId</strong>: identificativo dell'attributo</p>\n</li>\n<li><p><strong>AttributeName</strong>: nome dell'attributo</p>\n</li>\n<li><p><strong>IsRequired</strong>: boolean (true / false) che specifica se l'attributo è richiesto obbligatoriamente dal mercato</p>\n</li>\n<li><p><strong>IsVariationAttribute</strong>: boolean (true / false) che specifica se l'attributo è utilizzabile per creare delle varianti prodotto sul mercato</p>\n</li>\n<li><p><strong>SupportDefaultValue</strong>: boolean (true / false) che specifica se è possibile definire, per questo attributo, un valore predefinito nella regola</p>\n</li>\n<li><p><strong>SupportsMultipleValues</strong>: boolean (true / false) che specifica se è possibile indicare più valori per questo attributo</p>\n</li>\n<li><p><strong>IsAutomaticallyMapped</strong>: boolean (true / false) che indica se MarketRock, nel caso in cui non venga specificato un valore per questo attributo, provvederà a valorizzarlo in automatico</p>\n</li>\n<li><p><strong>AttributeType</strong>: numero intero che identifica la tipologia di attributo.</p>\n<ul>\n<li><p>0 = testo libero</p>\n</li>\n<li><p>1 = numero intero</p>\n</li>\n<li><p>2 = numero decimale</p>\n</li>\n<li><p>3 = password</p>\n</li>\n<li><p>4 = selezione (valori definiti dal mercato)</p>\n</li>\n<li><p>5 = boolean</p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>Attenzione</strong>: è necessario passare anche tutti i parametri obbligatori nel corpo della chiamata.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["marketplaces","{{idModule}}","{{idUser}}","rules","attributes","attribute"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"44f5fbdc-131c-4f52-b0fb-6ed3e96d643b","name":"Get attributes","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"AttributeId\": \"brand>value\",\r\n    \"Configs\": \r\n    {\r\n        \"Parameters\": [\r\n            {\r\n                \"Name\": \"ProductType\",\r\n                \"Value\": \"SHOES\"\r\n            }\r\n        ]\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/marketplaces/{{idModule}}/{{idUser}}/rules/attributes/attribute"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 12 Sep 2023 13:57:01 GMT"},{"key":"Content-Length","value":"22502"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"AttributeId\": \"brand>value\",\n        \"AttributeName\": \"Nome del marchio\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": true,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"supplier_declared_has_product_identifier_exemption>value\",\n        \"AttributeName\": \"È esente da un identificatore esterno dichiarato dal fornitore\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"manufacturer>value\",\n        \"AttributeName\": \"Produttore\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": true,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"fulfillment_availability>fulfillment_channel_code\",\n        \"AttributeName\": \"Codice canale di gestione\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": true,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"fulfillment_availability>quantity\",\n        \"AttributeName\": \"Quantità\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 1,\n        \"IsAutomaticallyMapped\": true,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"fulfillment_availability>lead_time_to_ship_max_days\",\n        \"AttributeName\": \"Tempo di gestione\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 1,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"map_policy>value\",\n        \"AttributeName\": \"Visualizzazione del prezzo minimo pubblicizzato\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"purchasable_offer>currency\",\n        \"AttributeName\": \"moneta\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"purchasable_offer>discounted_price>schedule>end_at\",\n        \"AttributeName\": \"Data di fine vendita\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"purchasable_offer>discounted_price>schedule>start_at\",\n        \"AttributeName\": \"Data di inizio della vendita\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"purchasable_offer>discounted_price>schedule>value_with_tax\",\n        \"AttributeName\": \"Prezzo di vendita\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 2,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"purchasable_offer>end_at>value\",\n        \"AttributeName\": \"Data interruzione della vendita\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"purchasable_offer>map_price>schedule>value_with_tax\",\n        \"AttributeName\": \"Prezzo minimo pubblicizzato\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 2,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"purchasable_offer>maximum_seller_allowed_price>schedule>value_with_tax\",\n        \"AttributeName\": \"Prezzo massimo consentito al venditore\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 2,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"purchasable_offer>minimum_order_quantity>minimum\",\n        \"AttributeName\": \"Quantità minima per l'ordine\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 1,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"purchasable_offer>minimum_order_quantity>liquidate_remainder\",\n        \"AttributeName\": \"Vendi rimanenza\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"purchasable_offer>minimum_seller_allowed_price>schedule>value_with_tax\",\n        \"AttributeName\": \"Prezzo minimo consentito al venditore\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 2,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"purchasable_offer>our_price>schedule>value_with_tax\",\n        \"AttributeName\": \"Prezzo\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 2,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"purchasable_offer>start_at>value\",\n        \"AttributeName\": \"Data di inizio dell'offerta\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"condition_type>value\",\n        \"AttributeName\": \"Tipo di condizione dell'articolo in offerta\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": true,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"condition_note>value\",\n        \"AttributeName\": \"Nota sulle condizioni dell'offerta\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"product_tax_code>value\",\n        \"AttributeName\": \"Codice fiscale del prodotto\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"merchant_release_date>value\",\n        \"AttributeName\": \"Data di uscita\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"main_offer_image_locator>media_location\",\n        \"AttributeName\": \"Posizione dell'immagine principale\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"other_offer_image_locator_1>media_location\",\n        \"AttributeName\": \"Altra posizione dell'immagine\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"other_offer_image_locator_2>media_location\",\n        \"AttributeName\": \"Altra posizione dell'immagine\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"other_offer_image_locator_3>media_location\",\n        \"AttributeName\": \"Altra posizione dell'immagine\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"other_offer_image_locator_4>media_location\",\n        \"AttributeName\": \"Altra posizione dell'immagine\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"other_offer_image_locator_5>media_location\",\n        \"AttributeName\": \"Altra posizione dell'immagine\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"handmade_classification>value\",\n        \"AttributeName\": \"Classificazione realizzata a mano\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"generic_keyword>value\",\n        \"AttributeName\": \"Chiavi di ricerca\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"special_feature>value\",\n        \"AttributeName\": \"Funzioni speciali\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"lining_description>value\",\n        \"AttributeName\": \"Imbottitura\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"pattern_type>value\",\n        \"AttributeName\": \"Motivo\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"item_package_quantity>value\",\n        \"AttributeName\": \"Quantità per pacco dell’articolo\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 1,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"subject_character>value\",\n        \"AttributeName\": \"Personaggio rappresentato\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"occasion_type>value\",\n        \"AttributeName\": \"Occasione\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"theme>value\",\n        \"AttributeName\": \"Tema\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"toe_style>value\",\n        \"AttributeName\": \"Stile della punta\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"language>type\",\n        \"AttributeName\": \"Tipo di lingua\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"language>value\",\n        \"AttributeName\": \"Lingua\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"arch_type>value\",\n        \"AttributeName\": \"arch-type\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"is_expiration_dated_product>value\",\n        \"AttributeName\": \"Il prodotto ha una scadenza\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"product_expiration_type>value\",\n        \"AttributeName\": \"Tipo di scadenza del prodotto\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"fc_shelf_life>value\",\n        \"AttributeName\": \"Shelf Life (periodo di conservazione) garantito ad Amazon\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 2,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"fc_shelf_life>unit\",\n        \"AttributeName\": \"Giorni di shelf life (periodo di conservazione)  garantiti ad Amazon\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"specific_uses_for_product>value\",\n        \"AttributeName\": \"Usi specifici per il prodotto\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"sport_type>value\",\n        \"AttributeName\": \"Tipo di sport\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"is_autographed>value\",\n        \"AttributeName\": \"È autografato\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"embellishment_feature>value\",\n        \"AttributeName\": \"Caratteristica dell'ornamento\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"insole>material>value\",\n        \"AttributeName\": \"Materiale soletta\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"seasons>value\",\n        \"AttributeName\": \"Stagioni\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"shoe_type>value\",\n        \"AttributeName\": \"Tipo di scarpa\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"dsa_responsible_party_address>value\",\n        \"AttributeName\": \"Indirizzo del responsabile DSA\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"parentage_level>value\",\n        \"AttributeName\": \"Livello di parentela\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"batteries_required>value\",\n        \"AttributeName\": \"Le batterie sono necessarie?\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"batteries_included>value\",\n        \"AttributeName\": \"Le batterie sono incluse?\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"safety_data_sheet_url>value\",\n        \"AttributeName\": \"URL scheda dati sicurezza (SDS o MSDS)\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"item_weight>value\",\n        \"AttributeName\": \"Peso dell’articolo\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 2,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"item_weight>unit\",\n        \"AttributeName\": \"Unità di peso dell’articolo\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"ec_medical_device_sales_channel>value\",\n        \"AttributeName\": \"Canale di vendita di dispositivi medici\",\n        \"IsRequired\": false,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"footwear_size>size_system\",\n        \"AttributeName\": \"Sistema delle misure delle calzature\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"footwear_size>age_group\",\n        \"AttributeName\": \"Fascia di età delle calzature\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"footwear_size>gender\",\n        \"AttributeName\": \"Genere della calzatura\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"footwear_size>size_class\",\n        \"AttributeName\": \"Classe di misura della calzatura\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"footwear_size>width\",\n        \"AttributeName\": \"Larghezza calzatura\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"footwear_size>size\",\n        \"AttributeName\": \"Misura calzatura\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"footwear_size>to_size\",\n        \"AttributeName\": \"Misura della calzatura fino a misura\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"color>standardized_values\",\n        \"AttributeName\": \"Mappa dei colori\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"color>value\",\n        \"AttributeName\": \"Colore\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"merchant_shipping_group>value\",\n        \"AttributeName\": \"Groopo spedizione venditore\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"age_range_description>value\",\n        \"AttributeName\": \"Descrizione della fascia di età\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"closure>type>value\",\n        \"AttributeName\": \"Tipo di chiusura\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"heel>height>decimal_value\",\n        \"AttributeName\": \"Altezza del tacco, valore decimale\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 2,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"heel>height>unit\",\n        \"AttributeName\": \"Unità dell'altezza del tacco\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"heel>type>value\",\n        \"AttributeName\": \"Tipo di tacco\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"height_map>value\",\n        \"AttributeName\": \"Altezza collo\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"inner>material>value\",\n        \"AttributeName\": \"Materiale interno\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"item_type_name>value\",\n        \"AttributeName\": \"Nome del tipo di prodotto\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"leather_type>value\",\n        \"AttributeName\": \"Tipo di pelle\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"lifestyle>value\",\n        \"AttributeName\": \"Lifestyle\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"model_name>value\",\n        \"AttributeName\": \"Nome del modello\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"model_number>value\",\n        \"AttributeName\": \"Numero di modello\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"outer>material>value\",\n        \"AttributeName\": \"Materiale esterno\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"shaft>height>value\",\n        \"AttributeName\": \"Altezza asta\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"sole_material>value\",\n        \"AttributeName\": \"Materiale della suola\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"strap_type>value\",\n        \"AttributeName\": \"Tipo di spalline\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"style>value\",\n        \"AttributeName\": \"Stile\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"target_gender>value\",\n        \"AttributeName\": \"Sesso a cui è destinato\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"water_resistance_level>value\",\n        \"AttributeName\": \"Livello di resistenza all'acqua\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"bullet_point>value\",\n        \"AttributeName\": \"Elenco puntato\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 0,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"country_of_origin>value\",\n        \"AttributeName\": \"Paese di origine\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    },\n    {\n        \"AttributeId\": \"supplier_declared_dg_hz_regulation>value\",\n        \"AttributeName\": \"Regolamentazioni di merci pericolose\",\n        \"IsRequired\": true,\n        \"IsVariationAttribute\": false,\n        \"SupportDefaultValue\": true,\n        \"AttributeType\": 4,\n        \"IsAutomaticallyMapped\": false,\n        \"SupportsMultipleValues\": false\n    }\n]"}],"_postman_id":"d67c3926-ebb7-473c-992e-75c16f825315"},{"name":"Get attribute values","id":"1de4254f-d58d-4cec-be7e-fd2ed5dd3814","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"AttributeId\": {{attributeId}},\r\n    \"Configs\": \r\n    {\r\n        \"Parameters\": [\r\n            {\r\n                \"Name\": \"ProductType\",\r\n                \"Value\": \"SHOES\"\r\n            }\r\n        ],\r\n        \"Attributes\": []\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/marketplaces/{{idModule}}/{{idUser}}/rules/attributes/attribute/values","description":"<p>Recupera i valori ammessi per un determinato attributo - il cui ID è passato nel parametro <strong>attributeId</strong> - così come definiti dal mercato.</p>\n<p><strong>I valori sono richiedibili per i soli attributi che hanno come AttributeType il valore 4 (ovvero sono attributi di tipo \"Selezione\").</strong></p>\n<p><strong>Attenzione</strong>: è necessario passare anche tutti i parametri obbligatori nel corpo della chiamata.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["marketplaces","{{idModule}}","{{idUser}}","rules","attributes","attribute","values"],"host":["{{endpoint}}"],"query":[{"disabled":true,"key":"parentCategoryId","value":"10001"}],"variable":[]}},"response":[{"id":"6f74b7b0-ebf7-461d-b8d3-f666dba2d86c","name":"Get attribute values","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"AttributeId\": \"condition_type>value\",\r\n    \"Configs\": \r\n    {\r\n        \"Parameters\": [\r\n            {\r\n                \"Name\": \"ProductType\",\r\n                \"Value\": \"SHOES\"\r\n            }\r\n        ],\r\n        \"Attributes\": []\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{endpoint}}/marketplaces/{{idModule}}/{{idUser}}/rules/attributes/attribute/values","host":["{{endpoint}}"],"path":["marketplaces","{{idModule}}","{{idUser}}","rules","attributes","attribute","values"],"query":[{"key":"parentCategoryId","value":"10001","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 30 Oct 2023 16:55:07 GMT"},{"key":"Content-Length","value":"713"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"Name\": \"Club\",\n        \"Value\": \"club_club\"\n    },\n    {\n        \"Name\": \"Da collezione - Accettabile\",\n        \"Value\": \"collectible_acceptable\"\n    },\n    {\n        \"Name\": \"Da collezione - Buono\",\n        \"Value\": \"collectible_good\"\n    },\n    {\n        \"Name\": \"Da collezione - Come nuovo\",\n        \"Value\": \"collectible_like_new\"\n    },\n    {\n        \"Name\": \"Da collezione - Molto buono\",\n        \"Value\": \"collectible_very_good\"\n    },\n    {\n        \"Name\": \"Nuovo\",\n        \"Value\": \"new_new\"\n    },\n    {\n        \"Name\": \"Nuovo - OEM\",\n        \"Value\": \"new_oem\"\n    },\n    {\n        \"Name\": \"Nuovo - Scatola aperta\",\n        \"Value\": \"new_open_box\"\n    },\n    {\n        \"Name\": \"Ristrutturato\",\n        \"Value\": \"refurbished_refurbished\"\n    },\n    {\n        \"Name\": \"Usato - Accettabile\",\n        \"Value\": \"used_acceptable\"\n    },\n    {\n        \"Name\": \"Usato - Buono\",\n        \"Value\": \"used_good\"\n    },\n    {\n        \"Name\": \"Usato - Come Nuovo\",\n        \"Value\": \"used_like_new\"\n    },\n    {\n        \"Name\": \"Usato - Molto buono\",\n        \"Value\": \"used_very_good\"\n    }\n]"}],"_postman_id":"1de4254f-d58d-4cec-be7e-fd2ed5dd3814"},{"name":"Get attribute value by value","id":"000066b5-bb49-45ec-84a5-3ed5ed33698a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Configs\": \r\n    {\r\n        \"Parameters\": [\r\n            {\r\n                \"Name\": \"ProductType\",\r\n                \"Value\": \"SHOES\"\r\n            }\r\n        ],\r\n        \"Attributes\": []\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/marketplaces/{{idModule}}/{{idUser}}/rules/attributes/attribute/value","description":"<p>Recupera il nome di un particolare valore (passato nel parametro <strong>attributeValue</strong>) di un particolare attributo (passato nel parametro <strong>attributeId</strong>).</p>\n<p><strong>Attenzione</strong>: è necessario passare anche tutti i parametri obbligatori nel corpo della chiamata.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["marketplaces","{{idModule}}","{{idUser}}","rules","attributes","attribute","value"],"host":["{{endpoint}}"],"query":[{"disabled":true,"key":"parentCategoryId","value":"10001"}],"variable":[]}},"response":[{"id":"05eb7ea0-66ed-45ee-96cc-25791f96496f","name":"Get attribute value by value","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"AttributeId\": \"condition_type>value\",\r\n    \"AttributeValue\": \"new_oem\",\r\n    \"Configs\": \r\n    {\r\n        \"Parameters\": [\r\n            {\r\n                \"Name\": \"ProductType\",\r\n                \"Value\": \"SHOES\"\r\n            }\r\n        ],\r\n        \"Attributes\": []\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{endpoint}}/marketplaces/{{idModule}}/{{idUser}}/rules/attributes/attribute/value","host":["{{endpoint}}"],"path":["marketplaces","{{idModule}}","{{idUser}}","rules","attributes","attribute","value"],"query":[{"key":"parentCategoryId","value":"10001","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 30 Oct 2023 16:56:35 GMT"},{"key":"Content-Length","value":"40"}],"cookie":[],"responseTime":null,"body":"{\n    \"Name\": \"Nuovo - OEM\",\n    \"Value\": \"new_oem\"\n}"}],"_postman_id":"000066b5-bb49-45ec-84a5-3ed5ed33698a"},{"name":"Map attribute","id":"44837a2d-ec26-4c79-8eda-75b0c79a6beb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"mappings\": \r\n    [\r\n        {\r\n            \"OriginalValue\": \"XS\",\r\n            \"TranslatedValue\": \"SIZE_001\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/attributes/{{idAttribute}}/Translations/00?idModule={{idModule}}&idRule={{idRule}}","description":"<p>Crea una mappatura per l'attributo MarketRock il cui ID è <code>{{idAttribute}}</code><strong>.</strong></p>\n<p>Possono essere passati i parametri:</p>\n<ul>\n<li><p><strong><code>idModule</code></strong>: identificativo del mercato</p>\n</li>\n<li><p><strong><code>idRule</code></strong>: identificativo della regola</p>\n</li>\n</ul>\n<p>Se vengono passati questi parametri, la mappatura diventa specifica per quel mercato / quella regola.</p>\n<p>Ogni mappatura deve contenere:</p>\n<ul>\n<li><p><strong><code>OriginalValue</code></strong>: il valore originale dell'attributo</p>\n</li>\n<li><p><strong><code>TranslatedValue</code></strong>: il valore che deve essere inviato al marketplace</p>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["attributes","{{idAttribute}}","Translations","00"],"host":["{{endpoint}}"],"query":[{"key":"idModule","value":"{{idModule}}"},{"key":"idRule","value":"{{idRule}}"}],"variable":[]}},"response":[],"_postman_id":"44837a2d-ec26-4c79-8eda-75b0c79a6beb"}],"id":"8fae9ad9-1e13-4df3-9c13-d1cfe91e7841","_postman_id":"8fae9ad9-1e13-4df3-9c13-d1cfe91e7841","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Create rule","id":"2641090f-72b5-4d3f-8692-5bb2362275e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Name\": \"Protein Bars\",\r\n    \"idModule\": {{idModule}},\r\n    \"Submodule\": \"IT\",\r\n    \"idUser\": {{idUser}},\r\n    \"Configs\": {\r\n        \"Parameters\": [\r\n            { \"Name\": \"LogisticClass\", \"Value\": \"XS\" },\r\n            { \"Name\": \"Category\", \"Value\": \"20009\" }\r\n        ],\r\n        \"Attributes\": [\r\n            { \"MarketplaceAttributeId\": \"brandName_brandName\", \"DefaultValues\": [\"10674\"] },\r\n            { \"MarketplaceAttributeId\": \"flavors_flavors\", \"DefaultValues\": [\"16\"] },\r\n            { \"MarketplaceAttributeId\": \"PER_UNIT_UNIT_unit\", \"DefaultValues\": [\"kg\"] },\r\n            { \"MarketplaceAttributeId\": \"PER_UNIT_VALUE\", \"DefaultValues\": [\"0.055\"] },\r\n            { \"MarketplaceAttributeId\": \"PRODUCT_TYPE_natures-20009\", \"DefaultValues\": [\"10547\"] },\r\n            { \"MarketplaceAttributeId\": \"SIZE_31_size-31\", \"DefaultValues\": [\"Z254_NO SIZE\"] }\r\n        ]\r\n    },\r\n    \"Filters\": {\r\n        \"idCategories\": [1071],\r\n        \"GetSubcategories\": true\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/marketplaces/{{marketplace}}/rules/create","description":"<p>Crea una regola di pubblicazione. Per ogni regola è necessario specificare:</p>\n<ul>\n<li><p><strong>Name</strong>: nome della regola</p>\n</li>\n<li><p><strong>idModule</strong>: id del marketplace</p>\n</li>\n<li><p><strong>Submodule</strong>: nome del mercato nazionale, se supportato dal marketplace</p>\n</li>\n<li><p><strong>idUser</strong>: id utente marketplace</p>\n</li>\n<li><p><strong>Configs</strong>: contenitore delle configurazioni della regola, caratterizzato da:</p>\n<ul>\n<li><p><strong>Parameters</strong>: array dei parametri, sia dipendenti che non dipendenti dall'eventuale categoria. Per ogni parametro è necessario specificare <code>Name</code> (identificativo del parmetro) e <code>Value</code> (valore del parametro)</p>\n</li>\n<li><p><strong>Attributes</strong>: array degli attributi. Per ogni attributo è necessario specificare <code>AttributeId</code> (identificativo dell'attributo) e almeno uno fra <code>eDockAttributeId</code> (identificativo dell'attributo MarketRock da mappare) e <code>DefaultValue</code> (valore predefinito, usato in mancanza di una mappatura attributo o di un valore per l'attributo mappato)</p>\n</li>\n<li><p><strong>Filters</strong>: oggetto che permette di filtrare i prodotti a cui applicare la regola. Sono gli stessi che possono essere usati nella chiamata <code>Get products</code>.</p>\n</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["marketplaces","{{marketplace}}","rules","create"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2641090f-72b5-4d3f-8692-5bb2362275e6"},{"name":"Update rule","id":"7cda6a4c-e727-4970-b91c-d5344b30ddba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Name\": \"Protein Bars\",\r\n    \"idModule\": {{idModule}},\r\n    \"Submodule\": \"IT\",\r\n    \"idUser\": {{idUser}},\r\n    \"Configs\": {\r\n        \"Parameters\": [\r\n            { \"Name\": \"LogisticClass\", \"Value\": \"XS\" },\r\n            { \"Name\": \"Category\", \"Value\": \"20009\" }\r\n        ],\r\n        \"Attributes\": [\r\n            { \"MarketplaceAttributeId\": \"brandName_brandName\", \"DefaultValues\": [\"10674\"] },\r\n            { \"MarketplaceAttributeId\": \"flavors_flavors\", \"DefaultValues\": [\"16\"] },\r\n            { \"MarketplaceAttributeId\": \"PER_UNIT_UNIT_unit\", \"DefaultValues\": [\"kg\"] },\r\n            { \"MarketplaceAttributeId\": \"PER_UNIT_VALUE\", \"DefaultValues\": [\"0.055\"] },\r\n            { \"MarketplaceAttributeId\": \"PRODUCT_TYPE_natures-20009\", \"DefaultValues\": [\"10547\"] },\r\n            { \"MarketplaceAttributeId\": \"SIZE_31_size-31\", \"DefaultValues\": [\"Z254_NO SIZE\"] }\r\n        ]\r\n    },\r\n    \"Filters\": {\r\n        \"idCategories\": [1071],\r\n        \"GetSubcategories\": true\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/marketplaces/rules/{{idRule}}","description":"<p>Modifica una regola precedentemente creata, il cui ID è passato nel parametro <code>idRule</code>.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["marketplaces","rules","{{idRule}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7cda6a4c-e727-4970-b91c-d5344b30ddba"},{"name":"Delete rule","id":"0dbb9b2c-3455-4f36-a15f-3ee8c288dc37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Name\": \"Protein Bars\",\r\n    \"idModule\": {{idModule}},\r\n    \"Submodule\": \"IT\",\r\n    \"idUser\": {{idUser}},\r\n    \"Configs\": {\r\n        \"Parameters\": [\r\n            { \"Name\": \"LogisticClass\", \"Value\": \"XS\" },\r\n            { \"Name\": \"Category\", \"Value\": \"20009\" }\r\n        ],\r\n        \"Attributes\": [\r\n            { \"AttributeId\": \"brandName_brandName\", \"DefaultValue\": \"10674\" },\r\n            { \"AttributeId\": \"flavors_flavors\", \"DefaultValue\": \"16\" },\r\n            { \"AttributeId\": \"PER_UNIT_UNIT_unit\", \"DefaultValue\": \"kg\" },\r\n            { \"AttributeId\": \"PER_UNIT_VALUE\", \"DefaultValue\": \"0.055\" },\r\n            { \"AttributeId\": \"PRODUCT_TYPE_natures-20009\", \"DefaultValue\": \"10547\" },\r\n            { \"AttributeId\": \"SIZE_31_size-31\", \"DefaultValue\": \"Z254_NO SIZE\" }\r\n        ]\r\n    },\r\n    \"Filters\": {\r\n        \"idCategories\": [1071],\r\n        \"GetSubcategories\": true\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/marketplaces/rules/{{idRule}}","description":"<p>Elimina la regola {{idRule}}.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["marketplaces","rules","{{idRule}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0dbb9b2c-3455-4f36-a15f-3ee8c288dc37"},{"name":"Get rules","id":"eb6b50af-17ee-4d3c-b7c5-4284159d7716","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"page\": 0,\r\n  \"pageSize\": 5,\r\n  \"filters\": [\r\n      //{ \"field\": \"disabled\", \"values\" : [false] },\r\n      //{ \"field\": \"idModule\", \"values\" : [23] },\r\n      //{ \"field\": \"idUser\", \"values\" : [18] }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/marketplaces/rules","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["marketplaces","rules"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"eb6b50af-17ee-4d3c-b7c5-4284159d7716"},{"name":"Get rule","id":"d997b6b9-6b07-4a7c-8449-65e0cf120a09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n  \"page\": 1,\r\n  \"pageSize\": 5,\r\n  \"filters\": [\r\n      //{ \"field\": \"disabled\", \"values\" : [false] },\r\n      //{ \"field\": \"idModule\", \"values\" : [23] },\r\n      //{ \"field\": \"idUser\", \"values\" : [18] }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/marketplaces/rules/{{idRule}}","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["marketplaces","rules","{{idRule}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"5401b674-b84d-4af5-810e-8e241d5424a3","name":"Get rule","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n  \"page\": 1,\r\n  \"pageSize\": 5,\r\n  \"filters\": [\r\n      //{ \"field\": \"disabled\", \"values\" : [false] },\r\n      //{ \"field\": \"idModule\", \"values\" : [23] },\r\n      //{ \"field\": \"idUser\", \"values\" : [18] }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/marketplaces/rules/10"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Wed, 15 Feb 2023 11:17:06 GMT"},{"key":"Content-Length","value":"1514"}],"cookie":[],"responseTime":null,"body":"{\n    \"idRule\": 10,\n    \"Name\": \"Protein Bars\",\n    \"idModule\": 23,\n    \"Submodule\": \"IT\",\n    \"idUser\": 18,\n    \"Disabled\": false,\n    \"Configs\": {\n        \"Parameters\": [\n            {\n                \"Name\": \"LogisticClass\",\n                \"Value\": \"XS\"\n            },\n            {\n                \"Name\": \"Category\",\n                \"Value\": \"20009\"\n            }\n        ],\n        \"Attributes\": [\n            {\n                \"MarketplaceAttributeId\": \"brandName_brandName\",\n                \"AttributeIds\": null,\n                \"DefaultValues\": [\"10674\"]\n            },\n            {\n                \"MarketplaceAttributeId\": \"flavors_flavors\",\n                \"AttributeIds\": null,\n                \"DefaultValues\": [\"16\"]\n            },\n            {\n                \"MarketplaceAttributeId\": \"PER_UNIT_UNIT_unit\",\n                \"AttributeIds\": null,\n                \"DefaultValues\": [\"kg\"]\n            },\n            {\n                \"MarketplaceAttributeId\": \"PER_UNIT_VALUE\",\n                \"AttributeIds\": null,\n                \"DefaultValues\": [\"0.055\"]\n            },\n            {\n                \"MarketplaceAttributeId\": \"PRODUCT_TYPE_natures-20009\",\n                \"AttributeIds\": null,\n                \"DefaultValues\": [\"10547\"]\n            },\n            {\n                \"MarketplaceAttributeId\": \"SIZE_31_size-31\",\n                \"AttributeIds\": null,\n                \"DefaultValues\": [\"Z254_NO SIZE\"]\n            }\n        ]\n    },\n    \"Filters\": {\n        \"OrderBy\": null,\n        \"idCategories\": [\n            1071\n        ],\n        \"GetSubcategories\": true,\n        \"ProductName\": null,\n        \"Manufacturer\": null,\n        \"Manufacturers\": null,\n        \"ProductSKU\": [],\n        \"idPricing\": 0,\n        \"idPricings\": null,\n        \"PriceListName\": null,\n        \"ModuleName\": null,\n        \"idModule\": 0,\n        \"LastUpdateDate\": null,\n        \"EAN13\": null,\n        \"ValidEAN13Code\": null,\n        \"ActiveeBayListing\": null,\n        \"ActiveeBayListingSite\": null,\n        \"QuantityGreaterThan\": null,\n        \"QuantityLowerThan\": null,\n        \"AlsoDeleted\": false,\n        \"CreatedOnStart\": null,\n        \"CreatedOnEnd\": null,\n        \"LastUpdatedOnStart\": null,\n        \"LastUpdatedOnEnd\": null,\n        \"NoFolder\": null,\n        \"IdentifierValues\": [],\n        \"IdentifierType\": null,\n        \"IdentifierModule\": null,\n        \"IdentifierSubmodule\": null,\n        \"IncludeVariations\": false,\n        \"ApplyFiltersToVariations\": false,\n        \"idItems\": null,\n        \"HasDiscountOnPricingId\": null,\n        \"Attributes\": null,\n        \"SmartFilter\": null,\n        \"HasExclusions\": null,\n        \"idStorages\": null\n    }\n}"}],"_postman_id":"d997b6b9-6b07-4a7c-8449-65e0cf120a09"},{"name":"Apply rule","id":"21a19437-8c89-4f5d-b8c5-e81ebf5cc72e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"idRules\": [{{idRule}}]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/marketplaces/rules/apply","description":"<p>Applica le regole, ovvero invia i prodotti verso il marketplace. L'ID viene passato nell'array <code>idRules</code>.</p>\n<p>L'operazione non può essere più cancellata.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["marketplaces","rules","apply"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"21a19437-8c89-4f5d-b8c5-e81ebf5cc72e"}],"id":"77ad2769-2a12-44bf-b658-93a1b8c4d866","description":"<p>Le regole di pubblicazione sono, sostanzialmente, dei template che definiscono la mappatura di un certo insieme di prodotti per un particolare marketplace.</p>\n<p>Una regola quindi è definita da:</p>\n<ul>\n<li>un insieme di filtri che identificano l'insieme di prodotti</li>\n<li>uno o più <strong>parametri</strong> dipendenti dal mercato (come ad esempio, la categoria)</li>\n<li>uno o più <strong>attributi</strong>, dipendenti dal mercato e solitamente dalla categoria</li>\n</ul>\n<p>Per creare una regola di pubblicazione per un particolare marketplace, è necessario quindi fornire (oltre all'utente con cui si desidera effettuare la pubblicazione) questa serie di informazioni, le cui caratteristiche sono da ricavare con altre chiamate API.</p>\n<p>I parametri sono informazioni che non possono variare per i prodotti a cui questa regola sarà applicata. Un parametro tipico è la categoria del marketplace in cui quell'insieme di prodotti verrà pubblicato.</p>\n<p>Gli attributi, invece, sono informazioni specifiche di un prodotto come, ad esempio, il colore, la marca o il fatto che sia o meno repellente all'acqua.</p>\n<h2 id=\"categoria\">Categoria</h2>\n<p>Praticamente ogni marketplace ha la sua gerarchia di categorie per ovvie ragioni. Questo parametro è talmente particolare che è prevista una chiamata API dedicata. Questo parametro accetta opzionalmente in ingresso un parametro <code>parentCategoryId</code> che indica per quale categoria padre si intende recuperare le categorie figlie.</p>\n<h2 id=\"parametri\">Parametri</h2>\n<p>I parametri si dividono, a loro volta, in due gruppi:</p>\n<ul>\n<li><strong>generici</strong></li>\n<li><strong>dipendenti dalla categoria</strong></li>\n</ul>\n<p>Esistono infatti dei parametri che sono obbligatori per certe categorie, ma non per altri. Oppure parametri il cui valore dipende, appunto, dalla categoria in cui i prodotti verranno inserzionati.</p>\n<p>I parametri possono essere recuperati con la chiamata <code>Get parameters</code> che accetta, opzionalmente, un parametro <code>categoryId</code> che permette, appunto, di recuperare i parametri dipendenti dalla categoria.</p>\n<h2 id=\"attributi\">Attributi</h2>\n<p>Per recuperare gli attributi è necessario passare sempre almeno tutti i parametri definiti come obbligatori, sia che siano generici sia che siano dipendenti dalla categoria.</p>\n<h1 id=\"processo-suggerito-di-integrazione\">Processo suggerito di integrazione</h1>\n<ol>\n<li>verifica quali parametri sono richiesti per pubblicare sul marketplace che hai selezionato. Puoi farlo con la chiamata <code>Get parameters</code></li>\n<li>se fra i parametri richiesti c'è un parametro categoria (generalmente chiamato <code>category</code>), allora occupati di identificare quella in cui vuoi pubblicare i tuoi prodotti</li>\n<li>puoi recuperare le categorie con la chiamata <code>Get hierarchies</code> passando opzionalmente il parametro <code>parentCategoryId</code> per identificare le relative categorie figlie. Potrai selezionare la categoria se l'attributo <code>CanBeSelected</code> è valorizzato a <code>true</code>.</li>\n<li>una volta identificata la categoria recupera con la chiamata <code>Get parameters</code> (avendo cura di passare il parametro <code>categoryId</code>) gli eventuali altri parametri dipendenti dalla categoria che hai selezionato.</li>\n<li>stabilisci un valore per tutti i parametri obbligatori (<code>IsRequired = true</code>). Alcuni parametri sono a scelta multipla (ovvero il valore non è libero, ma a scelta fra un elenco ben preciso). Per recuperare i valori ammessi, usa la chiamata <code>Get parameter values</code>.</li>\n<li>effettua la chiamata <code>Get attributes</code>, passando tutti i parametri e i relativi valori, per determinare gli attributi richiesti</li>\n<li>per gli attributi a scelta multipla, recupera i valori ammessi usando la chiamata <code>Get attribute values</code>.</li>\n<li>passa parametri e attributi nella chiamata <code>Create rule</code> per creare la regola e abilitare così il tuo account alla distribuzione dei tuoi prodotti!</li>\n</ol>\n","_postman_id":"77ad2769-2a12-44bf-b658-93a1b8c4d866","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Diagnostics","item":[{"name":"Get Diagnostics","id":"e7d0ec04-0065-47aa-bdc5-2ca7942f3ae8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"page\": 0,\r\n  \"pageSize\": 5,\r\n  \"filters\": [\r\n      //{ \"field\": \"Running\", \"values\" : [false] },\r\n      //{ \"field\": \"idUser\", \"values\" : [18] }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/marketplaces/{{marketplace}}/diagnostics","description":"<p>Recupera le diagnostiche, ovvero i report di invio verso un particolare marketplace.</p>\n<p>È possibile filtrare le diagnostiche per:</p>\n<ul>\n<li><strong>Running</strong>: boolean (true / false) che indica se la diagnostica è ancora in esecuzione su MarketRock</li>\n<li><strong>idModule</strong>: identificativo del modulo (marketplace)</li>\n<li><strong>idUser</strong>: id utente marketplace</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["marketplaces","{{marketplace}}","diagnostics"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"c2dc43d9-d332-48dd-bb93-7b2d99a510f8","name":"Get Diagnostics","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"page\": 0,\r\n  \"pageSize\": 5,\r\n}","options":{"raw":{"language":"json"}}},"url":"https://rest.edock.it/api/marketplaces/amazon/diagnostics"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 31 Oct 2023 08:28:50 GMT"},{"key":"Content-Length","value":"512"}],"cookie":[],"responseTime":null,"body":"{\n    \"Results\": [\n        {\n            \"idDiagnostic\": 13,\n            \"idModule\": 23,\n            \"Submodule\": \"IT\",\n            \"idUser\": 18,\n            \"LegacyUserId\": null,\n            \"CreatedOn\": \"2023-03-08T16:04:38.43Z\",\n            \"Completed\": true,\n            \"Rows\": []\n        },\n        {\n            \"idDiagnostic\": 12,\n            \"idModule\": 23,\n            \"Submodule\": \"IT\",\n            \"idUser\": 18,\n            \"LegacyUserId\": null,\n            \"CreatedOn\": \"2023-03-07T11:48:32.707Z\",\n            \"Completed\": true,\n            \"Rows\": []\n        },\n        {\n            \"idDiagnostic\": 11,\n            \"idModule\": 23,\n            \"Submodule\": \"IT\",\n            \"idUser\": 18,\n            \"LegacyUserId\": null,\n            \"CreatedOn\": \"2023-03-07T10:26:25.983Z\",\n            \"Completed\": true,\n            \"Rows\": []\n        }\n    ],\n    \"TotalCount\": 3,\n    \"HasMore\": false,\n    \"Page\": 0,\n    \"PageSize\": 5\n}"}],"_postman_id":"e7d0ec04-0065-47aa-bdc5-2ca7942f3ae8"},{"name":"Get Diagnostics Rows","id":"2784564f-b0da-4039-a3a6-e47c8a28b890","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"page\": 0,\r\n  \"pageSize\": 5,\r\n  \"filters\": [\r\n      //{ \"field\": \"Error\", \"values\" : [false] },\r\n      //{ \"field\": \"SKU\", \"values\" : [23] },\r\n      //{ \"field\": \"idFolder\", \"values\" : [18] }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/marketplaces/{{marketplace}}/diagnostics/{{idDiagnostic}}}/rows","description":"<p>Recupera le righe associate ad una particolare diagnostica il cui ID è passato nel parametro <code>{{idDiagnostics}}</code>.</p>\n<p>È possibile filtrare le righe per:</p>\n<ul>\n<li><strong>Error</strong>: boolean (true / false) che indica se la riga è in uno stato di errore</li>\n<li><strong>SKU</strong>: codice del prodotto associato alla riga</li>\n<li><strong>idFolder</strong>: ID della categoria MarketRock</li>\n</ul>\n<p><strong>Stato della riga</strong></p>\n<p>Ad ogni riga è associato uno stato (campo Status). Il campo Status assume un valore diverso, in funzione di come sta procedendo la distribuzione.</p>\n<p>Legenda degli stati:</p>\n<p><strong>1 = PENDING</strong>, Pendente, deve ancora essere preso in carico  </p>\n<p>== COLLEGAMENTO AD UNA SCHEDA ESISTENTE ==<br />In questi stati si entra se il prodotto <strong>non</strong> risulta ancora collegato al Marketplace. MarketRock verifica se quel prodotto esiste sul marketplace tramite una procedura chiamata di \"Matching\". Se la scheda esiste, MarketRock si collega. Se la scheda non esiste, si passa alla procedura di creazione. Se il prodotto risulta collegato, questa fase viene saltata.  </p>\n<p><strong>2 = MATCHINGINPROGRESS</strong>, Matching in corso (cioè sta verificando che quel prodotto esista nel catalogo del marketplace)<br /><strong>3 = MATCHINGTRANSFORMATIONFAILURE</strong>, Matching fallito <strong>prima</strong> che sia stato tentato il matching (per capire la ragione dell'errore guardare MatchingExternalErrorMessage)<br /><strong>4 = MATCHED</strong>,  si è agganciato alla scheda<br /><strong>5 = NOMATCH</strong>, nessun match<br /><strong>11 = MATCHINGFAILURE</strong>, si è verificato un errore di qualche tipo nella connessione alla scheda. Guardare MatchingExternalErrorMessage.<br /><strong>12 = MATCHINGBLOCKED</strong>, la connessione alla scheda è stata bloccata (nel caso di Amazon può essere per presenza di ASIN multipli collegati allo stesso EAN o per una differenza di prezzo troppo bassa fra il tuo prezzo e quello più basso che c'è su Amazon). Bisogna guardare MatchingBlockedArgs  </p>\n<p>== CREAZIONE / MODIFICA DELLA SCHEDA ==  </p>\n<p><strong>6 = CREATIONPENDING</strong>, Creazione / modifica in corso<br /><strong>7 = CREATIONTRANSFORMATIONFAILURE</strong> = Creazione fallita <strong>prima</strong> dell'invio al marketplace (guardare CreationExternalErrorMessage)<br /><strong>8 = CREATIONINPROGRESS,</strong> Creazione in corso<br /><strong>9 = CREATIONFAILURE</strong>, Creazione fallita per errore arrivato dal Marketplace (guardare CreationExternalErrorMessage)<br /><strong>10 = CREATED</strong>, Prodotto creato</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["marketplaces","{{marketplace}}","diagnostics","{{idDiagnostic}}}","rows"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"2daa34df-b9eb-432d-b4d8-00fad07bbdee","name":"Get Diagnostics Rows","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"page\": 0,\r\n  \"pageSize\": 5,\r\n  \"filters\": [\r\n      //{ \"field\": \"Error\", \"values\" : [false] },\r\n      //{ \"field\": \"SKU\", \"values\" : [23] },\r\n      //{ \"field\": \"idFolder\", \"values\" : [18] }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://rest.edock.it/api/marketplaces/diagnostics/13/rows"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 31 Oct 2023 08:31:16 GMT"},{"key":"Content-Length","value":"995"}],"cookie":[],"responseTime":null,"body":"{\n    \"Results\": [\n        {\n            \"idItem\": 25889,\n            \"idRule\": 20,\n            \"ExternalParameters\": null,\n            \"MatchingExternalReferenceId\": \"10\",\n            \"CreationExternalReferenceId\": \"11\",\n            \"Status\": 9,\n            \"Completed\": true,\n            \"MatchingExternalErrorMessage\": \"The product does not exist\",\n            \"CreationExternalErrorMessage\": \"DESCRIPTION_KO|ProductRejectionReason.DESCRIPTION_KO.label - invalid data|IT,DESCRIPTION_KO|ProductRejectionReason.DESCRIPTION_KO.label - invalid data|PT,DESCRIPTION_KO|ProductRejectionReason.DESCRIPTION_KO.label - invalid data|BE,DESCRIPTION_KO|ProductRejectionReason.DESCRIPTION_KO.label - invalid data|DE,DESCRIPTION_KO|ProductRejectionReason.DESCRIPTION_KO.label - invalid data|ES,DESCRIPTION_KO|ProductRejectionReason.DESCRIPTION_KO.label - invalid data|NL,DESCRIPTION_KO|ProductRejectionReason.DESCRIPTION_KO.label - invalid data|FR\",\n            \"OnlyOffers\": false,\n            \"MatchingBlockedArgs\": null,\n            \"ItemSKU\": \"5060602160460\",\n            \"ItemInternalName\": \"Protein Bar Caramel Biscuit\",\n            \"ViewExternalUrl\": null\n        }\n    ],\n    \"TotalCount\": 1,\n    \"HasMore\": false,\n    \"Page\": 0,\n    \"PageSize\": 5\n}"}],"_postman_id":"2784564f-b0da-4039-a3a6-e47c8a28b890"},{"name":"Unlock Diagnostics Row","id":"5475718b-165e-4bb3-8557-d4f978fefa4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"idItem\": {{idItem}},\r\n    \"MatchingExternalReferenceId\": {{MatchingRef}}\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/marketplaces/diagnostics/{{idDiagnostics}}/rows/unlock","description":"<p>Alcuni mercati richiedono, prima di pubblicare una nuova scheda prodotto, di verificarne l'esistenza nel loro catalogo, magari cercando per identificatore EAN o altro.</p>\n<p>In alcuni contesti, quindi, è possibile che il prodotto sia già presente nel catalogo del marketplace, per cui è necessario collegarsi alla scheda già esistente.</p>\n<p>Tuttavia possono verificarsi alcune anomalie come, ad esempio:</p>\n<ul>\n<li><p>la presenza di più schede per lo stesso identificatore</p>\n</li>\n<li><p>la presenza di una scheda con un'offerta il cui prezzo è molto più alto del prezzo del cliente MarketRock</p>\n</li>\n</ul>\n<p>Per questa ragione, onde evitare spiacevoli situazioni, MarketRock inserisce la riga di diagnostica in uno stato di blocco. Per poter procedere al collegamento, quindi, è necessario sbloccare la riga con questa chiamata API.</p>\n<p>Per poter sbloccare la riga è necessario passare:</p>\n<ul>\n<li><p><strong>idItem</strong>: l'identificativo del prodotto</p>\n</li>\n<li><p><strong>MatchingExternalReferenceId</strong>: l'identificativo del marketplace a cui ci si vuole connettere</p>\n</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["marketplaces","diagnostics","{{idDiagnostics}}","rows","unlock"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5475718b-165e-4bb3-8557-d4f978fefa4b"}],"id":"66837213-350d-4bef-a70b-b61823481772","description":"<p>Il processo di distribuzione di un insieme di prodotti verso un marketplace è particolare di ogni marketplace. MarketRock, però, uniforma questi diversi processi, accorpandone gli elementi comuni.</p>\n<p>In linea generale il processo di distribuzione è suddiviso in due fasi:</p>\n<ul>\n<li><p><strong>Matching</strong> = verifica della presenza del prodotto nel catalogo prodotti del marketplace. Non tutti i marketplace hanno un catalogo prodotti a cui ci si deve connettere (si pensi, ad esempio, ad eBay o a Shopify)</p>\n</li>\n<li><p><strong>Creazione / modifica</strong> = una volta che è stata verificata la presenza sul marketplace, le distribuzioni successive cercheranno di creare (se il prodotto non è esistente) o modificare (se il prodotto è esistente) la scheda sul marketplace</p>\n</li>\n</ul>\n<p>Schematizzando, il processo è organizzato in questo modo:</p>\n<ol>\n<li><p>il prodotto su MarketRock risulta collegato ad un prodotto sul marketplace?</p>\n<ol>\n<li><p>se la risposta è no, viene verificato se il prodotto esiste sul marketplace.</p>\n<ol>\n<li><p>il prodotto esiste sul marketplace?</p>\n<ol>\n<li><p>se la risposta è sì, il prodotto MarketRock viene agganciato a quel prodotto e viene creata una offerta.</p>\n</li>\n<li><p>se la risposta è no, si passa alla fase di creazione / modifica</p>\n</li>\n</ol>\n</li>\n</ol>\n</li>\n<li><p>se la risposta è sì, si passa alla fase di creazione / modifica.</p>\n</li>\n</ol>\n</li>\n</ol>\n","_postman_id":"66837213-350d-4bef-a70b-b61823481772","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}}],"id":"182f8b80-483a-40f3-96f2-dafc8ea76ef6","_postman_id":"182f8b80-483a-40f3-96f2-dafc8ea76ef6","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"eBay","item":[{"name":"Item Specifics","id":"c7a07013-6933-45a7-bcfa-b8be7d0c72a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://rest.edock.it/api/ebay/{{eBaySite}}/categories/{{CategoryId}}/ItemSpecifics","description":"<p>Recupera gli Item Specifics di una particolare categoria eBay per un particolare sito eBay.</p>\n<h2 id=\"richiesta\">Richiesta</h2>\n<p>eBaySite: sito eBay di cui si vogliono recuperare gli attributi. Valori ammessi:</p>\n<ul>\n<li>Australia</li>\n<li>Austria</li>\n<li>Belgium_Dutch</li>\n<li>Belgium_French</li>\n<li>Canada</li>\n<li>CanadaFrench</li>\n<li>eBayMotors</li>\n<li>France</li>\n<li>Germany</li>\n<li>HongKong</li>\n<li>India</li>\n<li>Ireland </li>\n<li>Italy</li>\n<li>Malaysia</li>\n<li>Netherlands</li>\n<li>Philippines</li>\n<li>Poland</li>\n<li>Singapore</li>\n<li>Spain</li>\n<li>Switzerland</li>\n<li>UK</li>\n<li>US</li>\n</ul>\n<p>CategoryId: ID della categoria da cui si vogliono recupeare gli attributi</p>\n<h2 id=\"risposta\">Risposta</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"Name\": \"Altezza\",              //Nome dell'attributo\n    \"IsFreeText\": true,             //Indica se è supportato come testo libero\n    \"MinValues\": 1,                 //Valori minimi richiesti (1 = obbligatorio)\n    \"MaxValues\": 1,                 //Valori massimo\n    \"Values\": [],                   //Elenco di valori supportati, qualora l'attributo sia di tipo \"A scelta\" (vedi \"SelectionMode\")\n    \"AttributeValueType\": 1,        //0=Decimal, 1=Numerico, 2=Text\n    \"SelectionMode\": 4,             //3=A scelta dai valori passati, 4=Testo libero\n    \"VariationSpecific\": 0,         //Indica se questo attributo può essere usato per costruire varianti su eBay\n    \"VariationPicture\": 1,          //Indica se questo attributo può essere usato per far variare le immagini delle varianti su eBay\n    \"IsBrand\": false,               //Indica se questo è un attributo di tipo Marca\n    \"IsMPN\": false                  //Indica se questo è un attributo di tipo MPN\n}\n</code></pre>","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"protocol":"https","path":["api","ebay","{{eBaySite}}","categories","{{CategoryId}}","ItemSpecifics"],"host":["rest","edock","it"],"query":[],"variable":[]}},"response":[{"id":"93d25146-4a6e-4bb3-8bb5-15b7f44bec19","name":"Item Specifics","originalRequest":{"method":"GET","header":[],"url":"https://rest.edock.it/api/ebay/{{eBaySite}}/categories/{{CategoryId}}/ItemSpecifics"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Wed, 08 Jul 2020 15:44:59 GMT"},{"key":"Content-Length","value":"11846"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"Name\": \"Altezza\",\n        \"IsFreeText\": true,\n        \"MinValues\": 1,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Altezza bracciolo\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Altezza dal pavimento\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Altezza massima\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Altezza massima bracciolo\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Altezza massima schienale\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Altezza massima sedile\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Altezza minima\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Altezza minima bracciolo\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Altezza minima schienale\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Altezza minima sedile\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Altezza schienale\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Altezza sedile\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Anno di fabbricazione\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Articolo modificato\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [\n            \"Sì\",\n            \"No\"\n        ],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 3,\n        \"VariationSpecific\": 1,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Attrezzi necessari\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Caratteristiche\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 30,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Colore\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Descrizione dell'inserzione bundle\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 1,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Descrizione della modifica\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 1,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Famiglia personaggio\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Fermezza\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Finitura\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Forma\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Garanzia produttore\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Imballaggio\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Inclusi nel set\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 30,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Inserzione bundle\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [\n            \"Sì\",\n            \"No\"\n        ],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 3,\n        \"VariationSpecific\": 1,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Istruzioni di cura e manutenzione\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Larghezza\",\n        \"IsFreeText\": true,\n        \"MinValues\": 1,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Larghezza massima\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Larghezza minima\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Lunghezza\",\n        \"IsFreeText\": true,\n        \"MinValues\": 1,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Lunghezza massima\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Lunghezza minima\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Marca\",\n        \"IsFreeText\": true,\n        \"MinValues\": 1,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 1,\n        \"VariationPicture\": 1,\n        \"IsBrand\": true,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Materiale\",\n        \"IsFreeText\": true,\n        \"MinValues\": 1,\n        \"MaxValues\": 30,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 1,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Materiale del rivestimento\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Modello\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Motivo\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 1,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"MPN\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": true\n    },\n    {\n        \"Name\": \"Numero di articoli nel set\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Originale, riproduzione\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Paese di fabbricazione\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Periodo di fabbricazione\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Personaggio\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Personalizzato\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [\n            \"Sì\",\n            \"No\"\n        ],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 3,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Peso\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Portata massima\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Profondità sedile\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Quantità\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 1,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Reparto\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Richiede montaggio\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Serie\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Stanza\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 30,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 1,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Stile\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 1,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Tema\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Tipo\",\n        \"IsFreeText\": true,\n        \"MinValues\": 1,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Unità di misura\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [\n            \"Unità\",\n            \"m³\",\n            \"m²\",\n            \"m\",\n            \"L\",\n            \"100 ml\",\n            \"10 ml\",\n            \"kg\",\n            \"100 g\",\n            \"10 g\"\n        ],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 3,\n        \"VariationSpecific\": 1,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    }\n]"}],"_postman_id":"c7a07013-6933-45a7-bcfa-b8be7d0c72a5"},{"name":"Business Policies","id":"514b9aba-3a26-45c1-89db-b0fa3c8ef5c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"ebayUsername\": \"horreari_tech\",\r\n    \"eBaySite\": \"Italy\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/ebay/businesspolicies","description":"<p>Recupera gli Item Specifics di una particolare categoria eBay per un particolare sito eBay.</p>\n<h2 id=\"richiesta\">Richiesta</h2>\n<p>eBaySite: sito eBay di cui si vogliono recuperare gli attributi. Valori ammessi:</p>\n<ul>\n<li>Australia</li>\n<li>Austria</li>\n<li>Belgium_Dutch</li>\n<li>Belgium_French</li>\n<li>Canada</li>\n<li>CanadaFrench</li>\n<li>eBayMotors</li>\n<li>France</li>\n<li>Germany</li>\n<li>HongKong</li>\n<li>India</li>\n<li>Ireland </li>\n<li>Italy</li>\n<li>Malaysia</li>\n<li>Netherlands</li>\n<li>Philippines</li>\n<li>Poland</li>\n<li>Singapore</li>\n<li>Spain</li>\n<li>Switzerland</li>\n<li>UK</li>\n<li>US</li>\n</ul>\n<p>CategoryId: ID della categoria da cui si vogliono recupeare gli attributi</p>\n<h2 id=\"risposta\">Risposta</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"Name\": \"Altezza\",              //Nome dell'attributo\n    \"IsFreeText\": true,             //Indica se è supportato come testo libero\n    \"MinValues\": 1,                 //Valori minimi richiesti (1 = obbligatorio)\n    \"MaxValues\": 1,                 //Valori massimo\n    \"Values\": [],                   //Elenco di valori supportati, qualora l'attributo sia di tipo \"A scelta\" (vedi \"SelectionMode\")\n    \"AttributeValueType\": 1,        //0=Decimal, 1=Numerico, 2=Text\n    \"SelectionMode\": 4,             //3=A scelta dai valori passati, 4=Testo libero\n    \"VariationSpecific\": 0,         //Indica se questo attributo può essere usato per costruire varianti su eBay\n    \"VariationPicture\": 1,          //Indica se questo attributo può essere usato per far variare le immagini delle varianti su eBay\n    \"IsBrand\": false,               //Indica se questo è un attributo di tipo Marca\n    \"IsMPN\": false                  //Indica se questo è un attributo di tipo MPN\n}\n</code></pre>","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["ebay","businesspolicies"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"bc0f65c8-759f-481f-b404-a71fa692d1dc","name":"Item Specifics","originalRequest":{"method":"GET","header":[],"url":"https://rest.edock.it/api/ebay/{{eBaySite}}/categories/{{CategoryId}}/ItemSpecifics"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Wed, 08 Jul 2020 15:44:59 GMT"},{"key":"Content-Length","value":"11846"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"Name\": \"Altezza\",\n        \"IsFreeText\": true,\n        \"MinValues\": 1,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Altezza bracciolo\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Altezza dal pavimento\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Altezza massima\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Altezza massima bracciolo\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Altezza massima schienale\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Altezza massima sedile\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Altezza minima\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Altezza minima bracciolo\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Altezza minima schienale\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Altezza minima sedile\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Altezza schienale\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Altezza sedile\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Anno di fabbricazione\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Articolo modificato\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [\n            \"Sì\",\n            \"No\"\n        ],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 3,\n        \"VariationSpecific\": 1,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Attrezzi necessari\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Caratteristiche\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 30,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Colore\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Descrizione dell'inserzione bundle\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 1,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Descrizione della modifica\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 1,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Famiglia personaggio\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Fermezza\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Finitura\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Forma\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Garanzia produttore\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Imballaggio\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Inclusi nel set\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 30,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Inserzione bundle\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [\n            \"Sì\",\n            \"No\"\n        ],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 3,\n        \"VariationSpecific\": 1,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Istruzioni di cura e manutenzione\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Larghezza\",\n        \"IsFreeText\": true,\n        \"MinValues\": 1,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Larghezza massima\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Larghezza minima\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Lunghezza\",\n        \"IsFreeText\": true,\n        \"MinValues\": 1,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Lunghezza massima\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Lunghezza minima\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Marca\",\n        \"IsFreeText\": true,\n        \"MinValues\": 1,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 1,\n        \"VariationPicture\": 1,\n        \"IsBrand\": true,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Materiale\",\n        \"IsFreeText\": true,\n        \"MinValues\": 1,\n        \"MaxValues\": 30,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 1,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Materiale del rivestimento\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Modello\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Motivo\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 1,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"MPN\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": true\n    },\n    {\n        \"Name\": \"Numero di articoli nel set\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Originale, riproduzione\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Paese di fabbricazione\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Periodo di fabbricazione\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Personaggio\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Personalizzato\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [\n            \"Sì\",\n            \"No\"\n        ],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 3,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Peso\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Portata massima\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Profondità sedile\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Quantità\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 1,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Reparto\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Richiede montaggio\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Serie\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Stanza\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 30,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 1,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Stile\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 1,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Tema\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Tipo\",\n        \"IsFreeText\": true,\n        \"MinValues\": 1,\n        \"MaxValues\": 1,\n        \"Values\": [],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 4,\n        \"VariationSpecific\": 0,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    },\n    {\n        \"Name\": \"Unità di misura\",\n        \"IsFreeText\": true,\n        \"MinValues\": 0,\n        \"MaxValues\": 1,\n        \"Values\": [\n            \"Unità\",\n            \"m³\",\n            \"m²\",\n            \"m\",\n            \"L\",\n            \"100 ml\",\n            \"10 ml\",\n            \"kg\",\n            \"100 g\",\n            \"10 g\"\n        ],\n        \"AttributeValueType\": 1,\n        \"SelectionMode\": 3,\n        \"VariationSpecific\": 1,\n        \"VariationPicture\": 1,\n        \"IsBrand\": false,\n        \"IsMPN\": false\n    }\n]"}],"_postman_id":"514b9aba-3a26-45c1-89db-b0fa3c8ef5c1"},{"name":"Get Listings","id":"e2063080-0210-4624-8de3-1dce55dfd7ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{ \r\n    \"filters\": [ \r\n        { \r\n            \"field\": \"eBayItemId\", \r\n            \"values\": [\"133479452519\", \"143669049719\"] \r\n        }\r\n    ] \r\n}","options":{"raw":{"language":"json"}}},"url":"https://rest.edock.it/api/eBayListing/GetListings","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"protocol":"https","path":["api","eBayListing","GetListings"],"host":["rest","edock","it"],"query":[],"variable":[]}},"response":[{"id":"76dda294-ae78-472e-9c7f-ca08535d4ff4","name":"Get Listings > By eBay ItemId","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{ \r\n    \"filters\": [ \r\n        { \r\n            \"field\": \"eBayItemId\", \r\n            \"values\": [\"133479452519\", \"143669049719\"] \r\n        }\r\n    ] \r\n}","options":{"raw":{"language":"json"}}},"url":"https://rest.edock.it/api/eBayListing/GetListings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"614"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Tue, 06 Oct 2020 09:49:47 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"PageSize\": 20,\n    \"Page\": 0,\n    \"TotalCount\": 2,\n    \"Content\": [\n        {\n            \"AuctionID\": 3,\n            \"AuctionTitle\": \"Cerchi in lega AUDI A3 15\\\" - MIM DINAMO ECE KRISTAL SILVER\",\n            \"StatusID\": 0,\n            \"StatusName\": null,\n            \"eBayItemId\": \"133479452519\",\n            \"eBaySite\": \"Italy\",\n            \"eBayUsername\": \"cerchigomme\",\n            \"XmlListing\": null,\n            \"IsTemporary\": false,\n            \"eBayErrorCode\": null,\n            \"AuctionSKU\": \"19CD191C452C6237E84CBAA9939912C6\",\n            \"CreatedOn\": \"2020-07-21T14:56:08.21Z\",\n            \"ViewURL\": \"http://cgi.ebay.it/ws/eBayISAPI.dll?ViewItem&item=133479452519\",\n            \"eBaySiteCodeType\": 8\n        },\n        {\n            \"AuctionID\": 4,\n            \"AuctionTitle\": \"Cerchi in lega AUDI A6 16\\\" - MIM MILANO EVO FLAT BLACK\",\n            \"StatusID\": 0,\n            \"StatusName\": null,\n            \"eBayItemId\": \"143669049719\",\n            \"eBaySite\": \"Italy\",\n            \"eBayUsername\": \"cerchigomme\",\n            \"XmlListing\": null,\n            \"IsTemporary\": false,\n            \"eBayErrorCode\": null,\n            \"AuctionSKU\": \"17AC418CE45CCD6C2A7DAF143C74CA4B\",\n            \"CreatedOn\": \"2020-07-21T14:55:32.813Z\",\n            \"ViewURL\": \"http://cgi.ebay.it/ws/eBayISAPI.dll?ViewItem&item=143669049719\",\n            \"eBaySiteCodeType\": 8\n        }\n    ]\n}"}],"_postman_id":"e2063080-0210-4624-8de3-1dce55dfd7ff"}],"id":"cbfd50ec-01f3-4ddd-bd62-e1f413d1b72e","description":"<p>Chiamate relative al mercato eBay</p>\n","_postman_id":"cbfd50ec-01f3-4ddd-bd62-e1f413d1b72e","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Amazon","item":[{"name":"Request Report","id":"35ff13d1-9a52-494d-97f5-7d6080b217f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"ReportType\": \"FBA_Ledger_Summary_Data_Report\",\r\n    \"SubscriptionId\": {{idUser}},\r\n    \"DataStartTime\": \"2024-09-01T00:00:00.000Z\",\r\n    \"DataEndTime\": \"2024-09-26T23:59:59.999Z\",\r\n    \"ReportOptions\": \r\n    {\r\n        \"aggregateByLocation\": \"COUNTRY\",\r\n        \"aggregatedByTimePeriod\": \"DAILY\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/amazon/reports","description":"<p>Requests to Amazon through MarketRock the generation of a particular report.</p>\n<p>Supported reports:</p>\n<ul>\n<li><strong>FBA_Ledger_Summary_Data_Report</strong></li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["amazon","reports"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"35ff13d1-9a52-494d-97f5-7d6080b217f5"},{"name":"Get Report","id":"427e7091-dee6-45c0-9bde-4127dce7a0bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/amazon/reports/{{reportId}}","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["amazon","reports","{{reportId}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"427e7091-dee6-45c0-9bde-4127dce7a0bd"}],"id":"9f15ac99-1674-4437-8d1f-ca180e8f722d","description":"<p>These calls perform operations on the connected Amazon accounts. In order to perform these calls, your application must be granted with the <strong>amazon_read</strong> scope, which is a restricted role, provided only to certain applications for well determined and agreed workflows.</p>\n","_postman_id":"9f15ac99-1674-4437-8d1f-ca180e8f722d","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Modules","id":"a7f3ad7c-a17c-7b02-9349-61356b4bb6f8","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{endpoint}}/Modules/SellingModules","description":"<p>Recupera i mercati definiti su MarketRock.</p>\n<p>I mercati permettono di identificare su quale marketplace è stato effettuato l'ordine.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["Modules","SellingModules"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"8b41837a-e1f8-4f1c-a9d8-9ec845a12f0b","name":"Modules","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{endpoint}}/Modules/SellingModules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"2854"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 30 Oct 2023 15:23:04 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"SubModules\": [\n            {\n                \"Description\": \"001\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": null,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"002\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": null,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"005\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": null,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            }\n        ],\n        \"idModule\": 20,\n        \"Description\": \"eDock4LeroyMerlin\",\n        \"Enabled\": true,\n        \"idPricelist\": null,\n        \"idStorage\": null,\n        \"SupportsCustomDescriptions\": true,\n        \"SupportsCustomImages\": true,\n        \"SupportsCustomExclusions\": false,\n        \"SupportsCustomStorage\": false,\n        \"HasActiveUser\": true,\n        \"Users\": [\n            {\n                \"idUser\": 1,\n                \"DisplayName\": \"Test LeroyMerlin\",\n                \"SubModule\": null,\n                \"SubModuleAssociated\": false,\n                \"IsSandbox\": true,\n                \"idUserUnified\": 0\n            }\n        ],\n        \"idPricelists\": [],\n        \"idStorages\": [\n            3\n        ]\n    },\n    {\n        \"SubModules\": [\n            {\n                \"Description\": \"BE\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"CEU\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"DE\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"DK\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"EEU\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"ES\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"FR\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"GR\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"IT\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": true,\n                \"Users\": [\n                    {\n                        \"idUser\": 14,\n                        \"DisplayName\": \"test\",\n                        \"SubModule\": \"IT\",\n                        \"SubModuleAssociated\": true,\n                        \"IsSandbox\": true,\n                        \"idUserUnified\": 0\n                    }\n                ]\n            },\n            {\n                \"Description\": \"NL\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"SEU\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            }\n        ],\n        \"idModule\": 19,\n        \"Description\": \"eDock4Yoox\",\n        \"Enabled\": true,\n        \"idPricelist\": null,\n        \"idStorage\": null,\n        \"SupportsCustomDescriptions\": true,\n        \"SupportsCustomImages\": true,\n        \"SupportsCustomExclusions\": false,\n        \"SupportsCustomStorage\": false,\n        \"HasActiveUser\": true,\n        \"Users\": [\n            {\n                \"idUser\": 14,\n                \"DisplayName\": \"test\",\n                \"SubModule\": \"IT\",\n                \"SubModuleAssociated\": true,\n                \"IsSandbox\": true,\n                \"idUserUnified\": 0\n            }\n        ],\n        \"idPricelists\": [\n            1\n        ],\n        \"idStorages\": [\n            3\n        ]\n    },\n    {\n        \"SubModules\": [\n            {\n                \"Description\": \"Austria\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 29,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Belgium\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 29,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"France\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 29,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Germany\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 29,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Italy\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 29,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Netherlands\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 29,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Spain\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 29,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"UK\",\n                \"Currency\": \"GBP\",\n                \"Enabled\": true,\n                \"idPricelist\": 29,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            }\n        ],\n        \"idModule\": 16,\n        \"Description\": \"eDock4BackMarket\",\n        \"Enabled\": true,\n        \"idPricelist\": 1,\n        \"idStorage\": null,\n        \"SupportsCustomDescriptions\": true,\n        \"SupportsCustomImages\": false,\n        \"SupportsCustomExclusions\": false,\n        \"SupportsCustomStorage\": false,\n        \"HasActiveUser\": true,\n        \"Users\": [\n            {\n                \"idUser\": 1,\n                \"DisplayName\": \"Test BackMarket Preprod\",\n                \"SubModule\": null,\n                \"SubModuleAssociated\": false,\n                \"IsSandbox\": true,\n                \"idUserUnified\": 0\n            }\n        ],\n        \"idPricelists\": [\n            1,\n            29\n        ],\n        \"idStorages\": [\n            3\n        ]\n    },\n    {\n        \"SubModules\": [],\n        \"idModule\": 15,\n        \"Description\": \"eDock4AliExpress\",\n        \"Enabled\": true,\n        \"idPricelist\": null,\n        \"idStorage\": null,\n        \"SupportsCustomDescriptions\": true,\n        \"SupportsCustomImages\": false,\n        \"SupportsCustomExclusions\": false,\n        \"SupportsCustomStorage\": false,\n        \"HasActiveUser\": false,\n        \"Users\": [],\n        \"idPricelists\": [],\n        \"idStorages\": [\n            3\n        ]\n    },\n    {\n        \"SubModules\": [],\n        \"idModule\": 14,\n        \"Description\": \"eDock4IBS\",\n        \"Enabled\": true,\n        \"idPricelist\": 18,\n        \"idStorage\": null,\n        \"SupportsCustomDescriptions\": false,\n        \"SupportsCustomImages\": false,\n        \"SupportsCustomExclusions\": false,\n        \"SupportsCustomStorage\": false,\n        \"HasActiveUser\": false,\n        \"Users\": [],\n        \"idPricelists\": [\n            18\n        ],\n        \"idStorages\": [\n            3\n        ]\n    },\n    {\n        \"SubModules\": [],\n        \"idModule\": 13,\n        \"Description\": \"eDock4ManoMano\",\n        \"Enabled\": true,\n        \"idPricelist\": 1,\n        \"idStorage\": null,\n        \"SupportsCustomDescriptions\": false,\n        \"SupportsCustomImages\": false,\n        \"SupportsCustomExclusions\": false,\n        \"SupportsCustomStorage\": false,\n        \"HasActiveUser\": true,\n        \"Users\": [\n            {\n                \"idUser\": 5,\n                \"DisplayName\": \"test desc\",\n                \"SubModule\": null,\n                \"SubModuleAssociated\": false,\n                \"IsSandbox\": false,\n                \"idUserUnified\": 0\n            }\n        ],\n        \"idPricelists\": [\n            1\n        ],\n        \"idStorages\": [\n            3\n        ]\n    },\n    {\n        \"SubModules\": [],\n        \"idModule\": 6,\n        \"Description\": \"eDock4ePrice\",\n        \"Enabled\": true,\n        \"idPricelist\": null,\n        \"idStorage\": null,\n        \"SupportsCustomDescriptions\": false,\n        \"SupportsCustomImages\": false,\n        \"SupportsCustomExclusions\": false,\n        \"SupportsCustomStorage\": false,\n        \"HasActiveUser\": false,\n        \"Users\": [],\n        \"idPricelists\": [],\n        \"idStorages\": [\n            3\n        ]\n    },\n    {\n        \"SubModules\": [],\n        \"idModule\": 7,\n        \"Description\": \"eDock4Spartoo\",\n        \"Enabled\": true,\n        \"idPricelist\": null,\n        \"idStorage\": null,\n        \"SupportsCustomDescriptions\": false,\n        \"SupportsCustomImages\": false,\n        \"SupportsCustomExclusions\": false,\n        \"SupportsCustomStorage\": false,\n        \"HasActiveUser\": false,\n        \"Users\": [],\n        \"idPricelists\": [],\n        \"idStorages\": [\n            3\n        ]\n    },\n    {\n        \"SubModules\": [\n            {\n                \"Description\": \"Italy\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": true,\n                \"Users\": [\n                    {\n                        \"idUser\": 988,\n                        \"DisplayName\": \"test2\",\n                        \"SubModule\": \"Italy\",\n                        \"SubModuleAssociated\": true,\n                        \"IsSandbox\": false,\n                        \"idUserUnified\": 0\n                    },\n                    {\n                        \"idUser\": 987,\n                        \"DisplayName\": \"test\",\n                        \"SubModule\": \"Italy\",\n                        \"SubModuleAssociated\": true,\n                        \"IsSandbox\": false,\n                        \"idUserUnified\": 0\n                    },\n                    {\n                        \"idUser\": 1048,\n                        \"DisplayName\": \"Amazon Italy\",\n                        \"SubModule\": \"Italy\",\n                        \"SubModuleAssociated\": true,\n                        \"IsSandbox\": false,\n                        \"idUserUnified\": 0\n                    },\n                    {\n                        \"idUser\": 989,\n                        \"DisplayName\": \"test 3\",\n                        \"SubModule\": \"Italy\",\n                        \"SubModuleAssociated\": true,\n                        \"IsSandbox\": false,\n                        \"idUserUnified\": 0\n                    }\n                ]\n            },\n            {\n                \"Description\": \"Germany\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"France\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Spain\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"UK\",\n                \"Currency\": \"GBP\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"US\",\n                \"Currency\": \"USD\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Mexico\",\n                \"Currency\": \"MXN\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Canada\",\n                \"Currency\": \"CAD\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": true,\n                \"Users\": [\n                    {\n                        \"idUser\": 631,\n                        \"DisplayName\": \"DBN.CA\",\n                        \"SubModule\": \"Canada\",\n                        \"SubModuleAssociated\": true,\n                        \"IsSandbox\": false,\n                        \"idUserUnified\": 0\n                    }\n                ]\n            },\n            {\n                \"Description\": \"Australia\",\n                \"Currency\": \"AUD\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Brazil\",\n                \"Currency\": \"BRL\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"India\",\n                \"Currency\": \"INR\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Japan\",\n                \"Currency\": \"JPY\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Turkey\",\n                \"Currency\": \"TRY\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"UAE\",\n                \"Currency\": \"AED\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Egypt\",\n                \"Currency\": \"EGP\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Netherlands\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"SaudiArabia\",\n                \"Currency\": \"SAR\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Singapore\",\n                \"Currency\": \"SGD\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Sweden\",\n                \"Currency\": \"SEK\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Belgium\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 1,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Poland\",\n                \"Currency\": \"PLN\",\n                \"Enabled\": true,\n                \"idPricelist\": null,\n                \"idStorage\": null,\n                \"HasActiveUser\": true,\n                \"Users\": [\n                    {\n                        \"idUser\": 1047,\n                        \"DisplayName\": \"Amazon Poland\",\n                        \"SubModule\": \"Poland\",\n                        \"SubModuleAssociated\": true,\n                        \"IsSandbox\": false,\n                        \"idUserUnified\": 0\n                    }\n                ]\n            }\n        ],\n        \"idModule\": 4,\n        \"Description\": \"eDock4Amazon\",\n        \"Enabled\": true,\n        \"idPricelist\": 1,\n        \"idStorage\": null,\n        \"SupportsCustomDescriptions\": true,\n        \"SupportsCustomImages\": true,\n        \"SupportsCustomExclusions\": true,\n        \"SupportsCustomStorage\": false,\n        \"HasActiveUser\": true,\n        \"Users\": [\n            {\n                \"idUser\": 631,\n                \"DisplayName\": \"DBN.CA\",\n                \"SubModule\": \"Canada\",\n                \"SubModuleAssociated\": true,\n                \"IsSandbox\": false,\n                \"idUserUnified\": 0\n            },\n            {\n                \"idUser\": 988,\n                \"DisplayName\": \"test2\",\n                \"SubModule\": \"Italy\",\n                \"SubModuleAssociated\": true,\n                \"IsSandbox\": false,\n                \"idUserUnified\": 0\n            },\n            {\n                \"idUser\": 987,\n                \"DisplayName\": \"test\",\n                \"SubModule\": \"Italy\",\n                \"SubModuleAssociated\": true,\n                \"IsSandbox\": false,\n                \"idUserUnified\": 0\n            },\n            {\n                \"idUser\": 1047,\n                \"DisplayName\": \"Amazon Poland\",\n                \"SubModule\": \"Poland\",\n                \"SubModuleAssociated\": true,\n                \"IsSandbox\": false,\n                \"idUserUnified\": 0\n            },\n            {\n                \"idUser\": 1048,\n                \"DisplayName\": \"Amazon Italy\",\n                \"SubModule\": \"Italy\",\n                \"SubModuleAssociated\": true,\n                \"IsSandbox\": false,\n                \"idUserUnified\": 0\n            },\n            {\n                \"idUser\": 989,\n                \"DisplayName\": \"test 3\",\n                \"SubModule\": \"Italy\",\n                \"SubModuleAssociated\": true,\n                \"IsSandbox\": false,\n                \"idUserUnified\": 0\n            }\n        ],\n        \"idPricelists\": [\n            1\n        ],\n        \"idStorages\": [\n            3\n        ]\n    },\n    {\n        \"SubModules\": [\n            {\n                \"Description\": \"Australia\",\n                \"Currency\": \"AUD\",\n                \"Enabled\": true,\n                \"idPricelist\": 3,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Austria\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 3,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Belgium_Dutch\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 3,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Belgium_French\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 3,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Canada\",\n                \"Currency\": \"CAD\",\n                \"Enabled\": true,\n                \"idPricelist\": 3,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"CanadaFrench\",\n                \"Currency\": \"CAD\",\n                \"Enabled\": true,\n                \"idPricelist\": 3,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"eBayMotors\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 3,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"France\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 3,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Germany\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 3,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"HongKong\",\n                \"Currency\": \"HKD\",\n                \"Enabled\": true,\n                \"idPricelist\": 3,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"India\",\n                \"Currency\": \"INR\",\n                \"Enabled\": true,\n                \"idPricelist\": 3,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Ireland\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 3,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Italy\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 3,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Malaysia\",\n                \"Currency\": \"MYR\",\n                \"Enabled\": true,\n                \"idPricelist\": 3,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Netherlands\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 3,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Philippines\",\n                \"Currency\": \"PHP\",\n                \"Enabled\": true,\n                \"idPricelist\": 3,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Poland\",\n                \"Currency\": \"PLN\",\n                \"Enabled\": true,\n                \"idPricelist\": 3,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Singapore\",\n                \"Currency\": \"SGD\",\n                \"Enabled\": true,\n                \"idPricelist\": 3,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Spain\",\n                \"Currency\": \"EUR\",\n                \"Enabled\": true,\n                \"idPricelist\": 3,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"Switzerland\",\n                \"Currency\": \"CHF\",\n                \"Enabled\": true,\n                \"idPricelist\": 3,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"UK\",\n                \"Currency\": \"GBP\",\n                \"Enabled\": true,\n                \"idPricelist\": 3,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            },\n            {\n                \"Description\": \"US\",\n                \"Currency\": \"USD\",\n                \"Enabled\": true,\n                \"idPricelist\": 3,\n                \"idStorage\": null,\n                \"HasActiveUser\": false,\n                \"Users\": []\n            }\n        ],\n        \"idModule\": 2,\n        \"Description\": \"eDock4eBay\",\n        \"Enabled\": true,\n        \"idPricelist\": 1,\n        \"idStorage\": null,\n        \"SupportsCustomDescriptions\": true,\n        \"SupportsCustomImages\": false,\n        \"SupportsCustomExclusions\": false,\n        \"SupportsCustomStorage\": false,\n        \"HasActiveUser\": true,\n        \"Users\": [\n            {\n                \"idUser\": 65,\n                \"DisplayName\": \"testuser_marketrock\",\n                \"SubModule\": null,\n                \"SubModuleAssociated\": false,\n                \"IsSandbox\": false,\n                \"idUserUnified\": 0\n            }\n        ],\n        \"idPricelists\": [\n            1,\n            3\n        ],\n        \"idStorages\": [\n            3\n        ]\n    }\n]"}],"_postman_id":"a7f3ad7c-a17c-7b02-9349-61356b4bb6f8"},{"name":"Get SubModules","id":"460f2786-f2ac-45c3-9f62-eca8bfefb97b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{endpoint}}/Modules/SellingModules/{{ModuleName}}/Submodules","description":"<p>Recupera i sottomoduli (mercati nazionali) di un particolare mercato.</p>\n<ul>\n<li><strong>ModuleName</strong>, passato nell'URL</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["Modules","SellingModules","{{ModuleName}}","Submodules"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"e8f194a8-e9fc-4cfa-a492-702897c2f15c","name":"Get SubModules","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{endpoint}}/Modules/SellingModules/{{ModuleName}}/Submodules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"699"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 30 Oct 2023 15:26:46 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"Description\": \"Italy\",\n        \"Currency\": \"EUR\",\n        \"Enabled\": true,\n        \"idPricelist\": 1,\n        \"idStorage\": null,\n        \"HasActiveUser\": true,\n        \"Users\": [\n            {\n                \"idUser\": 988,\n                \"DisplayName\": \"test2\",\n                \"SubModule\": \"Italy\",\n                \"SubModuleAssociated\": true,\n                \"IsSandbox\": false,\n                \"idUserUnified\": 0\n            },\n            {\n                \"idUser\": 987,\n                \"DisplayName\": \"test\",\n                \"SubModule\": \"Italy\",\n                \"SubModuleAssociated\": true,\n                \"IsSandbox\": false,\n                \"idUserUnified\": 0\n            },\n            {\n                \"idUser\": 1048,\n                \"DisplayName\": \"Amazon Italy\",\n                \"SubModule\": \"Italy\",\n                \"SubModuleAssociated\": true,\n                \"IsSandbox\": false,\n                \"idUserUnified\": 0\n            },\n            {\n                \"idUser\": 989,\n                \"DisplayName\": \"test 3\",\n                \"SubModule\": \"Italy\",\n                \"SubModuleAssociated\": true,\n                \"IsSandbox\": false,\n                \"idUserUnified\": 0\n            }\n        ]\n    },\n    {\n        \"Description\": \"Germany\",\n        \"Currency\": \"EUR\",\n        \"Enabled\": true,\n        \"idPricelist\": 1,\n        \"idStorage\": null,\n        \"HasActiveUser\": false,\n        \"Users\": []\n    },\n    {\n        \"Description\": \"France\",\n        \"Currency\": \"EUR\",\n        \"Enabled\": true,\n        \"idPricelist\": 1,\n        \"idStorage\": null,\n        \"HasActiveUser\": false,\n        \"Users\": []\n    },\n    {\n        \"Description\": \"Spain\",\n        \"Currency\": \"EUR\",\n        \"Enabled\": true,\n        \"idPricelist\": 1,\n        \"idStorage\": null,\n        \"HasActiveUser\": false,\n        \"Users\": []\n    },\n    {\n        \"Description\": \"UK\",\n        \"Currency\": \"GBP\",\n        \"Enabled\": true,\n        \"idPricelist\": 1,\n        \"idStorage\": null,\n        \"HasActiveUser\": false,\n        \"Users\": []\n    },\n    {\n        \"Description\": \"US\",\n        \"Currency\": \"USD\",\n        \"Enabled\": true,\n        \"idPricelist\": 1,\n        \"idStorage\": null,\n        \"HasActiveUser\": false,\n        \"Users\": []\n    },\n    {\n        \"Description\": \"Mexico\",\n        \"Currency\": \"MXN\",\n        \"Enabled\": true,\n        \"idPricelist\": 1,\n        \"idStorage\": null,\n        \"HasActiveUser\": false,\n        \"Users\": []\n    },\n    {\n        \"Description\": \"Canada\",\n        \"Currency\": \"CAD\",\n        \"Enabled\": true,\n        \"idPricelist\": 1,\n        \"idStorage\": null,\n        \"HasActiveUser\": true,\n        \"Users\": [\n            {\n                \"idUser\": 631,\n                \"DisplayName\": \"DBN.CA\",\n                \"SubModule\": \"Canada\",\n                \"SubModuleAssociated\": true,\n                \"IsSandbox\": false,\n                \"idUserUnified\": 0\n            }\n        ]\n    },\n    {\n        \"Description\": \"Australia\",\n        \"Currency\": \"AUD\",\n        \"Enabled\": true,\n        \"idPricelist\": 1,\n        \"idStorage\": null,\n        \"HasActiveUser\": false,\n        \"Users\": []\n    },\n    {\n        \"Description\": \"Brazil\",\n        \"Currency\": \"BRL\",\n        \"Enabled\": true,\n        \"idPricelist\": 1,\n        \"idStorage\": null,\n        \"HasActiveUser\": false,\n        \"Users\": []\n    },\n    {\n        \"Description\": \"India\",\n        \"Currency\": \"INR\",\n        \"Enabled\": true,\n        \"idPricelist\": 1,\n        \"idStorage\": null,\n        \"HasActiveUser\": false,\n        \"Users\": []\n    },\n    {\n        \"Description\": \"Japan\",\n        \"Currency\": \"JPY\",\n        \"Enabled\": true,\n        \"idPricelist\": 1,\n        \"idStorage\": null,\n        \"HasActiveUser\": false,\n        \"Users\": []\n    },\n    {\n        \"Description\": \"Turkey\",\n        \"Currency\": \"TRY\",\n        \"Enabled\": true,\n        \"idPricelist\": 1,\n        \"idStorage\": null,\n        \"HasActiveUser\": false,\n        \"Users\": []\n    },\n    {\n        \"Description\": \"UAE\",\n        \"Currency\": \"AED\",\n        \"Enabled\": true,\n        \"idPricelist\": 1,\n        \"idStorage\": null,\n        \"HasActiveUser\": false,\n        \"Users\": []\n    },\n    {\n        \"Description\": \"Egypt\",\n        \"Currency\": \"EGP\",\n        \"Enabled\": true,\n        \"idPricelist\": 1,\n        \"idStorage\": null,\n        \"HasActiveUser\": false,\n        \"Users\": []\n    },\n    {\n        \"Description\": \"Netherlands\",\n        \"Currency\": \"EUR\",\n        \"Enabled\": true,\n        \"idPricelist\": 1,\n        \"idStorage\": null,\n        \"HasActiveUser\": false,\n        \"Users\": []\n    },\n    {\n        \"Description\": \"SaudiArabia\",\n        \"Currency\": \"SAR\",\n        \"Enabled\": true,\n        \"idPricelist\": 1,\n        \"idStorage\": null,\n        \"HasActiveUser\": false,\n        \"Users\": []\n    },\n    {\n        \"Description\": \"Singapore\",\n        \"Currency\": \"SGD\",\n        \"Enabled\": true,\n        \"idPricelist\": 1,\n        \"idStorage\": null,\n        \"HasActiveUser\": false,\n        \"Users\": []\n    },\n    {\n        \"Description\": \"Sweden\",\n        \"Currency\": \"SEK\",\n        \"Enabled\": true,\n        \"idPricelist\": 1,\n        \"idStorage\": null,\n        \"HasActiveUser\": false,\n        \"Users\": []\n    },\n    {\n        \"Description\": \"Belgium\",\n        \"Currency\": \"EUR\",\n        \"Enabled\": true,\n        \"idPricelist\": 1,\n        \"idStorage\": null,\n        \"HasActiveUser\": false,\n        \"Users\": []\n    },\n    {\n        \"Description\": \"Poland\",\n        \"Currency\": \"PLN\",\n        \"Enabled\": true,\n        \"idPricelist\": null,\n        \"idStorage\": null,\n        \"HasActiveUser\": true,\n        \"Users\": [\n            {\n                \"idUser\": 1047,\n                \"DisplayName\": \"Amazon Poland\",\n                \"SubModule\": \"Poland\",\n                \"SubModuleAssociated\": true,\n                \"IsSandbox\": false,\n                \"idUserUnified\": 0\n            }\n        ]\n    }\n]"}],"_postman_id":"460f2786-f2ac-45c3-9f62-eca8bfefb97b"}],"id":"7fd03e60-ec9c-483a-871f-89a19661c237","description":"<p>Queste chiamate permettono di agire sulla parte di sincronizzazione e distribuzione dei prodotti sui marketplace.</p>\n<p>Per poter agire su un determinato marketplace, è necessario agganciare uno o più utenti (chiamati, talvolta, sottoscrizioni). Si veda la sezione \"Utenti\" apposita.</p>\n","_postman_id":"7fd03e60-ec9c-483a-871f-89a19661c237","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}}],"id":"958bc9f0-a76e-4b02-af0c-f403223c3441","_postman_id":"958bc9f0-a76e-4b02-af0c-f403223c3441","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"App Store","item":[{"name":"Confirm Install","id":"d5873baa-fd03-40a7-83fa-8fb567fa7142","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"client_id\": \"client-id\", \n\t\"installation_code\": \"installation_code\"\n}"},"url":"https://rest.edock.it/api/store/confirm","description":"<p>Chiamata da effettuarsi entro 30 minuti da quando si è ricevuta la richiesta di installazione all'endpoint Install.\nLa chiamata deve essere autenticata con il token generato dalla vostra applicazione e deve contenere:</p>\n<ul>\n<li>client_id (così come definito per la vostra app)</li>\n<li>installation_code (così come ricevuto in fase di installazione)</li>\n</ul>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"protocol":"https","path":["api","store","confirm"],"host":["rest","edock","it"],"query":[],"variable":[]}},"response":[],"_postman_id":"d5873baa-fd03-40a7-83fa-8fb567fa7142"},{"name":"Get UserInfo","id":"1180404a-cf84-4232-be13-a347c2985445","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://auth.edock.it/identity/connect/userinfo","description":"<p>Con questa chiamata è possibile ottenere ID e Username associate ad un particolare Access Token.\n<strong>Attenzione</strong>: è fortemente sconsigliato utilizzare l'Access Token per identificare un utente eDock all'interno della vostra applicazione, poiché non avete alcuna garanzia sul fatto che il token sia stato generato per voi. Per scopi di autenticazione è necessario fare uso dell'id_token che eDock può generare.</p>\n<p>Questa chiamata si rende necessaria, ad esempio, a seguito dell'installazione da parte di un utente della vostra applicazione. Dal momento che in fase di installazione NON viene generata una sessione di autenticazione, la vostra applicazione riceverà solamente un <strong>code</strong> con cui potrà generare un access token. Per capire a quale utente corrisponda, potrete fare quindi questa chiamata. Tuttavia per identificare un utente, quando aprirà l'applicazione all'interno di eDock, <strong>non</strong> utilizzare l'accesso token che sarà generato ma l'id_token.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"protocol":"https","path":["identity","connect","userinfo"],"host":["auth","edock","it"],"query":[],"variable":[]}},"response":[{"id":"d4106281-ac23-4230-929d-96a7ea96e9fd","name":"Get UserInfo","originalRequest":{"method":"POST","header":[],"url":"https://auth.edock.it/identity/connect/userinfo"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-store, no-cache, max-age=0, private"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 18 Jun 2019 08:17:54 GMT"},{"key":"Content-Length","value":"172"}],"cookie":[],"responseTime":null,"body":"{\n    \"sub\": \"GUID utente eDock\",\n    \"name\": \"nome utente eDock\",\n    \"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\": \"nome utente eDock\"\n}"}],"_postman_id":"1180404a-cf84-4232-be13-a347c2985445"},{"name":"Purchase","id":"a4848c7d-aea0-4f6e-bdea-53557cfe4c13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"SKU\": \"--\",\r\n        \"Quantity\": 1,\r\n        \"Price\": 1.00\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://rest.edock.it/api/store/purchase","urlObject":{"protocol":"https","path":["api","store","purchase"],"host":["rest","edock","it"],"query":[],"variable":[]}},"response":[],"_postman_id":"a4848c7d-aea0-4f6e-bdea-53557cfe4c13"}],"id":"6304578d-92da-4de8-ad87-620800db2eb8","description":"<h2 id=\"scenario\">Scenario</h2>\n<p>Grazie all'App Store di MarketRock potete mostrare la vostra app direttamente dentro all'interfaccia di MarketRock, autenticando l'utente con il nostro Identity Server e permettendo così all'utente di utilizzare la vostra app senza dover entrare con credenziali terze, rendendo l'esperienza facile e trasparente.</p>\n<p>Il flusso di utilizzo è rappresentato dall'immagine seguente:  </p>\n<img src=\"https://files.edock.it/appstore/usage.png\" />\n\n<p>Qualora voleste far comparire la vostra app sull'App Store di MarketRock e renderla così disponibile agli utenti MarketRock, sarà necessario rispettare i seguenti requisiti:</p>\n<ul>\n<li>l'app dovrà usare un Flow OAuth di tipo Hybrid. In altre parole, il ciclo di installazione dovrà iniziare con response_type code id_token.</li>\n<li>dovrà essere fornito un URL pubblico da caricare all'interno di un iframe di MarketRock (se necessario, quindi impostare correttamente la header X-Frame-Options). Questo sarà l'URL caricato all'interno di MarketRock e da cui gli utenti utilizzeranno la vostra app, senza dover uscire da MarketRock.</li>\n<li>dovranno essere messi a disposizione tre endpoint - ad URL a proprio piacimento - diversi:<ul>\n<li>install</li>\n<li>uninstall</li>\n<li>logout: endpoint a cui verrà effettuata una GET a seguito del logout di un utente da MarketRock</li>\n</ul>\n</li>\n<li>dovrà essere fornito materiale testuale e grafico per l'inserimento sull'App Store, come mostrato nel paragrafo \"Materiale\"</li>\n</ul>\n<p>È possibile, previa abilitazione da parte di MarketRock, fare uso dell'In-App Purchase, ovvero la possibilità di addebitare i clienti MarketRock per funzionalità premium delle vostre app. Nel caso si mostrasse necessario fare uso di questa funzionalità, entrare in contatto all'indirizzo <a href=\"mailto:developer@edock.it\">developer@edock.it</a></p>\n<h2 id=\"install\">Install</h2>\n<p>Install è l'endpoint a cui verrà effettuata una POST a seguito dell'installazione dell'app.<br />Il body della POST contiene i seguenti campi:</p>\n<ul>\n<li><strong>code</strong>: codice da scambiare con per ottenere il token di autorizzazione</li>\n<li><strong>redirect_uri</strong>: redirect uri da utilizzare per ottenere il token di autorizzazione</li>\n<li><strong>installation_code</strong>: codice unico di installazione, da memorizzare perché necessario per la procedura di disinstallazione</li>\n</ul>\n<p>A questa POST è necessario rispondere con HTTP 200 OK.</p>\n<p>A seguito di questa chiamata, sarà necessario effettuare una chiamata POST ad un endpoint di MarketRock, come mostrato nella chiamata \"ConfirmInstall\", che permette a MarketRockdi capire che è stato gestito il processo di installazione. La mancata chiamata a questo endpoint entro 30 minuti causa la cancellazione di tutti i token generati in questo lasso di tempo.</p>\n<img src=\"https://files.edock.it/appstore/installation.png\" />\n\n<h2 id=\"uninstall\">Uninstall</h2>\n<p>Uninstall è l'endpoint a cui verrà effettuata una POST a seguito dell'installazione dell'app.<br />Il body della POST contiene i seguenti campi:</p>\n<ul>\n<li><strong>eDockUsername</strong>: nome dell'utente MarketRock che sta disinstallando l'app</li>\n<li><strong>installation_code</strong>: codice di installazione, per verificare che la disinstallazione sia autentica e conseguente all'installazione precedentemente effettuata</li>\n</ul>\n<p>A questa POST è necessario rispondere con HTTP 200 OK.</p>\n<p>I token generati vengono revocati in automatico da MarketRock, nessuna operazione è necessaria lato app.</p>\n<h2 id=\"logout\">Logout</h2>\n<p>Quando un utente esce da MarketRock, viene effettuata una GET a questo endpoint, passando il parametro <strong>sid</strong>. Tale parametro è recuperabile nell'id_token che la vostra app ha ricevuto. Per tale ragione, dovrete considerare l'eventuale sessione come chiusa e, quindi, effettuare il logout dell'utente dalla vostra applicazione.</p>\n<p>A questa POST è necessario rispondere con HTTP 200 OK.</p>\n<h2 id=\"materiale\">Materiale</h2>\n<p>Il materiale richiesto per la pubblicazione sull'App Store è costituito da:</p>\n<ul>\n<li>Nome dell'azienda che si vuole mostrare agli utenti come sviluppatori dell'app</li>\n<li>URL dell'azienda</li>\n<li>Indirizzo email per il supporto ai clienti</li>\n<li>Logo dell'azienda (da mostrare come sviluppatore)</li>\n<li>Nome pubblico dell'app da mostrare agli utenti MarketRock</li>\n<li>Descrizione dell'app</li>\n<li>Sottotitolo dell'app</li>\n<li>Icona per app 56x56 (esempio qui: <a href=\"https://edock.blob.core.windows.net/edock/appstore/apps/1/media/appstore-icon.png\">https://edock.blob.core.windows.net/edock/appstore/apps/1/media/appstore-icon.png</a>)</li>\n<li>Banner per app 910x220 (esempio qui: <a href=\"https://edock.blob.core.windows.net/edock/appstore/apps/1/media/main-banner.jpg\">https://edock.blob.core.windows.net/edock/appstore/apps/1/media/main-banner.jpg</a>)</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"058d0b61-fba8-44f2-9781-343f36b8d2ac","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e9e91b89-7e6e-469e-b47d-0d1e89d285ce","type":"text/javascript","exec":[""]}}],"_postman_id":"6304578d-92da-4de8-ad87-620800db2eb8","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Webhooks","item":[{"name":"Get","id":"e9c8f090-6bf7-44de-ac5c-2903f184d70e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{endpoint}}/webhooks","description":"<p>Ritorna tutti i Webhook definiti per l'utente</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["webhooks"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e9c8f090-6bf7-44de-ac5c-2903f184d70e"},{"name":"Create Orders Webhook","id":"295588b8-bb1a-4dea-a0c7-22ce742dfdf5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Topic\": \"{{TopicType}}\",\n\t\"URL\": \"{{EndpointURL}}\",\n\t\"Active\": {{Active}}\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/webhooks/orders","description":"<p>Crea un Webhook, su un determinato Topic. Nella risposta viene indicata la chiave con cui viene firmata l'instazione <strong>X-eDock-Signature</strong>.</p>\n<h2 id=\"topic\">Topic</h2>\n<p>È il tipo di notifica a cui ci si vuole iscrivere.\nI topic specificabili sono:</p>\n<ul>\n<li>OrderCreated: ordine creato</li>\n<li>OrderStatusChanged: ordine modificato di stato</li>\n<li>OrderPaid: ordine pagato</li>\n<li>OrderShipped: ordine spedito</li>\n</ul>\n<h2 id=\"endpointurl\">EndpointURL</h2>\n<p>È l'endpoint a cui inviare la notifica.\n<strong>Attenzione</strong>: l'URL deve essere di tipo HTTPS. Non sono ammessi endpoint di altro tipo.</p>\n<h2 id=\"active\">Active</h2>\n<p>Indica se questo Webhook deve essere considerato attivo (e quindi procedere all'invio delle notifiche) o meno. <strong>True</strong> per indicarlo attivo, <strong>false</strong> atrimenti.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["webhooks","orders"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"65fefc3e-761e-4f9a-b19c-ed42efd3d161","name":"Create Webhook","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Topic\": \"OrderStatusChanged\",\n\t\"URL\": \"https://fedbbfc0bf20c5f65f2122c4e1a1f7fa.m.pipedream.net\",\n\t\"Active\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://rest.edock.it/api/webhooks/orders"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 28 Sep 2020 12:34:00 GMT"},{"key":"Content-Length","value":"151"}],"cookie":[],"responseTime":null,"body":"{\n    \"Id\": 6,\n    \"Topic\": 4,\n    \"URL\": \"https://fedbbfc0bf20c5f65f2122c4e1a1f7fa.m.pipedream.net\",\n    \"Active\": true,\n    \"SignatureKey\": \"54de13bf-96c4-4fb7-94a7-6a8b2e46245c\"\n}"}],"_postman_id":"295588b8-bb1a-4dea-a0c7-22ce742dfdf5"},{"name":"Create Products Webhook","id":"c2396f8b-238f-4c92-a5a0-f14abf351009","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Topic\": \"{{TopicType}}\",\n\t\"URL\": \"{{EndpointURL}}\",\n\t\"Active\": {{Active}}\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/webhooks/products","description":"<p>Crea un Webhook, su un determinato Topic. Nella risposta viene indicata la chiave con cui viene firmata l'instazione <strong>X-eDock-Signature</strong>.</p>\n<h2 id=\"topic\">Topic</h2>\n<p>È il tipo di notifica a cui ci si vuole iscrivere.\nI topic specificabili sono:</p>\n<ul>\n<li>ProductCreated: prodotto creato</li>\n<li>ProductUpdated: prodotto modificato</li>\n<li>ProductDeleted: prodotto rimosso</li>\n</ul>\n<h2 id=\"endpointurl\">EndpointURL</h2>\n<p>È l'endpoint a cui inviare la notifica.\n<strong>Attenzione</strong>: l'URL deve essere di tipo HTTPS. Non sono ammessi endpoint di altro tipo.</p>\n<h2 id=\"active\">Active</h2>\n<p>Indica se questo Webhook deve essere considerato attivo (e quindi procedere all'invio delle notifiche) o meno. <strong>True</strong> per indicarlo attivo, <strong>false</strong> atrimenti.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["webhooks","products"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"92d90615-213e-4151-8e7c-3c78044e6ae2","name":"Create Webhook","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Topic\": \"OrderStatusChanged\",\n\t\"URL\": \"https://fedbbfc0bf20c5f65f2122c4e1a1f7fa.m.pipedream.net\",\n\t\"Active\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://rest.edock.it/api/webhooks/orders"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Mon, 28 Sep 2020 12:34:00 GMT"},{"key":"Content-Length","value":"151"}],"cookie":[],"responseTime":null,"body":"{\n    \"Id\": 6,\n    \"Topic\": 4,\n    \"URL\": \"https://fedbbfc0bf20c5f65f2122c4e1a1f7fa.m.pipedream.net\",\n    \"Active\": true,\n    \"SignatureKey\": \"54de13bf-96c4-4fb7-94a7-6a8b2e46245c\"\n}"}],"_postman_id":"c2396f8b-238f-4c92-a5a0-f14abf351009"},{"name":"Delete Products Webhook","id":"5bd58497-61ae-4d11-971f-4d32b702d062","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"{{endpoint}}/webhooks/products/{{idWebhook}}","description":"<p>Elimina un webhook esistente</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["webhooks","products","{{idWebhook}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5bd58497-61ae-4d11-971f-4d32b702d062"},{"name":"Delete Orders Webhook","id":"0d45d407-a07d-49c0-9e97-1d73759cd30f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{endpoint}}/webhooks/orders/{{idWebhook}}","description":"<p>Elimina un webhook esistente</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["webhooks","orders","{{idWebhook}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0d45d407-a07d-49c0-9e97-1d73759cd30f"},{"name":"Update Orders Webhook","id":"f9f93841-aa3e-491d-9ca4-1b1dac493259","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Topic\": \"ProductCreated\",\n\t\"URL\": \"https://requestbin.net/r/rn19fprn\",\n\t\"Active\": false\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/webhooks/orders/{{idWebhook}}","description":"<p>Modifica un Webhook esistente.</p>\n<p><strong>Attenzione</strong>: il Topic non è modificabile e deve necessariamente corrispondere all'originale. Se si intende cambiare, è necessario cancellare il webhook e crearne uno nuovo.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["webhooks","orders","{{idWebhook}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f9f93841-aa3e-491d-9ca4-1b1dac493259"},{"name":"Update Products Webhook","id":"d2bd8871-aff3-4efb-acd9-e8fbc21a419c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Topic\": \"ProductCreated\",\n\t\"URL\": \"https://requestbin.net/r/rn19fprn\",\n\t\"Active\": false\n}","options":{"raw":{"language":"json"}}},"url":"{{endpoint}}/webhooks/products/{{idWebhook}}","description":"<p>Modifica un Webhook esistente.</p>\n<p><strong>Attenzione</strong>: il Topic non è modificabile e deve necessariamente corrispondere all'originale. Se si intende cambiare, è necessario cancellare il webhook e crearne uno nuovo.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["webhooks","products","{{idWebhook}}"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d2bd8871-aff3-4efb-acd9-e8fbc21a419c"}],"id":"2d2c5f1d-ee39-44cd-985e-e24158d08813","description":"<p>Attraverso l'uso dei Webhook è possibile realizzare integrazioni più efficienti evitando di spendere tempo in attività di polling su eDock. I Webhook permettono di ricevere notifiche cosiddette push (ovvero inviate da eDock verso la tua applicazione) a seguito di diversi eventi.</p>\n<p>È possibile, attualmente, iscriversi singolarmente a Webhook riguardanti i prodotti e gli ordini.\nIn particolare:</p>\n<h2 id=\"prodotti\">Prodotti</h2>\n<ul>\n<li>Notifica di creazione di un prodotto</li>\n<li>Notifica di modifica di un prodotto</li>\n<li>Notifica di cancellazione di un prodotto</li>\n</ul>\n<h2 id=\"ordini\">Ordini</h2>\n<ul>\n<li>Notifica di ricezione di un nuovo ordine</li>\n<li>Notifica del cambiamento di stato di un ordine</li>\n<li>Notifica della spedizione di un ordine</li>\n<li>Notifica della ricezione di pagamento di un ordine</li>\n</ul>\n<h1 id=\"cosa-è-necessario-avere-per-poter-utilizzare-i-webhook\">Cosa è necessario avere per poter utilizzare i Webhook?</h1>\n<p>Per poter utilizzare i Webhook è necessario che venga esposto un endpoint <strong>pubblico</strong> (ovvero che non richieda alcuna forma di autenticazione) e <strong>sicuro</strong> (ovvero HTTPS). Tale endpoint dovrà restituire uno status code pari a HTTP 200 OK per poter confermare la ricezione della notifica. In caso contrario verrà tentato l'invio per un massimo di 10 volte complessive, dopodiché la notifica sarà cancellata e non sarà mai più inviata.</p>\n<h1 id=\"sicurezza\">Sicurezza</h1>\n<p>Per poter garantire che i Webhook in arrivo siano autentici, verrà inviata, insieme alla notifica, una intestazione HTTP chiamata <strong>X-eDock-Signature</strong> in cui verrà posto l'hash, calcolato secondo l'algoritmo HMAC-SHA256 e codificato in Base64, del contenuto completo della notifica.</p>\n<p>La chiave con cui viene generato questo hash (firma) viene comunicata all'atto dell'iscrizione ad un particolare Webhook. Per maggiori dettagli si veda la chiamata \"Create Webhook\".</p>\n","event":[{"listen":"prerequest","script":{"id":"f3d8a69e-2189-49c0-92ad-21541498bb01","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"488521e6-594d-4bd2-95ad-7b6eb44b701b","type":"text/javascript","exec":[""]}}],"_postman_id":"2d2c5f1d-ee39-44cd-985e-e24158d08813","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}},{"name":"Workspaces","item":[{"name":"Workspace Info","id":"e03ea3bf-34b3-4ef7-994a-975467cfb1aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/Users/UserInfo","description":"<p>Recupera le informazioni legate all'account eDock in uso.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["Users","UserInfo"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"c78eaf0c-a7b3-48ec-a381-89147168ae82","name":"Workspace Info","originalRequest":{"method":"GET","header":[{"key":"x-edock-impersonate","value":"857","type":"text","disabled":true}],"url":"{{endpoint}}/Users/UserInfo"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"617"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 09 Nov 2022 15:30:30 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"CustomerID\": 0,\n    \"eDockUsername\": \"developer@edock.it\",\n    \"Name\": \"Marco\",\n    \"Surname\": \"Tibaldeschi\",\n    \"Cellphone\": \"0131251385\",\n    \"City\": \"Alessandria\",\n    \"CompanyName\": \"eDock\",\n    \"Country\": \"IT\",\n    \"County\": \"AL\",\n    \"Fax\": \"-\",\n    \"FiscalCode\": \"01989010069\",\n    \"VATCode\": \"01989010069\",\n    \"Street\": \"Corso Acqui, 382\",\n    \"Telephone\": \"-\",\n    \"UserDB\": \"-\",\n    \"APIToken\": \"\",\n    \"EMail\": \"developer@edock.it\",\n    \"ZipCode\": \"15121\",\n    \"BillingInformationConfirmed\": true,\n    \"IsDemo\": false,\n    \"idProfile\": 382,\n    \"ActivationDate\": \"2018-02-06T10:20:36.077Z\",\n    \"ResellerId\": null,\n    \"ResellerAgentName\": null,\n    \"AffiliateId\": null,\n    \"CampaignId\": null,\n    \"BirthDate\": \"1983-07-17T00:00:00Z\",\n    \"BirthCity\": \"Piacenza\",\n    \"BirthCounty\": \"IT\",\n    \"IdentityDocumentType\": \"CI\",\n    \"IdentityDocumentNumber\": \"XXXXXXX\",\n    \"IdentityDocumentFrom\": \"Comune di Alessandria\",\n    \"IdentityDocumentDate\": \"2018-09-13T00:00:00Z\",\n    \"SDI\": \"0123456\"\n}"}],"_postman_id":"e03ea3bf-34b3-4ef7-994a-975467cfb1aa"},{"name":"Workspaces","id":"15f5e7c4-53ae-4ba3-9f0f-fac86a9dc75f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{endpoint}}/users/workspaces","description":"<p>Permette di ottenere gli spazi di lavoro MarketRock a cui è possibile accedere con la propria utenza.</p>\n<p>Vengono anche riportati i permessi associati su ogni determinato spazio di lavoro, così come assegnati dall'amministratore.</p>\n","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}},"urlObject":{"path":["users","workspaces"],"host":["{{endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"c888bf42-87c4-4414-97dd-45ea4c8d2f93","name":"Workspaces","originalRequest":{"method":"GET","header":[],"url":"{{endpoint}}/users/workspaces"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Server","value":"LocaleMarco"},{"key":"Request-Context","value":"appId=cid-v1:dfbe8610-38a4-4556-8dc0-59a8342b518b"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Date","value":"Wed, 02 Nov 2022 10:03:28 GMT"},{"key":"Content-Length","value":"238"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"CustomerId\": 2642,\n        \"Owner\": true,\n        \"Name\": \"Workspace 1\",\n        \"Permissions\": null\n    },\n    {\n        \"CustomerId\": 857,\n        \"Owner\": false,\n        \"Name\": \"Workspace 2\",\n        \"Permissions\": [\n            \"items\",\n            \"orders\",\n            \"pii_access\",\n            \"shippings\",\n            \"profile\",\n            \"openid\",\n            \"store_read\"\n        ]\n    }\n]"}],"_postman_id":"15f5e7c4-53ae-4ba3-9f0f-fac86a9dc75f"}],"id":"147ed95e-ca94-4453-b5fe-e5edeb508a09","_postman_id":"147ed95e-ca94-4453-b5fe-e5edeb508a09","description":"","auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":true,"source":{"_postman_id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","id":"6b7d91fb-796c-dc91-8db5-9e74f4d456af","name":"MarketRock","type":"collection"}}}],"auth":{"type":"oauth2","oauth2":{"useBrowser":"<use-browser>","scope":"<scope>","clientSecret":"{{ClientSecret}}","clientId":"{{ClientId}}","tokenName":"<token-name>","accessTokenUrl":"<access-token-url>","authUrl":"<auth-url>","redirect_uri":"<redirect_uri>","state":"<state>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"}},"event":[{"listen":"prerequest","script":{"id":"f1315076-16ad-4165-8581-f2e808ff56be","type":"text/javascript","requests":{},"exec":[""]}},{"listen":"test","script":{"id":"25858faa-7b97-458b-b557-14a465c32107","type":"text/javascript","requests":{},"exec":[""]}}]}