{"info":{"_postman_id":"504cf0c6-8cd8-4079-a277-31cfdcf6d363","name":"CATALOGPLAYER API REST","description":"<html><head></head><body><h3 id=\"introduction\"><strong>Introduction</strong></h3>\n<p>The CatalogPlayer API, also known as the Internal API, incorporates features of both REST API and BULK API, enabling bulk uploads or mass queries.</p>\n<p>Our API has predictable resource-oriented URLs, accepts form-encoded request bodies, returns responses in JSON or CSV format, and uses standard HTTP response codes.</p>\n<p>You will need a CatalogPlayer account with web service permissions and a user with valid credentials to generate a valid session and connect to the API.</p>\n<p>We recommend using this API to retrieve or send real-time data. However, if you need to handle bulk data, you will need to use our CGC API following the specifications of our CPObjects entities.</p>\n<p>All API requests must be made over HTTPS to the domain of your CatalogPlayer account, e.g., <a href=\"https://1234XXX.mycpl.net\">https://1234XXX.mycpl.net</a>. Calls made over unsecured HTTP are likely to fail, and API requests without authentication will also fail.</p>\n<p>This document is a concise guide that includes examples of some available methods within the API.</p>\n<h3 id=\"authentication\">Authentication</h3>\n<p>The CatalogPlayer API uses API keys to authenticate requests. You can view and manage your API keys through your backend. Using your API key (SSID), you must generate a valid session and obtain all credentials for the API.</p>\n<p>To locate your SSID, log in as a superadministrator in the backend, navigate to your account section, and look for the API section.</p>\n<p>To view or generate user sessions, go to the “Users / API” section. Each API user and hash can have configurable permissions and access through the ACL permissions management system.</p>\n<p><strong>IMPORTANT:</strong> Deleting or regenerating the admin user’s hash may result in losing all communications with the primary connectors. Use a different user/license to activate another hash.</p>\n<p>Getting Started</p>\n<p><strong>Generate a New HASH via API</strong></p>\n<p>The hash can be generated either via the API or directly through the backend. If the session (HASH) is generated through the backend, it does not expire and can be used for all your requests.</p>\n<p>To make calls to the web service, you must first obtain a hash, which will be used for all requests along with the SSID.</p>\n<p>To do this, you need to call the <strong>Get Credentials API</strong> method:</p>\n<p>http://{{domain}}/api.php/api/v1/user/login?ssid={{ssid}}</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>             - domain is you account domain\n             - ssid from user webservice\n\n</code></pre><p>Required Paramenters:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>             -user name\n             -password\n\n</code></pre><p><strong>This will return a JSON</strong> containing the same SSID you sent and the hash required for subsequent requests.</p>\n<p>The generated hash does not expire unless it remains unused for 90 days.</p>\n<p>{</p>\n<p>\"code\": 200,</p>\n<p>\"message\": \"DATA_OK\",</p>\n<p>\"data\": {</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>   \"consumer\": \"48b4fef01a1ed699db5FFFFFFb816b4781\",\n   \"hash\": \"d5c39c7fb79fa02dFGDFGGHF1bec8a4\"\n\n</code></pre><p>}</p>\n<p>}</p>\n<h3 id=\"making-requests\"><strong>Making Requests</strong></h3>\n<p><strong>General Features and Parameters</strong></p>\n<p>Requests for querying data can be made using <strong>POST</strong> , while requests for inserting data must be made using <strong>POST</strong>.</p>\n<p>All requests should be directed to the environment URL in the following format:</p>\n<p>https://{{domain}}/api.php/api/v1/</p>\n<p>The variables and parameters remain consistent, with the following options:</p>\n<p>• <strong>domain</strong>: The environment URL.</p>\n<p>• <strong>ssid</strong>: Obtainable from the backend or <strong>CPAdmin</strong> (client details section).</p>\n<p>• <strong>hash</strong>: Retrieved via the <strong>Get Credentials</strong> method, through the backend or <strong>CPAdmin</strong> (client details section).</p>\n<p>• <strong>limit</strong> <em>(optional)</em>: Specifies the maximum number of records to retrieve. The default value is 200. To set higher limits and return more records per page, you may need to contact your assigned Partner or CatalogPlayer to confirm feasibility.</p>\n<p>• <strong>offset</strong> <em>(optional)</em>: Used for pagination of records.</p>\n<p><strong>Filters</strong></p>\n<p>Filters can be applied to queries using the following options:</p>\n<p>• <strong>operator</strong>: Defines the filter operation. Possible values include:</p>\n<p>&gt;, &gt;=, &lt;, &lt;=, IN, NOT IN, LIKE, =, !=</p>\n<p><strong>Filter Examples:</strong></p>\n<p>1. <strong>Equality (<strong>=</strong>)</strong>:</p>\n<p>[{\"operator\":\"=\", \"value\":\"00001\", \"field_name\":\"Token\"}]</p>\n<p>2. <strong>IN or NOT IN</strong>:</p>\n<p>[{\"operator\":\"IN\", \"value\":[\"CP6\", \"CP3\"], \"field_name\":\"Status\"}]</p>\n<p>3. <strong>LIKE or NOT LIKE</strong>:</p>\n<p>[{\"operator\":\"LIKE\", \"value\":\"%2017-02-07%\", \"field_name\":\"DateAt\"}]</p>\n<p><strong>Filter Fields</strong></p>\n<p>• <strong>field_name</strong>: The field to filter on, e.g., CompanyToken.</p>\n<p>• <strong>value</strong>: The value to filter by. Acceptable types include string, integer, long, datetime, or date.</p>\n<h3 id=\"examples\">Examples</h3>\n<p>Below are examples of requests for querying and managing data.</p>\n<p>In this example, we retrieve a client of type “PROSPECT”:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>http://{{domain}}/api.php/api/v1/company/get?ssid={{ssid}}\nParametros:\n- hash : {{hash}}\n- limit(optional): 1\n- filters: [{\"operator\":\"=\", \"value\":\"PROSPECTO\",\"field_name\":\"CompanyTypeToken\"}]\n\n</code></pre><p>This query returns clients classified as “Prospects”. Additional filters can be added as needed.</p>\n<p>For instance, you can retrieve all prospects created on a specific date.</p>\n<p><strong>List Client Supplemental Data (Forms)</strong></p>\n<p>Retrieve additional information stored in a client’s profile using <strong>GetFormResponses</strong>:</p>\n<p>http://{{domain}}/api.php/api/v1/company/GetFormResponses?ssid={{ssid}}</p>\n<p><strong>Parameters:</strong></p>\n<p>• hash: {{hash}}</p>\n<p>• ssid: {{ssid}}</p>\n<p>• <strong>Filters</strong>:</p>\n<p>• Token (Client code).</p>\n<p>• UpdatedAt (Forms updated on a specific date).</p>\n<p>• FormToken (Filter by form type).</p>\n<p>• CreatedAt (Forms created on a specific date).</p>\n<p><strong>Example Filter</strong>:</p>\n<p>[{\"operator\":\"=\", \"value\":\"00001\", \"field_name\":\"Token\"}]</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>http://{{domain}}/api.php/api/v1/company/GetFormResponses?ssid={{ssid}}&lt;/nowiki&gt;\n-        hash : {{hash}}\n-        ssid : ={{ssid}}\n-        Filtros\no    Token (codigo empresa),\no     'UpdatedAt' ( modified forms )\no     'FormToken' ( Filter by type of form)\no    'CreatedAt' ( Created Forms )\nIn this example, we can extract additional information reported in a form linked to a customer using GetFormResponses\n        - filters: [{\"operator\":\"=\", \"value\":\"00001\",\"field_name\":\"Token\"}]\n                          \"operator\": \"&gt;, &gt;=, &lt;, &lt;=, IN, NOT IN, LIKE, =, !=\"\n                           \"value\":\"string, integer, long, datetime, date\",\n                           \"field_name\":\n                          \"Token\": String\n       \"responses\": {\n                   \"CP56\": [\n                       [\n                           {\n                               \"Token\": \"CSH_1537949766727\",\n                               \"CreatedAt\": \"2018-09-26 10:15:39\",\n                               \"UserToken\": \"000066\",\n                               \"User\": \"Javier Bueno\",\n                               \"Geoposition\": \"41.6009512,2.2778165\",\n                               \"CompanyToken\": \"Company_1537949727235\",\n                               \"Company\": \"Alberto Albertez\",\n                               \"FormToken\": \"CP56\",\n                               \"Form\": \"Perfil Prospecto\",\n                               \"Department_1\": \"CP1\",\n                               \"Department_2\": \"Dirección Filial GC\",\n                               \"Department_3\": \"CP254\",\n                               \"Department_4\": \"Zona NorEste GC\",\n                               \"Department_5\": \"Zona NorOeste GC\",\n                               \"Department_6\": \"Zona Sur GC\",\n                               \"Department_7\": \"Portugal GC\",\n                               \"Department_8\": \"Zona Portugal GC\",\n                               \"Department_9\": \"TareasGlobales\",\n                               \"Department_10\": \"Mexico GC\",\n                               \"Department_11\": \"Zona Mexico GC\",\n                               \"CP56-Familias\": \"\",\n                               \"CP56-Maíz\": \"\",\n                               \"CP56-Girasol\": \"\",\n                               \"CP56-Forrajeras\": \"\",\n                               \"CP56-Cereales\": \"Cereales\",\n                               \"CP56-Calificación\": \"Tipo C\",\n                               \"CP56-Semillas\": \"\",\n                               \"CP56-Seminis\": \"40%\",\n                               \"CP56-Gautier\": \"30%\",\n                               \"CP56-Pioneer\": \"10%\",\n                               \"CP56-Curimapu\": \"20%\",\n                               \"CP56-Notas\": \"\",\n                               \"CP56-Comentarios\": \"Test\"\n                           }\n                       ]\n                   ]\n               }\n\n</code></pre><p>**</p>\n<p>List Tasks**</p>\n<p>Retrieve tasks for a specific date (e.g., February 7, 2017):</p>\n<p>http://{{domain}}/api.php/api/v1/task/get?ssid={{ssid}}</p>\n<p><strong>Parameters:</strong></p>\n<p>• hash: {{hash}}</p>\n<p>• limit (optional).</p>\n<p>• filters:</p>\n<p>[{\"operator\":\"LIKE\", \"value\":\"%2017-02-07%\", \"field_name\":\"DateAt\"}]</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>http://{{domain}}/api.php/api/v1/task/get?ssid={{ssid}}\n                 - hash : {{hash}}\n                 - limit(opcional)\n                 - filters: [{\"operator\":\"LIKE\", \"value\":\"%2017-02-07%\",\"field_name\":\"DateAt\"}]\n\n</code></pre><p><strong>Edit Client Information</strong></p>\n<p>Modify a client’s information (e.g., update the client code):</p>\n<p>http://{{domain}}/api.php/api/v1/company/set?ssid={{ssid}}</p>\n<p><strong>Parameters:</strong></p>\n<p>• hash: {{hash}}</p>\n<p>• filters:</p>\n<p>[{\"operator\":\"=\", \"value\":\"00001\", \"field_name\":\"Token\"}]</p>\n<p>• fields:</p>\n<p>[{\"field\":\"code\", \"value\":\"00001\"}]</p>\n<p><strong>Accepted Fields:</strong></p>\n<p>• Active (Boolean).</p>\n<p>• Token (String).</p>\n<p>• ExternalToken (String).</p>\n<p>• Code (String).</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>http://{{domain}}/api.php/api/v1/company/set?ssid={{ssid}}\n                 - hash : {{hash}}\n                 - filters: [{\"operator\":\"=\", \"value\":\"00001\",\"field_name\":\"Token\"}]\n                                   \"operator\": \"&gt;, &gt;=, &lt;, &lt;=, IN, NOT IN, LIKE, =, !=\"\n                                    \"value\":\"string, integer, long, datetime, date\",\n                                    \"field_name\":\n                                   \"Token\": String\n                 - fields: [{\"field\":\"code\",\"value\":\"00001\"}]\n                                   Fields aceptados:\n                                                    \"Active\": Boolean,\n                                                    \"Token\": String,\n                                                    \"ExternalToken\": String,\n'''                                                   ''' \"Code\": String\n                                   \"operator\": \"&gt;, &gt;=, &lt;, &lt;=, IN, NOT IN, LIKE, =, !=\"\n                                    \"value\":\"string, integer, long, datetime, date\",\n                                    \"field_name\":\n                                                    \"Token\": String\n                                                    \"DateAt\": Datetime\n                                                    \"Status\": String\n                                                    \"Name\": String\n                                                    \"Description\": String\n                                                    \"UserToken\": String\n                                                    \"CompanyToken\": String\n                                                    \"FormToken\": String\n\n</code></pre><p><strong>Convert a Prospect to a Client</strong></p>\n<p>Update a client of type “Prospect” to “Client”:</p>\n<p>http://{{domain}}/api.php/api/v1/company/setProspectToClient?ssid={{ssid}}</p>\n<p><strong>Parameters:</strong></p>\n<p>• hash: {{hash}}</p>\n<p>• filters:</p>\n<p>[{\"operator\":\"=\", \"value\":\"CP2\", \"field_name\":\"CompanyTypeToken\"}]</p>\n<p>• fields:</p>\n<p>[{\"field\":\"Token\", \"value\":\"CP0002\"}]</p>\n<p><strong>Accepted Fields:</strong></p>\n<p>• Active (Boolean).</p>\n<p>• Token (String).</p>\n<p>• ExternalToken (String).</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>http://{{domain}}/api.php/api/v1/company/setProspectToClient?ssid={{ssid}}\n                 - hash : {{hash}}\n                 - filters: [{\"operator\":\"=\", \"value\":\"CP2\",\"field_name\":\"CompanyTypeToken\"}]\n                                   \"operator\": \"&gt;, &gt;=, &lt;, &lt;=, IN, NOT IN, LIKE, =, !=\"\n                                    \"value\":\"string, integer, long, datetime, date\",\n                                    \"field_name\":\n                                                    \"Token\": String\n                                                    \"CompanyTypeToken\": String\n                                   - fields: [{\"field\":\"Token\",\"value\":\"CP0002\"}]\n                                                    Fields aceptados:\n                                                                      \"Active\": Boolean,\n                                                                      \"Token\": String,\n                                                                      \"ExternalToken\": String,\n\n</code></pre></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"32826335","collectionId":"504cf0c6-8cd8-4079-a277-31cfdcf6d363","publishedId":"2sA2xk1riu","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"00A199"},"publishDate":"2024-03-13T21:42:30.000Z"},"item":[{"name":"Acl","item":[{"name":"setCollections","id":"27ca4acf-9da9-4331-bc0b-1a9a1455fb03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"include_collections","value":"[\"AD\"]","type":"text"},{"key":"catalog_token","value":"CP62","type":"text"},{"key":"acl_token","value":"Test","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/acl/setCollections?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","acl","setCollections"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"},{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[],"_postman_id":"27ca4acf-9da9-4331-bc0b-1a9a1455fb03"}],"id":"dd9bbfe1-2b9b-4228-ae2e-d54560b4bd27","_postman_id":"dd9bbfe1-2b9b-4228-ae2e-d54560b4bd27","description":""},{"name":"Activity","item":[{"name":"get","id":"b8d04ca8-747c-4e41-b9b6-0650d224bbbb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"Company\",\"field_name\":\"Object\"}, {\"operator\":\">=\", \"value\":\"2016-09-20 00:00:00\",\"field_name\":\"DatetimeFrom\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/activity/get?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","activity","get"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"b8d04ca8-747c-4e41-b9b6-0650d224bbbb"}],"id":"5b65566e-02c1-4e18-b0e6-657f2916cb6f","_postman_id":"5b65566e-02c1-4e18-b0e6-657f2916cb6f","description":""},{"name":"Attribute","item":[{"name":"getAttributes","id":"06e77764-d932-4988-8c62-51d31f88a1c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"IN\", \"value\":\"GT-29\",\"field_name\":\"AttributeValueRelatedToken\"}]","type":"text"},{"key":"only_attributes","value":"true","type":"text","disabled":true},{"key":"array_by_token","value":"true","type":"text","disabled":true},{"key":"ignore_max_limit","value":"true","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/attribute/getAttributes?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","attribute","getAttributes"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"06e77764-d932-4988-8c62-51d31f88a1c5"},{"name":"setConnectorTokens","id":"76700c9e-507c-40e1-b6c5-4d341a5b4240","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"file","value":"[\n  {\n    \"Token\": \"Marcaproducto\",\n    \"WoocommerceToken\": 63,\n    \"Connector\": \"Woocommerce\",\n    \"Counter\": 46,\n    \"AttributeValueToken_1\": \"CP2\",\n    \"AttributeValueWoocommerceToken_1\": 1246,\n    \"AttributeValueToken_2\": \"CP3\",\n    \"AttributeValueWoocommerceToken_2\": 1247\n  }\n]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/attribute/setConnectorTokens?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","attribute","setConnectorTokens"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"76700c9e-507c-40e1-b6c5-4d341a5b4240"},{"name":"setAttributes","id":"5a66ce09-fe7f-4eab-80c4-f57428648b92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[\n    {\n        \"Token\": \"MARCA\",\n        \"FormatToken\": \"Icon\",\n        \"AttributeValueToken_1\": \"Test1\",\n        \"TokenIconAttributeValue_1\": \"TestFileIcon\",\n        \"FileIconAttributeValue_1\": \"pez123.png\",\n        \"AttributeValueToken_2\": \"Test2\",\n        \"TokenIconAttributeValue_2\": \"TestFileIcon2\",\n        \"FileIconAttributeValue_2\": \"ayudante.jpg\"\n    },\n    {\n        \"Token\": \"TestAtributoo\",\n        \"FormatToken\": \"Icon\",\n        \"AttributeValueToken_1\": \"\",\n        \"TokenIconAttributeValue_1\": \"\",\n        \"FileIconAttributeValue_1\": \"\",\n        \"AttributeValueToken_2\": \"\",\n        \"TokenIconAttributeValue_2\": \"\",\n        \"FileIconAttributeValue_2\": \"\"\n    }\n]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/attribute/setAttributes?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","attribute","setAttributes"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"5a66ce09-fe7f-4eab-80c4-f57428648b92"}],"id":"33798503-5724-455d-ad74-4a8d9466be83","_postman_id":"33798503-5724-455d-ad74-4a8d9466be83","description":""},{"name":"Analytics","item":[{"name":"getDwRankingTypeValues","id":"b35fcab3-135d-4354-84b7-2e835f90d1f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"1","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"CP1\",\"field_name\":\"FormToken\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/analytics/getDwRankingTypeValues?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","analytics","getDwRankingTypeValues"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"b35fcab3-135d-4354-84b7-2e835f90d1f6"},{"name":"getDwChallenges","id":"533570d3-65fc-4d24-92aa-b383a4602e61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"10","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"Test\",\"field_name\":\"Token\"}]","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/analytics/getDwChallenges?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","analytics","getDwChallenges"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"533570d3-65fc-4d24-92aa-b383a4602e61"},{"name":"getRankingProductsCompanyTypes","id":"b5f16ceb-af1b-4313-b2a4-5ea2036bf96d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"10","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"Test\",\"field_name\":\"Token\"}]","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/analytics/getRankingProductsCompanyTypes?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","analytics","getRankingProductsCompanyTypes"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"b5f16ceb-af1b-4313-b2a4-5ea2036bf96d"},{"name":"getDwChallengeResults","id":"041f558d-42f6-445a-ab51-c6e534e051e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"Test\",\"field_name\":\"Token\"}]","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/analytics/getDwChallengeResults?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","analytics","getDwChallengeResults"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"041f558d-42f6-445a-ab51-c6e534e051e0"},{"name":"deleteRankingProductsByType","id":"f1200317-4859-42f4-84ff-8c41f2acdc74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"TypeToken","value":"test","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/analytics/deleteRankingProductsByType?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","analytics","deleteRankingProductsByType"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"f1200317-4859-42f4-84ff-8c41f2acdc74"},{"name":"deleteRankingOrderUsers","id":"4c566dcd-19e1-4d8e-8c95-351bd36084d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"404\",\"field_name\":\"UserToken\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/analytics/deleteRankingOrderUsers?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","analytics","deleteRankingOrderUsers"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"4c566dcd-19e1-4d8e-8c95-351bd36084d6"},{"name":"setDwChallengeResults","id":"d4deffd3-dd83-4a19-bf75-288b00855293","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n\t\"Token\": \"Test\",\n\t\"Value\": \"150\",\n\t\"Score\": \"30\",\n\t\"Year\": \"2022\",\n\t\"Month\": \"11\",\n\t\"Day\": \"22\",\n\t\"FieldToken\": \"VisitasTotales\",\n\t\"ChallengeToken\": \"LigaFarmacias\",\n\t\"UserToken\": \"XC\"\n}]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/analytics/setDwChallengeResults?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","analytics","setDwChallengeResults"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"d4deffd3-dd83-4a19-bf75-288b00855293"},{"name":"setRankingProductsCompanyTypes","id":"5b098eed-e77a-4a1d-912f-e69177119f57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[\n    {\n        \"Token\": \"IMPORT-TEST\",\n        \"Items\": \"123\",\n        \"Total\": \"321\",\n        \"Position\": \"1\",\n        \"Aux1\": \"aux1\",\n        \"Aux2\": \"aux2\",\n        \"Aux3\": \"aux3\",\n        \"UserToken\": \"CP1\",\n        \"CompanyTypeToken\": \"CLIENTE\",\n        \"Year\": \"2022\",\n        \"Month\": \"7\",\n        \"Day\": \"9\",\n        \"Hour\": \"11\",\n        \"ProductToken\": \"434\",\n        \"CollectionToken\": \"COMPANY\",\n        \"DwRankingTypeToken\": \"DefaultProducts\",\n        \"UnitsToken\": \"kg\" \n    }\n]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/analytics/setRankingProductsCompanyTypes?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","analytics","setRankingProductsCompanyTypes"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"5b098eed-e77a-4a1d-912f-e69177119f57"},{"name":"setDwChallenges","id":"ec3b0ce5-6aaf-469d-bf7a-71cc320d4ca3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n\t\"Token\": \"Test\",\n\t\"Value\": \"150\",\n\t\"Score\": \"30\",\n\t\"Year\": \"2022\",\n\t\"Month\": \"11\",\n\t\"Day\": \"22\",\n\t\"FieldToken\": \"VisitasTotales\",\n\t\"ChallengeToken\": \"LigaFarmacias\",\n\t\"UserToken\": \"XC\"\n}]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/analytics/setDwChallenges?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","analytics","setDwChallenges"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"ec3b0ce5-6aaf-469d-bf7a-71cc320d4ca3"},{"name":"deleteRankingVisits","id":"42e05223-8e28-40fe-a6ee-a3dcfcabee0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"404\",\"field_name\":\"UserToken\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/analytics/deleteRankingVisits?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","analytics","deleteRankingVisits"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"42e05223-8e28-40fe-a6ee-a3dcfcabee0f"},{"name":"disableDwChallenges","id":"08a54c2e-85fa-48ed-8cd2-248d47243f4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"LigaFarmacias2\",\"field_name\":\"Token\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/analytics/disableDwChallenges?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","analytics","disableDwChallenges"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"08a54c2e-85fa-48ed-8cd2-248d47243f4b"},{"name":"deleteRankingProducts","id":"3913c282-d824-4100-8e95-f7e13394d439","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"404\",\"field_name\":\"UserToken\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/analytics/deleteRankingProducts?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","analytics","deleteRankingProducts"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"3913c282-d824-4100-8e95-f7e13394d439"},{"name":"generateKpisOrders","id":"dd38cfdc-76d6-4339-85b6-515b73aede4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"full","value":"true","type":"text"},{"key":"reset","value":"true","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/analytics/generateKpisOrders?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","analytics","generateKpisOrders"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"dd38cfdc-76d6-4339-85b6-515b73aede4f"},{"name":"testKpisOrders","id":"e7e2b02e-88ad-48ac-8836-a6baf071e3a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/analytics/testKpisOrders?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","analytics","testKpisOrders"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"e7e2b02e-88ad-48ac-8836-a6baf071e3a1"},{"name":"checkUsersKpisToNotificate","id":"4f5b53a8-82f4-49ff-a6c5-919ed9924bf4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"target_kpi_token","value":"user_app_version","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/analytics/checkUsersKpisToNotificate?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","analytics","checkUsersKpisToNotificate"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"4f5b53a8-82f4-49ff-a6c5-919ed9924bf4"},{"name":"getActivity","id":"3bf07c77-c8ec-408d-8f3f-a1466763997d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"100","type":"text"},{"key":"extends","value":"[ \"Company\", \"Product\", \"User\", \"Book\"]","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"JMR\",\"field_name\":\"UserToken\"}]","type":"text","disabled":true},{"key":"order_mode","value":"desc","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/analytics/getActivity?ssid={{ssid}}&limit=1","urlObject":{"protocol":"http","path":["api.php","api","v1","analytics","getActivity"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"},{"key":"limit","value":"1"}],"variable":[]}},"response":[],"_postman_id":"3bf07c77-c8ec-408d-8f3f-a1466763997d"},{"name":"getRankingProducts","id":"0a1d9e96-3744-4adb-8091-aedd583b04db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"10","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"Test\",\"field_name\":\"Token\"}]","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/analytics/getRankingProducts?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","analytics","getRankingProducts"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"0a1d9e96-3744-4adb-8091-aedd583b04db"},{"name":"getRankingOrdersUsers","id":"8c8d5f9c-86d2-43f2-88b9-48cdeacde6db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"10","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"Test\",\"field_name\":\"Token\"}]","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/analytics/getRankingOrdersUsers?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","analytics","getRankingOrdersUsers"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"8c8d5f9c-86d2-43f2-88b9-48cdeacde6db"},{"name":"getRankingAttributeValues","id":"aa90a2b2-11a5-4c5c-8535-6c05acaf7126","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"10","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"Test\",\"field_name\":\"Token\"}]","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/analytics/getRankingAttributeValues?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","analytics","getRankingAttributeValues"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"aa90a2b2-11a5-4c5c-8535-6c05acaf7126"}],"id":"254e9fe8-651a-4d41-b5b7-d33b5e56cd45","_postman_id":"254e9fe8-651a-4d41-b5b7-d33b5e56cd45","description":""},{"name":"Book","item":[{"name":"getBookChapters","id":"82c9e75f-3294-4e5b-a23a-662caa90e0ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"CP4526\",\"field_name\":\"Token\"}]","type":"text"},{"key":"limit","value":"2","type":"text"},{"key":"return_ratio_thumbs","value":"true","type":"default"}]},"url":"http://{{domain}}/api.php/api/v1/book/getBookChapters?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","book","getBookChapters"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"82c9e75f-3294-4e5b-a23a-662caa90e0ba"},{"name":"get","id":"9d0d8f35-e36f-4519-bb1f-ce34d2b2e4df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"TASKTODO\",\"field_name\":\"NotificationToken\"}]","type":"text","disabled":true},{"key":"limit","value":"5","type":"text"},{"key":"ignore_max_limit","value":"true","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/book/get?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","book","get"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"9d0d8f35-e36f-4519-bb1f-ce34d2b2e4df"},{"name":"setHotpoints","id":"35561732-3823-4001-ab6e-2f251279ed9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n\t\"Token\": \"TEST1\",\n\t\"HotpointActionToken\": \"GoToPrimary\",\n\t\"ProductPrimaryToken\": \"CP184\"\n}]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/book/setHotpoints?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","book","setHotpoints"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"35561732-3823-4001-ab6e-2f251279ed9f"},{"name":"setBookChapters","id":"a49c8176-be5e-4cae-aa6c-eaca7478fa14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n\t\"Token\": \"TEST1\",\n\t\"Coverflow_es\": \"lala.jpg\"\n}]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/book/setBookChapters?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","book","setBookChapters"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"a49c8176-be5e-4cae-aa6c-eaca7478fa14"}],"id":"539919cd-7dbe-488d-84a4-c61a29cb2e1c","_postman_id":"539919cd-7dbe-488d-84a4-c61a29cb2e1c","description":""},{"name":"Catalog","item":[{"name":"generateData","id":"a6b4ff50-c590-45c1-9f9b-c04c65ed0e1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"1\",\"field_name\":\"catalog\"},{\"operator\":\"=\", \"value\":\"stocks\",\"field_name\":\"module\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/catalog/generateData?ssid={{ssid}}","description":"<p>Generate sqlite</p>\n","urlObject":{"protocol":"http","path":["api.php","api","v1","catalog","generateData"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"a6b4ff50-c590-45c1-9f9b-c04c65ed0e1f"},{"name":"executeTask","id":"9d575f25-74e1-48af-b30f-173ec219ba23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"params","value":"[{\"function\":\"AP\"}]","type":"text"},{"key":"sentence","value":"import-optimsa-scripts","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/catalog/executeTask?ssid={{ssid}}","description":"<p>Generate sqlite</p>\n","urlObject":{"protocol":"http","path":["api.php","api","v1","catalog","executeTask"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"9d575f25-74e1-48af-b30f-173ec219ba23"},{"name":"get","id":"4dcf6727-eac1-4fe6-b2aa-379a7a40e506","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"1","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/catalog/get?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","catalog","get"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"4dcf6727-eac1-4fe6-b2aa-379a7a40e506"},{"name":"publish","id":"8a2e5f2b-6747-45a5-a384-0eb1408050cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"field_name\":\"Catalogs\",\"value\":\"CP1\",\"operator\":\"=\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/catalog/publish?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","catalog","publish"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"8a2e5f2b-6747-45a5-a384-0eb1408050cb"},{"name":"createTemplate","id":"2de29b2f-6c9c-4830-8489-5b8626ba71c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"token","value":"nuevo_template","type":"text"},{"key":"token_copy_from","value":"default","type":"text"},{"key":"name","value":"nombre template nuevo","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/catalog/createTemplate?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","catalog","createTemplate"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"2de29b2f-6c9c-4830-8489-5b8626ba71c1"},{"name":"resetTemplate","id":"b62a5be5-d6f0-43db-bd45-5f00e0e649fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"token","value":"nuevo_template","type":"text"},{"key":"token_copy_from","value":"default","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/catalog/resetTemplate?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","catalog","resetTemplate"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"b62a5be5-d6f0-43db-bd45-5f00e0e649fd"}],"id":"87afcee5-2f6d-420a-9f53-cd2b3cbdeefc","_postman_id":"87afcee5-2f6d-420a-9f53-cd2b3cbdeefc","description":""},{"name":"Category","item":[{"name":"orderByColumn","id":"433bff25-e95d-4be4-b0f4-44399a85aff3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data","value":"{\"type\":\"name\"}","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/category/orderByColumn?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","category","orderByColumn"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"433bff25-e95d-4be4-b0f4-44399a85aff3"},{"name":"setConnectorTokens","id":"49ffa772-2620-4d57-a833-c68419dfceff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"file","value":"[{\n\t\"Connector\": \"Woocommerce\",\n\t\"Token\": \"364959BB-7AD7-46D1-86AE-0831013D6DE9-CAJAS\",\n\t\"WoocommerceToken\": \"123\"\n},\n{\n\t\"Connector\": \"Prestashop\",\n\t\"Token\": \"364959BB-7AD7-46D1-86AE-0831013D6DE9-CAJAS\",\n\t\"PrestashopToken\": \"123\"\n}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/category/setConnectorTokens?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","category","setConnectorTokens"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"49ffa772-2620-4d57-a833-c68419dfceff"},{"name":"getTreeCollectionByToken","id":"e9f2bf59-c563-4b10-bebe-a219a27f983b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data","value":"{\"01\":\"01\",\"02\":\"02\",\"110\":\"110\",\"111\":\"111\",\"112\":\"112\",\"113\":\"113\",\"120\":\"120\",\"14\":\"14\",\"152\":\"152\",\"154\":\"154\",\"155\":\"155\",\"156\":\"156\",\"158\":\"158\",\"159\":\"159\",\"160\":\"160\",\"163\":\"163\",\"165\":\"165\",\"169\":\"169\",\"171\":\"171\",\"50\":\"50\",\"51\":\"51\",\"52\":\"52\",\"53\":\"53\",\"54\":\"54\",\"55\":\"55\",\"56\":\"56\",\"57\":\"57\",\"58\":\"58\",\"59\":\"59\",\"60\":\"60\",\"70\":\"70\",\"81\":\"81\",\"82\":\"82\",\"84\":\"84\",\"86\":\"86\",\"93\":\"93\",\"94\":\"94\"}","type":"text"},{"key":"by_external_token","value":"true","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/category/getTreeCollectionByToken?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","category","getTreeCollectionByToken"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"e9f2bf59-c563-4b10-bebe-a219a27f983b"},{"name":"setCategories","id":"a024e365-fda7-4b4c-b072-398ef10b5fbc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n\t\"Token\": \"Test\",\n\t\"Name_es\": \"Prueba cover\",\n\t\"Coverflow_es\": \"pez.png\",\n\t\"Background_es\": \"\"\n}]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/category/setCategories?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","category","setCategories"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"a024e365-fda7-4b4c-b072-398ef10b5fbc"},{"name":"get","id":"fae06aae-0bf7-44a8-82c8-f10e4e3a7789","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"5","type":"text"},{"key":"filters","value":"[{\"operator\": \"=\",\"value\": \"0-5\",\"field_name\": \"Token\"}]","type":"text","disabled":true},{"key":"return_internalurl_images","value":"true","type":"text","disabled":true},{"key":"ignore_max_limit","value":"true","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/category/get?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","category","get"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"fae06aae-0bf7-44a8-82c8-f10e4e3a7789"},{"name":"getProductsByCollections","id":"cea507fe-2acc-4085-bd66-6809545a08bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"return_attributes","value":"true","type":"text"},{"key":"limit","value":"2","type":"text","disabled":true},{"key":"data_type","value":"csv","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\": \"=\",\"value\": \"3862C643-C434-430D-86B2-27B78F8BD370-GAMA ECTO-OTROS\",\"field_name\": \"Token\"}]","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/category/getProductsByCollections?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","category","getProductsByCollections"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"cea507fe-2acc-4085-bd66-6809545a08bd"},{"name":"setProductsToCollectionByAttributes","id":"f09c3965-abb2-477b-baea-659e0c49f0ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/category/setProductsToCollectionByAttributes?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","category","setProductsToCollectionByAttributes"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"f09c3965-abb2-477b-baea-659e0c49f0ab"},{"name":"getProductsGroupedByCollections","id":"4237457c-4d10-41f5-8df5-f1194eefd346","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"10","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\"=\",\"value\":\"Electrodomésticos\",\"field_name\":\"Token\"}]","type":"text"},{"key":"data_type","value":"csv","type":"text","disabled":true},{"key":"return_attributes","value":"true","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/category/getProductsGroupedByCollections?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","category","getProductsGroupedByCollections"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"4237457c-4d10-41f5-8df5-f1194eefd346"}],"id":"7059aabe-226a-4470-b9bf-12e3087a1670","_postman_id":"7059aabe-226a-4470-b9bf-12e3087a1670","description":""},{"name":"Chat","item":[{"name":"joinChannel","id":"0423cf44-a926-4c86-8695-d694bfc9257f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"ChatChannelToken","value":"CJ619bb9f0436a8","type":"text"},{"key":"UserToken","value":"111,00","type":"text","disabled":true},{"key":"UserExternalToken","value":"customer","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/chat/joinChannel?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","chat","joinChannel"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"0423cf44-a926-4c86-8695-d694bfc9257f"},{"name":"sendMessage","id":"40b989fa-d443-4042-82ab-03079365d8ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"file","value":"{\n    \"Token\": \"CP1\",\n    \"Message\": \"Message prueba 1\",\n    \"ChatChannelToken\": \"CJ619bb9f0436a8\",\n    \"ChatSubscriberToken\": \"CP2\" \n}","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/chat/sendMessage?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","chat","sendMessage"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"40b989fa-d443-4042-82ab-03079365d8ac"},{"name":"getChannels","id":"a85ddb9f-1afd-49af-8109-c2845983cf1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"CP1\",\"field_name\":\"Token\"}]","type":"text","disabled":true},{"key":"limit","value":"5","type":"text"},{"key":"ignore_max_limit","value":"true","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/chat/getChannels?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","chat","getChannels"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"},{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[],"_postman_id":"a85ddb9f-1afd-49af-8109-c2845983cf1b"},{"name":"getMessages","id":"c02ffff8-0a95-43b7-aff0-f7fdf892889f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"430000314\",\"field_name\":\"UserExternalToken\"}]","type":"text","disabled":true},{"key":"limit","value":"5","type":"text"},{"key":"ignore_max_limit","value":"true","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/chat/getMessages?ssid={{ssid}}&field_order_by=created_at&order_mode=desc","urlObject":{"protocol":"http","path":["api.php","api","v1","chat","getMessages"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"},{"key":"field_order_by","value":"created_at"},{"key":"order_mode","value":"desc"},{"disabled":true,"key":"offset","value":"0"},{"disabled":true,"key":"limit","value":"10"},{"disabled":true,"key":"filters","value":"[{\"operator\":\"=\",\"field_name\":\"ChatChannelToken\",\"value\":\"CJ61a9f25d7bf8a\"}]"}],"variable":[]}},"response":[],"_postman_id":"c02ffff8-0a95-43b7-aff0-f7fdf892889f"},{"name":"getSubscribers","id":"ab7784f8-a414-4973-9b0e-61f3311972e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"22\",\"field_name\":\"UserToken\"}]","type":"text","disabled":true},{"key":"limit","value":"5","type":"text"},{"key":"ignore_max_limit","value":"true","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/chat/getSubscribers?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","chat","getSubscribers"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"},{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[],"_postman_id":"ab7784f8-a414-4973-9b0e-61f3311972e5"}],"id":"3800dc1f-aa4d-42af-8fff-ae50709f004a","_postman_id":"3800dc1f-aa4d-42af-8fff-ae50709f004a","description":""},{"name":"Company","item":[{"name":"getChanges","id":"f324f11b-88dc-4f94-a20d-5f42e4669c38","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text"},{"key":"filters","value":"[{\"operator\":\"LIKE\", \"value\":\"Company_%\",\"field_name\":\"CompanyToken\"}]","type":"text"},{"key":"filters","value":"[{\"operator\":\"IN\", \"value\":[\"Company_1627459973564\",\"123123\"],\"field_name\":\"CompanyToken\"}]","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/company/getChanges?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","getChanges"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"f324f11b-88dc-4f94-a20d-5f42e4669c38"},{"name":"disableCompanyTypesWithoutDiscountsByGroup","id":"58f2fc27-afd2-4c32-80c9-8928fe1597fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"group_id","value":"6","type":"text","disabled":true},{"key":"group_token","value":"PAYER","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/company/disableCompanyTypesWithoutDiscountsByGroup?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","disableCompanyTypesWithoutDiscountsByGroup"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"58f2fc27-afd2-4c32-80c9-8928fe1597fc"},{"name":"get","id":"0661f904-7d49-4a86-93ec-8d86282a9ddf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"100","type":"text"},{"key":"filters","value":"[{\"operator\":\"LIKE\", \"value\":\"Company_%\",\"field_name\":\"Token\"},{\"operator\":\"=\", \"value\":\"PROSPECTO\",\"field_name\":\"CompanyTypeToken\"}]","type":"text"},{"key":"return_tokens","value":"true","type":"text","disabled":true},{"key":"field_order_by","value":"id","type":"text","disabled":true},{"key":"order_mode","value":"desc","type":"text","disabled":true},{"key":"return_groups_info","value":"true","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/company/get?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","get"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"0661f904-7d49-4a86-93ec-8d86282a9ddf"},{"name":"getContacts","id":"66d7588f-c6ae-4d6c-92bd-130d6767ac22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"C09296-1\",\"field_name\":\"Token\"}]","type":"text"},{"key":"limit","value":"3","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/company/getContacts?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","getContacts"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"},{"disabled":true,"key":"limit","value":"1"}],"variable":[]}},"response":[],"_postman_id":"66d7588f-c6ae-4d6c-92bd-130d6767ac22"},{"name":"getRecommendedBookChapters","id":"77671bbb-3788-49dc-8312-d0a6e3338a29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"CP61\",\"field_name\":\"BookChapterToken\"}]","type":"text"},{"key":"limit","value":"3","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/company/getRecommendedBookChapters?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","getRecommendedBookChapters"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"77671bbb-3788-49dc-8312-d0a6e3338a29"},{"name":"deleteRecommendedBookChapters","id":"eef7c378-b0fb-4e4f-97c1-004a7738a7d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"CP61\",\"field_name\":\"BookChapterToken\"}]","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/company/deleteRecommendedBookChapters?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","deleteRecommendedBookChapters"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"},{"disabled":true,"key":"limit","value":"1"}],"variable":[]}},"response":[],"_postman_id":"eef7c378-b0fb-4e4f-97c1-004a7738a7d6"},{"name":"getCompanyTypes","id":"171755b0-c9f5-4bb0-8d70-178f71cc3ee0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"Company_1517502745928\",\"field_name\":\"Token\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/company/getCompanyTypes?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","getCompanyTypes"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"},{"disabled":true,"key":"limit","value":"1"}],"variable":[]}},"response":[],"_postman_id":"171755b0-c9f5-4bb0-8d70-178f71cc3ee0"},{"name":"getCompanyTypesGroups","id":"8db10556-2ae5-4ff7-8228-d65607ff8a5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/company/getCompanyTypesGroups?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","getCompanyTypesGroups"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"},{"disabled":true,"key":"limit","value":"1"}],"variable":[]}},"response":[],"_postman_id":"8db10556-2ae5-4ff7-8228-d65607ff8a5d"},{"name":"getAddress","id":"9fca8309-0c56-411f-8148-a4829a518483","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"1","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"Company_1517502745928\",\"field_name\":\"Token\"}]","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"123\",\"field_name\":\"WoocommerceToken\"}]","type":"text"},{"key":"extends","value":"[ \"Company\" ]","description":"<p>Array que añade la información detallada de los elementos indicados. Estos son todos los posibles valores: [\"Company\"]</p>\n","type":"text","uuid":"d53cd957-4d9d-4804-b2ad-a014b1e2f3b9"}]},"url":"http://{{domain}}/api.php/api/v1/company/getAddress?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","getAddress"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"},{"disabled":true,"key":"limit","value":"1"}],"variable":[]}},"response":[],"_postman_id":"9fca8309-0c56-411f-8148-a4829a518483"},{"name":"setAddress","id":"3aeb8377-fa7b-4e7d-89ae-48b5ca11d820","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"C28729-1\",\"field_name\":\"Token\"}]","type":"text"},{"key":"fields","value":"[{ \"value\":\"Pending\",\"field\":\"GeopositionStatusToken\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/company/setAddress?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","setAddress"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"3aeb8377-fa7b-4e7d-89ae-48b5ca11d820"},{"name":"setPaymentMethodsConnectorTokens","id":"d23783d3-ced2-4d9e-9ab7-df5f755a0581","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"file","value":"[{\n\t\"Connector\": \"Woocommerce\",\n\t\"Token\": \"1000\",\n\t\"WoocommerceToken\": \"1234\"\n}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/company/setPaymentMethodsConnectorTokens?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","setPaymentMethodsConnectorTokens"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"d23783d3-ced2-4d9e-9ab7-df5f755a0581"},{"name":"setAddressConnectorTokens Copy","id":"0150510b-1946-4d11-a3bd-eae8afb1fed8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"file","value":"[{\n\t\"Connector\": \"Woocommerce\",\n\t\"Token\": \"430000000-0-E-F-R\",\n\t\"WoocommerceToken\": \"1234\"\n},\n{\n\t\"Connector\": \"Prestashop\",\n\t\"Token\": \"430000000-0-E-F-R\",\n\t\"PrestashopToken\": \"456\"\n}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/company/setAddressConnectorTokens?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","setAddressConnectorTokens"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"0150510b-1946-4d11-a3bd-eae8afb1fed8"},{"name":"setConnectorTokens","id":"4c8ad725-7f00-45c0-ac9e-3ec75d57ac44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"file","value":"[{\n\t\"Connector\": \"Woocommerce\",\n\t\"Token\": \"430000001\",\n\t\"WoocommerceToken\": \"1234\"\n},\n{\n\t\"Connector\": \"Prestashop\",\n\t\"Token\": \"430000001\",\n\t\"PrestashopToken\": \"456\"\n}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/company/setConnectorTokens?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","setConnectorTokens"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"4c8ad725-7f00-45c0-ac9e-3ec75d57ac44"},{"name":"setProspectToClient","id":"39ba05cb-becb-4d99-857e-1ba9b41eb647","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"1","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"1626035\",\"field_name\":\"Token\"}]","type":"text"},{"key":"fields","value":"[{\"field\":\"newToken\",\"value\":\"1626035\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/company/setProspectToClient?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","setProspectToClient"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"39ba05cb-becb-4d99-857e-1ba9b41eb647"},{"name":"deleteAllPointsClients","id":"9132f811-46c4-468c-a6ab-15512bd29da8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/company/deleteAllPointsClients?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","deleteAllPointsClients"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"9132f811-46c4-468c-a6ab-15512bd29da8"},{"name":"setAllStatus","id":"c3674c50-b8f5-4219-9f4d-4c76e0a91af0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/company/setAllStatus?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","setAllStatus"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"c3674c50-b8f5-4219-9f4d-4c76e0a91af0"},{"name":"deleteAllPointsClientsCampaign","id":"eef58bec-c03f-4fc6-bc35-732bb7551f4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/company/deleteAllPointsClientsCampaign?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","deleteAllPointsClientsCampaign"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"eef58bec-c03f-4fc6-bc35-732bb7551f4f"},{"name":"disableAllClients","id":"1a4bd482-d317-4612-ad8c-9f6b937fdb83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/company/disableAllClients?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","disableAllClients"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"1a4bd482-d317-4612-ad8c-9f6b937fdb83"},{"name":"disableClients","id":"bb7da449-c6ea-4140-a916-21cbae123751","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"PROVEEDOR\",\"field_name\":\"CompanyTypeToken\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/company/disableClients?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","disableClients"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"bb7da449-c6ea-4140-a916-21cbae123751"},{"name":"getClientsRelatedByConsumer","id":"cde290df-d32d-4a48-ae3a-14b5ae79c945","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"PROVEEDOR\",\"field_name\":\"CompanyTypeToken\"}]","type":"text","disabled":true},{"key":"ConsumerToken","value":"customerJourney","type":"text"},{"key":"return_only_ids","value":"true","type":"text","disabled":true},{"key":"order_by_name","value":"true","type":"text","disabled":true},{"key":"limit","value":"2","type":"text","disabled":true},{"key":"page","value":"1","type":"text","disabled":true},{"key":"UserToken","value":"CP86","type":"text"},{"key":"return_only_tokens","value":"true","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/company/getClientsRelatedByConsumer?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","getClientsRelatedByConsumer"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"cde290df-d32d-4a48-ae3a-14b5ae79c945"},{"name":"disableOnlyClients","id":"b5e244d0-fa59-47a6-921c-59d647a333b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"PROVEEDOR\",\"field_name\":\"CompanyTypeToken\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/company/disableOnlyClients?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","disableOnlyClients"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"b5e244d0-fa59-47a6-921c-59d647a333b4"},{"name":"disableAllOnlyClients","id":"c93b703b-81eb-420e-97da-6646a06098a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/company/disableAllOnlyClients?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","disableAllOnlyClients"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"c93b703b-81eb-420e-97da-6646a06098a5"},{"name":"disableAllAddresses","id":"e0a27b84-8f69-4840-9782-1247a3fd1964","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/company/disableAllAddresses?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","disableAllAddresses"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"e0a27b84-8f69-4840-9782-1247a3fd1964"},{"name":"disableAllContacts","id":"d4ae885b-92ff-4fa9-bfdf-55801a112a10","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/company/disableAllContacts?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","disableAllContacts"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"d4ae885b-92ff-4fa9-bfdf-55801a112a10"},{"name":"setPaymentMethods","id":"6beb8d41-ca50-463c-9e04-4e3f6f412b8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n\t\"Token\": \"1000\",\n\t\"WoocommerceToken\": \"test\"\n}]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/company/setPaymentMethods?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","setPaymentMethods"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"6beb8d41-ca50-463c-9e04-4e3f6f412b8c"},{"name":"setContacts","id":"babea017-77da-4446-87fa-bf625282d637","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n\t\"CompanyToken\": \"1069\",\n\t\"Token\": \"0\",\n\t\"RoleToken_1\": \"Presidente\"\n}]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/company/setContacts?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","setContacts"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"babea017-77da-4446-87fa-bf625282d637"},{"name":"setCompanies","id":"8c159261-c4c1-4ddd-b70e-5eaaee4cfedc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n    \"Token\": \"0\",\n    \"DefaultDiscountListToken\": \"CP1\",\n    \"StatusId\": \"fail\",\n    \"UserToken\": \"fail\",\n    \"ProviderToken\": \"fail\",\n    \"TaxPropertyToken\": \"fail\",\n    \"ProductOrderToken\": \"fail\",\n    \"FavoriteToken\": \"fail\",\n    \"AccountToken\": \"fail\",\n    \"CurrencyToken\": \"fail\",\n    \"DepartmentToken\": \"fail\",\n    \"LanguageCode\": \"fail\",\n    \"CountryCode\": \"fail\",\n    \"CountryINE\": \"fail\",\n    \"CountryToken\": \"fail\",\n    \"DeliveryModeToken\": \"fail\",\n    \"ShippingModeToken\": \"fail\",\n    \"OrderSerieToken\": \"fail\",\n    \"CompanyType_9999\": \"fail\",\n    \"PointlistToken_1\": \"fail\",\n    \"FileToken_1\": \"fail\",\n    \"WarehouseToken_1\": \"fail\",\n    \"CampaignToken_1\": \"fail\",\n    \"PointsCost_1\": \"\",\n    \"PointsValue_1\": \"\",\n    \"PointsPointlistToken_1\": \"fail\",\n    \"PricelistExtra_1\": \"fail\",\n    \"Address_1_Token\": \"fail\",\n    \"Address_1_GeopositionStatusToken\": \"fail\",\n    \"Address_1_CountryCode\": \"fail\",\n    \"Address_1_CountryINE\": \"fail\",\n    \"Address_1_CountryStateCode\": \"fail\",\n    \"Address_1_CountryStateCodeIne\": \"fail\",\n    \"Address_1_UserToken\": \"fail\",\n    \"Address_1_Latitude\": \"fail\",\n    \"Address_1_Longitude\": \"\" \n}]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/company/setCompanies?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","setCompanies"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"8c159261-c4c1-4ddd-b70e-5eaaee4cfedc"},{"name":"setRecommendedBookChapters","id":"36bfa302-f3f8-4f8c-bb71-14c6a88239e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n    \"Token\": \"1234\",\n    \"CompanyToken\": \"1052\",\n    \"BookChapterToken\": \"CP60\"\n}]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/company/setRecommendedBookChapters ?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","setRecommendedBookChapters "],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"36bfa302-f3f8-4f8c-bb71-14c6a88239e0"},{"name":"setAddresses","id":"06f41457-e304-4ba2-82b2-fe43698a0b09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n        \"CompanyToken\": \"10890\",\n        \"Token\": \"0\",\n        \"Name\": \"Testing 1234\",\n        \"Longitude\": \"Testing1234\"\n}]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/company/setAddresses?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","setAddresses"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"06f41457-e304-4ba2-82b2-fe43698a0b09"},{"name":"set","id":"8c35607d-9649-423e-83bd-ad0453956a5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"Company_1613491995265\",\"field_name\":\"Token\"}]","type":"text"},{"key":"fields","value":"[{ \"value\":\"CP2\",\"field\": \"UserToken\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/company/set?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","company","set"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"8c35607d-9649-423e-83bd-ad0453956a5c"}],"id":"bad845ac-c7f8-4de5-b488-3c46ae1b79a3","_postman_id":"bad845ac-c7f8-4de5-b488-3c46ae1b79a3","description":""},{"name":"CustomerJourney","item":[{"name":"setCustomerJourneys","id":"f727a425-8041-4327-a538-d0a8c4cf9676","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"file","value":"[{\n\t\"Token\": \"CWTEST2\",\n\t\"Code\": \"CodeTest2\",\n\t\"Active\": \"1\",\n\t\"InnerNotes\": \"TestNotas2\",\n\t\"ExpireAt\": \"2021-10-31\",\n\t\"ClosedAt\": \"2021-10-31\",\n\t\"FileToken\": \"04V0769\",\n\t\"UserOwnerToken\": \"CP1\",\n\t\"CustomerJourneyWizardToken\": \"CustomerJourney\",\n\t\"TotalSteps\": \"9\",\n\t\"CurrentStepPosition\": \"0\",\n\t\"CustomerJourneyStatusToken\": \"published\",\n\t\"CompanyToken\": \"1034\",\n\t\"Name_es\": \"Titulo 2\",\n\t\"Description_es\": \"description 2 es\",\n\t\"TagToken_1\": \"123\"\n}]","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"execute_now","value":"true","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/customer_journey/setCustomerJourneys?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","customer_journey","setCustomerJourneys"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"f727a425-8041-4327-a538-d0a8c4cf9676"},{"name":"getStepsHistory","id":"83cfb672-8ac2-4291-ac1c-bd8d7ec95652","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"CP1\",\"field_name\":\"Token\"}]","type":"text","disabled":true},{"key":"data_type","value":"csv","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/customer_journey/getStepsHistory?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","customer_journey","getStepsHistory"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"83cfb672-8ac2-4291-ac1c-bd8d7ec95652"},{"name":"getCustomerJourneyStatus","id":"1314afcd-9ea9-4d9c-b99a-6afce76f4256","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"CP1\",\"field_name\":\"Token\"}]","type":"text","disabled":true},{"key":"data_type","value":"csv","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/customer_journey/getCustomerJourneyStatus?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","customer_journey","getCustomerJourneyStatus"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"1314afcd-9ea9-4d9c-b99a-6afce76f4256"},{"name":"get","id":"61ebcf9d-8d4f-4ff9-9f9b-8c08abf60236","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\"LIKE\", \"value\":\"%full%\",\"field_name\":\"Search\"}]","type":"text","disabled":true},{"key":"field_order_by","value":"Name_es","type":"text"},{"key":"order_mode","value":"asc","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/customer_journey/get?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","customer_journey","get"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"61ebcf9d-8d4f-4ff9-9f9b-8c08abf60236"},{"name":"changeCustomerJourneyStatus","id":"d5519e53-4b2d-42f9-ace6-e66103f1bfc2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"CustomerJourneyToken","value":"CJ61965b1abd3f0","type":"text"},{"key":"StatusToken","value":"draft","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/customer_journey/changeCustomerJourneyStatus?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","customer_journey","changeCustomerJourneyStatus"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"d5519e53-4b2d-42f9-ace6-e66103f1bfc2"},{"name":"getLastStatusByStep","id":"4f47516e-10ee-45f4-b54c-b896d29ba03e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"CustomerJourneyToken","value":"CWTEST","type":"text"},{"key":"CustomerJourneyWizardStepToken","value":"CJstep9","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/customer_journey/getLastStatusByStep ?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","customer_journey","getLastStatusByStep "],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"4f47516e-10ee-45f4-b54c-b896d29ba03e"},{"name":"getWizards","id":"01e4545a-d9de-4110-9e7f-c60f0c764c6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"CP1\",\"field_name\":\"Token\"}]","type":"text","disabled":true},{"key":"data_type","value":"csv","type":"text","disabled":true},{"key":"return_internal_urls","value":"true","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/customer_journey/getWizards?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","customer_journey","getWizards"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"01e4545a-d9de-4110-9e7f-c60f0c764c6e"},{"name":"getWizardSteps","id":"c2910d02-ac6e-4076-a87e-accca7f46f12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"CP1\",\"field_name\":\"Token\"}]","type":"text","disabled":true},{"key":"data_type","value":"csv","type":"text","disabled":true},{"key":"return_internal_urls","value":"true","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/customer_journey/getWizardSteps?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","customer_journey","getWizardSteps"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"c2910d02-ac6e-4076-a87e-accca7f46f12"},{"name":"getAllTagsByField","id":"366d1da0-3d27-4cdf-83f4-6bc5eb7121d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"CP1\",\"field_name\":\"Token\"}]","type":"text","disabled":true},{"key":"data_type","value":"csv","type":"text","disabled":true},{"key":"return_internal_urls","value":"true","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/customer_journey/getAllTagsByField?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","customer_journey","getAllTagsByField"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"366d1da0-3d27-4cdf-83f4-6bc5eb7121d0"}],"id":"c8d69d08-ada8-42f6-a5c0-3e0106ce3a25","_postman_id":"c8d69d08-ada8-42f6-a5c0-3e0106ce3a25","description":""},{"name":"Dashboard","item":[{"name":"get","id":"11aa3fa4-9636-44b2-81ac-1084b1f048b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"22\",\"field_name\":\"UserToken\"}]","type":"text","disabled":true},{"key":"limit","value":"5","type":"text"},{"key":"ignore_max_limit","value":"true","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/dashboard/get?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","dashboard","get"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"11aa3fa4-9636-44b2-81ac-1084b1f048b5"},{"name":"getContainers","id":"dd52de75-f3af-4f16-9a26-e494323fcd43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"DashboardDefaultTablet\",\"field_name\":\"DashboardToken\"}]","type":"text"},{"key":"limit","value":"5","type":"text"},{"key":"ignore_max_limit","value":"true","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/dashboard/getContainers?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","dashboard","getContainers"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"dd52de75-f3af-4f16-9a26-e494323fcd43"},{"name":"getModules","id":"ffc645f1-e155-4fb3-b5d3-6a5a6c5aadab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"CP9\",\"field_name\":\"ContainerToken\"}]","type":"text"},{"key":"limit","value":"5","type":"text"},{"key":"ignore_max_limit","value":"true","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/dashboard/getModules?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","dashboard","getModules"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"ffc645f1-e155-4fb3-b5d3-6a5a6c5aadab"}],"id":"d41ac7b7-c707-4889-a67c-3e3d10ef9fc2","_postman_id":"d41ac7b7-c707-4889-a67c-3e3d10ef9fc2","description":""},{"name":"Discount","item":[{"name":"getDiscountlists","id":"53432f26-15a5-411b-b6d8-0b9056b94863","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"1","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"CP1\",\"field_name\":\"Token\"}]","type":"text","disabled":true},{"key":"return_tokens","value":"true","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/discount/getDiscountlists?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","discount","getDiscountlists"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"53432f26-15a5-411b-b6d8-0b9056b94863"},{"name":"deleteDiscountlistExceptions","id":"9e6447fc-e8c6-41f3-b7b8-6f6f08c83893","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"CP1\",\"field_name\":\"Token\"}]","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/discount/deleteDiscountlistExceptions?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","discount","deleteDiscountlistExceptions"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"9e6447fc-e8c6-41f3-b7b8-6f6f08c83893"},{"name":"deleteDiscountlistGroupExceptions","id":"6dfe1400-149f-4861-a04f-fd2fbe397417","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"CP1\",\"field_name\":\"Token\"}]","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/discount/deleteDiscountlistGroupExceptions?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","discount","deleteDiscountlistGroupExceptions"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"6dfe1400-149f-4861-a04f-fd2fbe397417"},{"name":"getDiscounts","id":"d627af6d-3c10-4031-8c1f-b13717c36377","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"1","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"CP1\",\"field_name\":\"Token\"}]","type":"text","disabled":true},{"key":"return_tokens","value":"true","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/discount/getDiscounts?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","discount","getDiscounts"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"d627af6d-3c10-4031-8c1f-b13717c36377"},{"name":"deleteDiscounts","id":"517896c2-fd83-4356-aa4a-b86da5ad91ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"IS NULL\", \"value\":null,\"field_name\":\"CompanyId\"},{\"operator\":\"!=\", \"value\":\"CP1\",\"field_name\":\"DiscountlistToken\"}]","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/discount/deleteDiscounts?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","discount","deleteDiscounts"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"517896c2-fd83-4356-aa4a-b86da5ad91ac"},{"name":"deleteMaxDiscounts","id":"a19ec9e8-2d42-4d3f-85aa-c5dac748d39c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"4\", \"value\":null,\"field_name\":\"UserToken\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/discount/deleteMaxDiscounts?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","discount","deleteMaxDiscounts"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"a19ec9e8-2d42-4d3f-85aa-c5dac748d39c"},{"name":"refillDiscounts","id":"d4c285b5-1ec2-419b-a107-a6100d2836fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/discount/refillDiscounts?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","discount","refillDiscounts"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"d4c285b5-1ec2-419b-a107-a6100d2836fa"},{"name":"setDiscountlists","id":"2a6751e9-4008-4f56-8115-9c2d63c7baca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n\t\t\"Token\": \"TEST1\",\n\t\t\"Name\": \"Test1\",\n\t\t\"ApplyToAll\": \"1\",\n\t\t\"AttributeValueToken_1\": \"Inventado\",\n\t\t\"Value_1\": \"10\",\n\t\t\"DiscountlistTypeToken\": \"discount\",\n\t\t\"DiscountlistGroupToken\": \"Group1\"\n\t},\n\t{\n\t\t\"Token\": \"TEST2\",\n\t\t\"Name\": \"Test2\",\n\t\t\"ApplyToAll\": \"1\",\n\t\t\"AttributeValueToken_1\": \"Test1\",\n\t\t\"Value_1\": \"11\",\n\t\t\"DiscountlistTypeToken\": \"\",\n\t\t\"DiscountlistGroupToken\": \"Group1\"\n\t},\n\t{\n\t\t\"Token\": \"TEST3\",\n\t\t\"Name\": \"Test3\",\n\t\t\"ApplyToAll\": \"0\",\n\t\t\"AttributeValueToken_1\": \"\",\n\t\t\"Value_1\": \"12\",\n\t\t\"DiscountlistTypeToken\": \"discount\",\n\t\t\"DiscountlistGroupToken\": \"Group1\"\n\t},\n\t{\n\t\t\"Token\": \"TASA1\",\n\t\t\"Name\": \"Test3\",\n\t\t\"ApplyToAll\": \"0\",\n\t\t\"AttributeValueToken_1\": \"\",\n\t\t\"Value_1\": \"12\",\n\t\t\"DiscountlistTypeToken\": \"rate\",\n\t\t\"DiscountlistGroupToken\": \"Group1\"\n\t}\n]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/discount/setDiscountlists?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","discount","setDiscountlists"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"2a6751e9-4008-4f56-8115-9c2d63c7baca"},{"name":"setDiscounts","id":"8144be3b-b295-42d2-bccd-9017f692b4d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[\n    {\n        \"Token\": \"DA65~GC005_02\\\\/23-04\\\\/21-test\",\n        \"ProductToken\": \"034-1010270-RB\",\n        \"UpTo_1\": \"10\",\n        \"Discount_1\": \"\"\n    }\n]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","src":"file.json","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/discount/setDiscounts?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","discount","setDiscounts"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"8144be3b-b295-42d2-bccd-9017f692b4d2"}],"id":"36a3a95d-9de2-49f0-9a74-5920fee54563","_postman_id":"36a3a95d-9de2-49f0-9a74-5920fee54563","description":""},{"name":"Favorite","item":[{"name":"setFavorites","id":"607b36e7-5623-4e9e-818b-719e08a5ab97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n\t\"ProductToken\": \"TEST1\",\n\t\"WarehouseToken\": \"CP1\",\n\t\"Quantity\": \"2\"\n}]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/favorite/setFavorites?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","favorite","setFavorites"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"607b36e7-5623-4e9e-818b-719e08a5ab97"},{"name":"get","id":"ccc9bb5a-3bf1-42c5-9e29-684211541ca3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"CP1\",\"field_name\":\"Token\"}]","type":"text","disabled":true},{"key":"data_type","value":"csv","type":"text","disabled":true},{"key":"return_internal_urls","value":"true","type":"text"}]},"url":"https://{{domain}}/api.php/api/v1/favorite/get?ssid={{ssid}}","urlObject":{"protocol":"https","path":["api.php","api","v1","favorite","get"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"ccc9bb5a-3bf1-42c5-9e29-684211541ca3"},{"name":"getFeedbacks","id":"47cf3d6b-e0c9-48f9-8bae-8934a9f04489","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"CP1\",\"field_name\":\"Token\"}]","type":"text","disabled":true},{"key":"data_type","value":"csv","type":"text","disabled":true},{"key":"return_internal_urls","value":"true","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/favorite/getFeedbacks?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","favorite","getFeedbacks"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"47cf3d6b-e0c9-48f9-8bae-8934a9f04489"}],"id":"c1984fed-8f37-4a34-bfb0-c9ebadd872de","_postman_id":"c1984fed-8f37-4a34-bfb0-c9ebadd872de","description":""},{"name":"Files","item":[{"name":"set","id":"0b986382-3b5f-4bcc-8219-13160e1dfc9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"type","value":"files","type":"text"},{"key":"file","value":"[{\n\t\t\"Token\": \"Test1\",\n\t\t\"FileTypeId\": \"1\",\n\t\t\"File\": \"http://www.kincosmetics.com/biblioteca/items/2687_A/KINACTIF____COLOR_SHAMPOO____1000ML.png\"\n\t},\n\t{\n\t\t\"Token\": \"Test2\",\n\t\t\"FileTypeId\": \"1\",\n\t\t\"File\": \"http://catalogplayer.com/wp-content/uploads/2020/04/cropped-logo_CP_semidef-300x60.jpg\"\n\t},\n\t{\n\t\t\"Token\": \"Test3\",\n\t\t\"FileTypeId\": \"3\",\n\t\t\"File\": \"https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf\"\n\t},\n\t{\n\t\t\"Token\": \"Test4\",\n\t\t\"FileTypeId\": \"3\",\n\t\t\"File\": \"criteria.pdf\"\n\t},\n\t{\n\t\t\"Token\": \"Test5\",\n\t\t\"FileTypeId\": \"1\",\n\t\t\"File\": \"pez.png\"\n\t},\n\t{\n\t\t\"Token\": \"Test6\",\n\t\t\"FileTypeId\": \"2\",\n\t\t\"File\": \"small.mp4\"\n\t},\n\t{\n\t\t\"Token\": \"Test7\",\n\t\t\"FileTypeId\": \"2\",\n\t\t\"File\": \"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4\"\n\t},\n\t{\n\t\t\"Token\": \"Test8\",\n\t\t\"FileTypeId\": \"1\",\n\t\t\"File\": \"http://data.oyv.es/media/imagenesweb/GruposCat/normal/ACEITERAS_SKY.jpg\"\n\t},\n\t{\n\t\t\"Token\": \"Test9\",\n\t\t\"FileTypeId\": \"4\",\n\t\t\"File\": \"sample.doc\"\n\t},\n\t{\n\t\t\"Token\": \"Test10\",\n\t\t\"FileTypeId\": \"1\",\n\t\t\"File\": \"http://4654fq2.mycpl.net/uploads/company/logo_cj.png\"\n\t},\n\t{\n\t\t\"Token\": \"Test11\",\n\t\t\"FileTypeId\": \"1\",\n\t\t\"File\": \"https://espaciomenaje.com/wp-content/uploads/imagenes-productos/AP000101.jpg\"\n\t},\n\t{\n\t\t\"Token\": \"Test12\",\n\t\t\"FileTypeId\": \"1\",\n\t\t\"File\": \"https://espaciomenaje.com/wp-content/uploads/imagenes-productos/AP000104.jpg\"\n\t},\n\t{\n\t\t\"Token\": \"Test13\",\n\t\t\"FileTypeId\": \"1\",\n\t\t\"File\": \"https://espaciomenaje.com/wp-content/uploads/imagenes-productos/AP000105BIS1.jpg\"\n\t},\n\t{\n\t\t\"Token\": \"Test14\",\n\t\t\"FileTypeId\": \"1\",\n\t\t\"File\": \"http://d7rh5s3nxmpy4.cloudfront.net/temp/dVY2U0JoZmszRk09/PR7009BI1889_M252414_Pantalon_Expedition_WNTR_37_5_IMD.jpg\"\n\t}\n]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","src":"/C:/Users/nena_/Desktop/contacts.csv","disabled":true},{"key":"not_background","value":"true","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/files/set?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","files","set"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"0b986382-3b5f-4bcc-8219-13160e1dfc9b"},{"name":"getFiles","id":"cb3eb603-9080-4d40-ab65-a79c2f5b7717","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"ssid","value":"{{ssid}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text","description":"<p>Hash Generated using backend </p>\n"},{"key":"limit","value":"100","type":"text","description":"<p>Limit of registers to return. Be aware with max limit</p>\n"},{"key":"filters","value":"[{\n\t\"operator\": \"!=\",\n\t\"value\": 1,\n\t\"field_name\": \"S\"\n}, {\n\t\"operator\": \"IN\",\n\t\"value\": [\"CP9\"],\n\t\"field_name\": \"TagTokenWithAND\"\n}]","type":"text","disabled":true},{"key":"data_type","value":"csv","type":"text","description":"<p>Optional setting to return a CSV file </p>\n","disabled":true},{"key":"return_internal_urls","value":"true","type":"text","description":"<p>Deprecated</p>\n","disabled":true},{"key":"filters","value":"[{\"operator\": \"=\",\"value\": \"1\",\"field_name\": \"FiletypeId\"}]","type":"text","description":"<p>Example of multiple filters in one query</p>\n"},{"key":"ssid","value":"{{ssid}}","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/files/getFiles?ssid={{ssid}}","description":"<p>The endpoint <code>http://{{domain}}/api.php/api/v1/files/getFiles?ssid={{ssid}}</code> is a POST request to retrieve files. The request uses form-data as the request body type.</p>\n<h3 id=\"response\">Response</h3>\n<p>The response of the request is a JSON object with the following schema:</p>\n<p>Code :</p>\n<ul>\n<li><p>\"code\": 403, \"message\": \"FORBIDDEN\", \"data\": \"CONSUMER_NOT_VALID\"</p>\n</li>\n<li><p>\"code\" 400 , \"message\": \"FILTER MALFORMED: operator NOT PRESENT\",</p>\n</li>\n<li><p>\"code\" 200 , \"message\" : \"DATA_OK\"</p>\n</li>\n</ul>\n<p>Data :</p>\n<p>Object File for filters and get filtered data</p>\n<p><strong>CreatedAt</strong>: Date when the record was created.</p>\n<p><strong>UpdatedAt</strong>: Date of the last update to the record containing the file. For example, if you change the file’s name.</p>\n<p><strong>UpdatedFileAt</strong>: Date when the file itself was updated. For example, if the file content was modified.</p>\n<p><strong>Token</strong>: Unique ID of the file.</p>\n<p><strong>File</strong>: File name saved on the server.</p>\n<p><strong>NameFile</strong>: Original name of the file.</p>\n<p><strong>Name_es</strong>: File name in a specific language, using a 2-digit ISO language code (e.g., “es” for Spanish).</p>\n<p><strong>FiletypeID</strong>:</p>\n<p>• <strong>1</strong>: Image (jpg, jpeg, png, gif, tiff, tif, webp).</p>\n<p>• <strong>2</strong>: Video (mp4, m4v).</p>\n<p>• <strong>3</strong>: PDF.</p>\n<p>• <strong>4</strong>: Other documents (xls, xlsx, ppt, pptx, ppsa, dsklib, dwg, stp, mtl, obj).</p>\n<p><strong>Is3d</strong>: Only applicable for 3D OBJ files.</p>\n<p><strong>Link</strong>: Filled only if the file is hosted externally, e.g., on Vimeo or YouTube.</p>\n<p><strong>Share</strong>: 1 (True), 0 (False). Indicates if the file can be shared.</p>\n<p><strong>Position</strong>: Global file position.</p>\n<p><strong>SizeFile</strong>: File size in kilobytes (KB).</p>\n<p><strong>Autofile</strong>: Indicates if the file is generated automatically, e.g., a video thumbnail.</p>\n<p><strong>EnabledAllLanguages</strong>:</p>\n<p>• <strong>1</strong>: True, the file is global and used for all languages.</p>\n<p>• <strong>0</strong>: False, not enabled for all languages.</p>\n<p><strong>EnabledAllValues</strong>: • <strong>1</strong>: True, the file is enabled for all geopositions (groups).</p>\n<ul>\n<li><p><strong>IsDownloadable</strong>: <strong>1</strong>: True, the file can be downloaded to the device.</p>\n</li>\n<li><p><strong>StaticLink</strong>: <strong>1</strong>: True, a static link is enabled. The URL never expires.</p>\n</li>\n<li><p><strong>FileStaticUrl</strong>: Public static URL that never expires.</p>\n</li>\n<li><p><strong>FileUrl</strong>: Private URL with the original file that may expire.</p>\n</li>\n<li><p><strong>FileSizeS</strong>: URL for an image file with dimensions of width 256px x height 192px.</p>\n</li>\n<li><p><strong>FileSizeL</strong>: URL for an image file with dimensions of width 512px x height 384px.</p>\n</li>\n<li><p><strong>FileSizeXL</strong>: URL for an image file with dimensions of width 2048px x height 1536px.</p>\n</li>\n</ul>\n<p><strong>Mode</strong>:</p>\n<p>• <strong>offline</strong>: The file is automatically downloaded to the device during the initial download.</p>\n<p>• <strong>on_demand</strong>: The file downloads only when the user clicks to view it.</p>\n<p>• <strong>online</strong>: The file always requires online access.</p>\n<p>• <strong>no_download</strong>: The file is never downloaded to the device.</p>\n<p>Examples :</p>\n<ul>\n<li><p>Filter by tag :</p>\n<ul>\n<li><p>[{\"operator\": \"=\",\"value\": \"CP51\",\"field_name\": \"TagToken\"}]</p>\n</li>\n<li><p>or use TagTokenWithAND to filter with more than one tag</p>\n</li>\n<li><p>{ \"operator\": \"IN\", \"value\": [\"CP9\",\"CP10\"], \"field_name\": \"TagTokenWithAND\"</p>\n</li>\n</ul>\n</li>\n<li><p>Filter by Type : [{\"operator\": \"=\",\"value\": \"3\",\"field_name\": \"Type\"}]</p>\n</li>\n<li><p>Filter by product : [{\"operator\":\"=\", \"value\":\"CP40282\",\"field_name\":\"ProductToken\"}]</p>\n</li>\n</ul>\n","urlObject":{"protocol":"http","path":["api.php","api","v1","files","getFiles"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"},{"disabled":true,"key":"hash","value":"{{hash}}"}],"variable":[]}},"response":[{"id":"a47bf19a-83e4-4182-b716-ae9d93247be7","name":"Get Files PDF","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\": \"=\",\"value\": \"3\",\"field_name\": \"FiletypeId\"}]","type":"text"},{"key":"limit","value":"100","type":"text"}]},"url":{"raw":"http://{{domain}}/api.php/api/v1/files/getFiles?ssid={{ssid}}","protocol":"http","host":["{{domain}}"],"path":["api.php","api","v1","files","getFiles"],"query":[{"key":"ssid","value":"{{ssid}}"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"66484884-4036-48e4-a68c-ac4d1263442d","name":"Get Files Filtered By Tag","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"1","type":"text"},{"key":"filters","value":"[{\n\t\"operator\": \"!=\",\n\t\"value\": 1,\n\t\"field_name\": \"Autofile\"\n}, {\n\t\"operator\": \"IN\",\n\t\"value\": [\"CP9\"],\n\t\"field_name\": \"TagTokenWithAND\"\n}]","type":"text","disabled":true},{"key":"data_type","value":"csv","type":"text","disabled":true},{"key":"return_internal_urls","value":"true","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\": \"=\",\"value\": \"3\",\"field_name\": \"FiletypeId\"}]","type":"text"}]},"url":{"raw":"http://{{domain}}/api.php/api/v1/files/getFiles?ssid={{ssid}}","protocol":"http","host":["{{domain}}"],"path":["api.php","api","v1","files","getFiles"],"query":[{"key":"ssid","value":"{{ssid}}"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7adf1cf8-c9ac-4640-a611-337fe26599e6","name":"Get file by Product","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"1","type":"text"},{"key":"filters","value":"[{\n\t\"operator\": \"!=\",\n\t\"value\": 1,\n\t\"field_name\": \"Autofile\"\n}, {\n\t\"operator\": \"IN\",\n\t\"value\": [\"CP9\"],\n\t\"field_name\": \"TagTokenWithAND\"\n}]","type":"text","disabled":true},{"key":"data_type","value":"csv","type":"text","disabled":true},{"key":"return_internal_urls","value":"true","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"ANSO109P\",\"field_name\":\"ProductToken\"}]","type":"text"}]},"url":{"raw":"http://{{domain}}/api.php/api/v1/files/getFiles?ssid={{ssid}}","protocol":"http","host":["{{domain}}"],"path":["api.php","api","v1","files","getFiles"],"query":[{"key":"ssid","value":"{{ssid}}"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"cb3eb603-9080-4d40-ab65-a79c2f5b7717"},{"name":"deleteTagFile","id":"db872614-7a83-4cdc-b32d-1dd5ead52c3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"FileToken","value":"CP213208","type":"text"},{"key":"TagToken","value":"CP1","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/files/deleteTagFile?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","files","deleteTagFile"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"db872614-7a83-4cdc-b32d-1dd5ead52c3c"},{"name":"getTags","id":"50d81337-d122-49b0-bb6c-c6462524bbf9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text"},{"key":"filters","value":"[{\"operator\":\"IN\", \"value\":[\"CP1\"],\"field_name\":\"TagToken\"}]","type":"text","disabled":true},{"key":"data_type","value":"csv","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/files/getTags?ssid={{ssid}}","description":"<p>Get Tags for use for filter files</p>\n","urlObject":{"protocol":"http","path":["api.php","api","v1","files","getTags"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"50d81337-d122-49b0-bb6c-c6462524bbf9"},{"name":"addTagFile","id":"7d5df37a-148a-4e97-8e6b-15c83daf363e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text"},{"key":"filters","value":"[{\"operator\":\"IN\", \"value\":[\"CP1\"],\"field_name\":\"TagToken\"}]","type":"text","disabled":true},{"key":"data_type","value":"csv","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/files/addTagFile?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","files","addTagFile"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"7d5df37a-148a-4e97-8e6b-15c83daf363e"},{"name":"createFileByURL","id":"ae33c6ce-2154-44ee-915b-bcab11a8a68e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"FileUrl","value":"https://file-examples-com.github.io/uploads/2017/04/file_example_MP4_480_1_5MG.mp4","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/files/createFileByURL?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","files","createFileByURL"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"ae33c6ce-2154-44ee-915b-bcab11a8a68e"},{"name":"createExternalFileByUrl","id":"8a5b6c87-0693-445e-94a0-b1523dccae6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"FileUrl","value":"https://youtu.be/OYMtx2drP80","type":"text"},{"key":"Language","value":"es","type":"text"},{"key":"Filetype","value":"video","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/files/createExternalFileByUrl?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","files","createExternalFileByUrl"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"8a5b6c87-0693-445e-94a0-b1523dccae6c"},{"name":"setConnectorTokens","id":"aa9b3956-20e3-47ed-a886-b8dd9b281ecb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"file","value":"[{\n\t\"Connector\": \"Woocommerce\",\n\t\"Token\": \"CP13\",\n\t\"WoocommerceToken\": \"1111\"\n}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/files/setConnectorTokens?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","files","setConnectorTokens"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"aa9b3956-20e3-47ed-a886-b8dd9b281ecb"},{"name":"setFiles","id":"37c03c3c-824b-4fe4-9171-9d8b881da3c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n\t\"Token\": \"File1234\",\n\t\"File\": \"https://dam.jovi.es/DocsIMGVersiones/IMG_EXPLORE_SCHOOL-CHALKS_1010_MAIN_WEB.jpg\",\n\t\"FileTypeId\": \"1\"\n}]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/files/setFiles?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","files","setFiles"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"37c03c3c-824b-4fe4-9171-9d8b881da3c8"},{"name":"generatePdf","id":"7242c68d-789e-4340-9118-51e63da14578","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"route\",\"field_name\":\"section\"},{\"operator\":\"=\",\"value\":\"yesterday\",\"field_name\":\"period\"}]","type":"text","disabled":true},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"favorite\",\"field_name\":\"section\"},{\"operator\":\"=\",\"value\":\"product_primary\",\"field_name\":\"type\"},{\"operator\":\"=\",\"value\":\"CP1\",\"field_name\":\"favorite_token\"}]","type":"text"},{"key":"extranet_id","value":"1","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/files/generatePdf?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","files","generatePdf"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"7242c68d-789e-4340-9118-51e63da14578"},{"name":"corruptedImages","id":"9e83dcb9-6876-4deb-883c-8cf3496188a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"only_info","value":"true","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/files/corruptedImages?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","files","corruptedImages"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"9e83dcb9-6876-4deb-883c-8cf3496188a5"}],"id":"c8960195-c4cd-40ed-b6a9-f1444c39f895","description":"<p>Below are the available methods for managing and retrieving content, handling tags, and performing file-related operations using the CatalogPlayer API.</p>\n","_postman_id":"c8960195-c4cd-40ed-b6a9-f1444c39f895"},{"name":"Notification","item":[{"name":"setNotificationsWaiting","id":"2d6316cd-b13c-4a46-aece-23f177dd62c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n    \"Email\": \"sergi3@catalogplayer.com\",\n    \"Subject\": \"Sujeto Test3\",\n    \"Message\": \"Mensaje Test3\",\n    \"Phone\": \"910000000\",\n    \"Token\": \"TestAPI2\",\n    \"NotificationType\": \"CpPDF_PDF\",\n    \"NotificationTransportToken\": \"whatsapp\",\n    \"StatusToken\": \"Pending\",\n    \"InterestToken\": \"1686660976186005\",\n    \"ProductOrderToken\": \"CP30801\",\n    \"WhatsAppToken\": \"TEST WAP API 2\" \n}]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/notification/setNotificationsWaiting?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","notification","setNotificationsWaiting"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"2d6316cd-b13c-4a46-aece-23f177dd62c5"},{"name":"getNotifications","id":"e6214a8d-dc1e-4a5c-a251-4ca5092cb22c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"\",\"field_name\":\"EventToken\"}]","type":"text","disabled":true},{"key":"limit","value":"1","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/notification/getNotifications?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","notification","getNotifications"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"e6214a8d-dc1e-4a5c-a251-4ca5092cb22c"},{"name":"getNotificationsWaiting","id":"237b7a02-b52b-4b9d-84ac-ba87cc2e6910","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"CP494\",\"field_name\":\"Token\"}]","type":"text","description":"<p>[{\"operator\":\"=\", \"value\":\"Pending\",\"field_name\":\"StatusToken\"}]</p>\n"},{"key":"limit","value":"1","type":"text","description":"<p>10</p>\n"},{"key":"extends","value":"[\n    \"Interest\"\n]","description":"<p>Array que añade la información detallada de los elementos indicados. Estos son todos los posibles valores:\n[\"Interest\",\"Mailing\",\"MailingReceiver\"]</p>\n","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/notification/getNotificationsWaiting?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","notification","getNotificationsWaiting"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"237b7a02-b52b-4b9d-84ac-ba87cc2e6910"},{"name":"getRoutines","id":"e6d52947-eb7d-4cfc-a90a-54e8c8e0e330","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"\",\"field_name\":\"EventToken\"}]","type":"text","disabled":true},{"key":"limit","value":"1","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/notification/getRoutines?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","notification","getRoutines"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"e6d52947-eb7d-4cfc-a90a-54e8c8e0e330"},{"name":"setNotificationsStatus","id":"04177af0-41dd-41e1-84b4-c5304b9bda6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"file","value":"[{\"Token\":\"CP69\",\"Status\":\"Read\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/notification/setNotificationsStatus?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","notification","setNotificationsStatus"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"04177af0-41dd-41e1-84b4-c5304b9bda6b"}],"id":"b6f06b9c-d8ff-4c9b-bf18-f5fb0c6761eb","_postman_id":"b6f06b9c-d8ff-4c9b-bf18-f5fb0c6761eb","description":""},{"name":"Order","item":[{"name":"sendNotificationOrder","id":"1d0f7e45-21e6-4371-9fca-5dc839a60dcf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"ProductOrder_1494401672178\",\"field_name\":\"Token\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/order/sendNotificationOrder?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","order","sendNotificationOrder"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"1d0f7e45-21e6-4371-9fca-5dc839a60dcf"},{"name":"getPaymentdueCharges","id":"5c65d4c3-2fb5-40ce-8837-5c9c9d07cc92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"S_AB\",\"field_name\":\"CollectionToken\"}]","type":"text","disabled":true},{"key":"return_tokens","value":"true","type":"text","disabled":true},{"key":"data_type","value":"csv","type":"text","disabled":true},{"key":"download","value":"false","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/order/getPaymentdueCharges?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","order","getPaymentdueCharges"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"5c65d4c3-2fb5-40ce-8837-5c9c9d07cc92"},{"name":"disableAllPaymentdues","id":"fbb87dd2-91a6-48ae-818d-b05b1e44c5e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"1","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"ProductOrder_1494401672178\",\"field_name\":\"Token\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/order/sendNotificationOrder?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","order","sendNotificationOrder"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"fbb87dd2-91a6-48ae-818d-b05b1e44c5e9"},{"name":"setOrdersStatus","id":"301514ca-304b-4444-afc3-7b1fad5acd28","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"file","value":"[{\"ProductOrderToken\":\"ProductOrder_1656942612592001\",\"Status\":\"CP9\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/order/setOrdersStatus?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","order","setOrdersStatus"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"301514ca-304b-4444-afc3-7b1fad5acd28"},{"name":"setOrdersDeliveryStatus","id":"b40ad739-167d-4b36-8de4-83a7e58569b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"file","value":"[{\"ProductOrderToken\":\"ProductOrder_1536160481735\",\"DeliveryStatusToken\":\"Pending\",\"Comment\":\"Test delivery comments\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/order/setOrdersDeliveryStatus?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","order","setOrdersDeliveryStatus"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"b40ad739-167d-4b36-8de4-83a7e58569b3"},{"name":"export","id":"76467d74-4a7c-4d37-b6a6-e91dad4f8c2e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"!=\", \"value\":\"CP4\",\"field_name\":\"Status\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/order/export?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","order","export"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"76467d74-4a7c-4d37-b6a6-e91dad4f8c2e"},{"name":"get","id":"7ff18068-b322-4e16-84f4-04914f841d48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"IN\", \"value\":[\"extranet\"],\"field_name\":\"TypeToken\"},{\"operator\":\"IN\",\"value\":[\"CP6\",\"CP3\"],\"field_name\":\"Status\"}]","type":"text","disabled":true},{"key":"extends","value":"[\n    \"CompanyAddressDefault\"\n]","description":"<p>Array que añade la información detallada de los elementos indicados. Estos son todos los posibles valores:\n[\"Company\",\"CompanyProvider\",\"CompanyAddressDefault\",\"CompanySendAddress\",\"CompanyBillingAddress\",\"ProductOrderStatusHistory\",\"LogStatusOrder\"]</p>\n","type":"text"},{"key":"limit","value":"5","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"11683\",\"field_name\":\"ProductOrderId\"}]","type":"text","disabled":true},{"key":"filters","value":"[{\\\"operator\\\":\\\"=\\\", \\\"value\\\":\\\"CP11682\\\",\\\"field_name\\\":\\\"ProductOrderToken\\\"}]","type":"text","disabled":true},{"key":"exclude_inprogress_validation","value":"true","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\">\", \"value\":\"2020-09-31\",\"field_name\":\"ProductOrderUpdatedAt\"}]","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"\",\"field_name\":\"PendingLines\"}]","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/order/get?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","order","get"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"},{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[],"_postman_id":"7ff18068-b322-4e16-84f4-04914f841d48"},{"name":"checkOrdersToValidation","id":"bc4e79a9-692e-43be-aecf-9d4fc187c68e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"orders_tokens","value":"[\"1C503FFC-50F6-4639-A92C-B3CA7F870720\"]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/order/checkOrdersToValidation?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","order","checkOrdersToValidation"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"bc4e79a9-692e-43be-aecf-9d4fc187c68e"},{"name":"denyOrders","id":"e7817a83-69cc-4271-9461-c34d7c61166f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"orders_tokens","value":"[\"2020-3-66-F\"]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/order/denyOrders?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","order","denyOrders"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"e7817a83-69cc-4271-9461-c34d7c61166f"},{"name":"validateOrders","id":"c6c81a16-4f90-4c35-9d6f-0d3b32903ce7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"orders_tokens","value":"[\"2020-3-66-F\"]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/order/validateOrders?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","order","validateOrders"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"c6c81a16-4f90-4c35-9d6f-0d3b32903ce7"},{"name":"sendPushOrder","id":"62b9febd-585c-42ba-b1d7-cb9d42860a90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"orders_tokens","value":"[\"1C503FFC-50F6-4639-A92C-B3CA7F870720\"]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/order/sendPushOrder?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","order","sendPushOrder"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"62b9febd-585c-42ba-b1d7-cb9d42860a90"},{"name":"getOrderLineResults","id":"2105fd07-0f7c-44c6-b485-fffdfae41406","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"123\",\"field_name\":\"ProductOrderLineToken\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/order/getOrderLineResults?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","order","getOrderLineResults"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"2105fd07-0f7c-44c6-b485-fffdfae41406"},{"name":"getOrderResults","id":"810f8ebe-3f5f-4b86-ad74-f09342e32e57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"123\",\"field_name\":\"ProductOrderToken\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/order/getOrderResults?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","order","getOrderResults"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"810f8ebe-3f5f-4b86-ad74-f09342e32e57"},{"name":"deleteLinesByOrderToken","id":"776a8a0b-f028-413b-b3b5-599cbf54c1d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"ProductOrderToken","value":"ProductOrder_1536160481735","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/order/deleteLinesByOrderToken?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","order","deleteLinesByOrderToken"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"776a8a0b-f028-413b-b3b5-599cbf54c1d5"},{"name":"delete","id":"14fb2811-6afe-412a-864c-a11ac6e43b64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"pedido\",\"field_name\":\"TypeToken\"}]","type":"text"},{"key":"filters","value":"[{\"operator\":\">\", \"value\":\"2025-10-01 12:00:41\",\"field_name\":\"CreatedAt\"}]","type":"text","uuid":"688024d8-ead6-4d92-a045-c0f717d5c51f","disabled":true},{"key":"filters","value":"[{\"operator\":\"IS NULL\", \"value\":\"\",\"field_name\":\"TypeToken\"}]","type":"text","uuid":"1ecd22a8-5b4c-466a-99fd-f4d671a34b60","disabled":true},{"key":"limit","value":"1000","type":"text","uuid":"0201b1da-2e78-47e2-aa8e-41c985b5f83f","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/order/delete?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","order","delete"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"},{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[],"_postman_id":"14fb2811-6afe-412a-864c-a11ac6e43b64"},{"name":"deleteLines","id":"992300c5-e255-4eba-88e4-309bd3eff458","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"1234123123\",\"field_name\":\"ProductOrderTypeToken\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/order/deleteLines?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","order","deleteLines"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"},{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[],"_postman_id":"992300c5-e255-4eba-88e4-309bd3eff458"},{"name":"getInvoices","id":"df298fee-eb34-4da9-828b-8cd205c309d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"IN\", \"value\":[\"extranet\"],\"value\":[\"CP6\",\"CP3\"],\"field_name\":\"Status\"}]","type":"text","disabled":true},{"key":"limit","value":"2","type":"text"},{"key":"filters","value":"[{\"operator\":\">\", \"value\":\"2020-09-31\",\"field_name\":\"UpdatedAtTo\"},{\"operator\":\"<\", \"value\":\"2020-10-30\",\"field_name\":\"UpdatedAtFrom\"}]","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"ProductOrder_1626946220149\",\"field_name\":\"ProductOrderToken\"}]","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/order/getInvoices?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","order","getInvoices"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"df298fee-eb34-4da9-828b-8cd205c309d6"},{"name":"getTypesOrders","id":"5afc13ef-1a9d-4636-81a2-5901be4d86b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\">\", \"value\":\"2020-09-31\",\"field_name\":\"UpdatedAtTo\"},{\"operator\":\"<\", \"value\":\"2020-10-30\",\"field_name\":\"UpdatedAtFrom\"}]","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/order/getTypesOrders?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","order","getTypesOrders"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"5afc13ef-1a9d-4636-81a2-5901be4d86b8"},{"name":"getOrderSeries","id":"a0030921-c955-4be7-9680-0b7371c8b028","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\">\", \"value\":\"2020-09-31\",\"field_name\":\"UpdatedAtTo\"},{\"operator\":\"<\", \"value\":\"2020-10-30\",\"field_name\":\"UpdatedAtFrom\"}]","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/order/getOrderSeries?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","order","getOrderSeries"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"a0030921-c955-4be7-9680-0b7371c8b028"},{"name":"getDeliveryModes","id":"619942e4-c2e5-4c72-913f-d5641b377de6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"TestDelivery\",\"field_name\":\"Token\"}]","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/order/getDeliveryModes?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","order","getDeliveryModes"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"619942e4-c2e5-4c72-913f-d5641b377de6"},{"name":"getStatusOrders","id":"9872d6ba-4ae6-4cff-886a-8b85c9185f40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\">\", \"value\":\"2020-09-31\",\"field_name\":\"UpdatedAtTo\"},{\"operator\":\"<\", \"value\":\"2020-10-30\",\"field_name\":\"UpdatedAtFrom\"}]","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/order/getStatusOrders?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","order","getStatusOrders"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"9872d6ba-4ae6-4cff-886a-8b85c9185f40"},{"name":"getExternalOrderFiles","id":"68b13aa1-6282-4db0-b39d-dc2de4419559","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/order/getExternalOrderFiles?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","order","getExternalOrderFiles"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"68b13aa1-6282-4db0-b39d-dc2de4419559"},{"name":"getLineDeliveryDatesByLot","id":"f03840db-215c-441d-bb2a-7b3d820f65e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"line_token","value":"POL_155561038796916","type":"text"},{"key":"limit","value":"2","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/order/getLineDeliveryDatesByLot?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","order","getLineDeliveryDatesByLot"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"},{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[],"_postman_id":"f03840db-215c-441d-bb2a-7b3d820f65e2"},{"name":"setOrders","id":"51d0711a-57f7-4c96-90d4-6e76410fb701","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[\n    {\n        \"Token\": \"KA7KYBCFVYIMGL12JJGYZQ25WBCLILAY_657\",\n        \"ProductOrderToken\": \"TCUXWOPSN\",\n        \"StatusToken\": \"CP2\"\n    },\n    {\n        \"Token\": \"KA7KYBCFVYIMGL12JJGYZQ25WBCLILAY_657\",\n        \"ProductOrderToken\": \"TCUXWOPSN\",\n        \"StatusToken\": \"CP2\"\n    },\n    {\n        \"Token\": \"TestLine1\",\n        \"ProductOrderToken\": \"Test1\",\n        \"StatusToken\": \"CP2\"\n    },\n    {\n        \"Token\": \"1JCWMMRMPZW3QGLP6G4CQMMYBWSRB2QM_149\",\n        \"ProductOrderToken\": \"SEEALZQQZ\",\n        \"StatusToken\": \"CP2\"\n    }\n]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/order/setOrders?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","order","setOrders"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"51d0711a-57f7-4c96-90d4-6e76410fb701"},{"name":"setTypesOrders","id":"aef08a94-02e8-4d63-b19d-d3d750f3d526","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n\t\"Token\": \"ordenTest\",\n                \"NotifyToAdmin\": \"0\",\n                \"UseForAnalytics\": \"0\",\n                \"Name_en\": \"Test\",\n                \"Name_es\": \"Testes\"\n}]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/order/setTypesOrders?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","order","setTypesOrders"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"aef08a94-02e8-4d63-b19d-d3d750f3d526"},{"name":"setStatusOrders","id":"4c5a9682-75b5-4c03-8812-e3ac2882a688","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n\t\"Token\": \"Test\",\n                \"Level\": \"\",\n                \"OperatorCondition\": \"\",\n                \"MinPrice\": \"\",\n                \"MaxPrice\": \"\",\n                \"UseForAnalytics\": \"0\",\n                \"CheckToreview\": \"0\",\n                \"Name_en\": \"Pendinggggg\",\n                \"Name_es\": \"Pendienteeee\"\n}]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/order/setStatusOrders?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","order","setStatusOrders"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"4c5a9682-75b5-4c03-8812-e3ac2882a688"},{"name":"setOrderSeries","id":"b5b4feda-9e27-4946-bba9-b52d77021d7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n\t\"Token\": \"Test\",\n\t\"Name\": \"TestName\",\n\t\"Description\": \"DescriptionTest\",\n\t\"IsDefault\": \"1\",\n\t\"IsRestrictive\": \"1\",\n\t\"InitValue\": \"10\",\n\t\"NumLengthFormat\": \"4\"\n}]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/order/setOrderSeries?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","order","setOrderSeries"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"b5b4feda-9e27-4946-bba9-b52d77021d7d"}],"id":"767d3c9a-bae9-4b92-bfda-4b975ca39f60","_postman_id":"767d3c9a-bae9-4b92-bfda-4b975ca39f60","description":""},{"name":"Points","item":[{"name":"deletePoints","id":"9d940c2b-a0b5-4fc5-84ab-aa84ea301504","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"Test\",\"field_name\":\"PointlistToken\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/points/deletePoints?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","points","deletePoints"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"9d940c2b-a0b5-4fc5-84ab-aa84ea301504"},{"name":"deletePointsCost","id":"660e19d6-7bbe-463e-995e-d852bbbe45be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"Test\",\"field_name\":\"PointlistToken\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/points/deletePointsCost?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","points","deletePointsCost"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"660e19d6-7bbe-463e-995e-d852bbbe45be"},{"name":"deletePointsValue","id":"b1a37915-6ef7-434b-b5d7-ca1a8d8280f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"Test\",\"field_name\":\"PointlistToken\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/points/deletePointsValue?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","points","deletePointsValue"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"b1a37915-6ef7-434b-b5d7-ca1a8d8280f8"}],"id":"494233e5-8517-454d-aed2-d48a4aa15c3d","_postman_id":"494233e5-8517-454d-aed2-d48a4aa15c3d","description":""},{"name":"Pricelist","item":[{"name":"setTaxes","id":"92e708fe-891a-4579-af2c-c4fedbb5ca06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n\t\t\"Token\": \"Test\",\n\t\t\"TaxValue\": \"5\",\n\t\t\"TaxName\": \"Testing\",\n\t\t\"Surcharge\": 5,\n\t\t\"DepartmentToken\": \"\"\n\t}, {\n\t\t\"Token\": \"\",\n\t\t\"TaxValue\": \"5\",\n\t\t\"TaxName\": \"Testingvoid\",\n\t\t\"Surcharge\": 5,\n\t\t\"DepartmentToken\": \"\"\n\t},\n\t{\n\t\t\"Token\": \"TestDepartmentMal\",\n\t\t\"TaxValue\": \"5\",\n\t\t\"TaxName\": \"Testing\",\n\t\t\"Surcharge\": 5,\n\t\t\"DepartmentToken\": \"GrupoInexistente\"\n\t},\n\t{\n\t\t\"Token\": \"TestDepartment\",\n\t\t\"TaxValue\": \"10\",\n\t\t\"TaxName\": \"Testing\",\n\t\t\"Surcharge\": 2,\n\t\t\"DepartmentToken\": \"CP1\"\n\t}\n]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/pricelist/setTaxes?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","pricelist","setTaxes"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"92e708fe-891a-4579-af2c-c4fedbb5ca06"},{"name":"setPrices","id":"3da1607f-bbc6-42c0-af01-7d4a9837f1b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n\t\"ProductToken\": \"71FC1411_COLOR:C-050_TALLA:T-4023\",\n\t\"WoocommerceToken\": \"TestImportTax\"\n}]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/pricelist/setPrices?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","pricelist","setPrices"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"3da1607f-bbc6-42c0-af01-7d4a9837f1b3"},{"name":"setPricelists","id":"c9577915-e9fb-4cb5-b2bc-711e45b2be9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n   \"Token\": \"0\",\n   \"Name\": \"Test Pricelist\",\n   \"PricelistTypeToken\": \"\"\n}]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/pricelist/setPricelists?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","pricelist","setPricelists"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"c9577915-e9fb-4cb5-b2bc-711e45b2be9c"},{"name":"deletePrices","id":"f26a209d-6241-480f-98f7-89f4db9489ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"NOT IN\", \"value\":[\"CP1\",\"CP2\",\"CP3\",\"CP4\"],\"field_name\":\"PricelistToken\"}]","type":"text"},{"key":"execute_background","value":"true","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/pricelist/deletePrices?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","pricelist","deletePrices"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"f26a209d-6241-480f-98f7-89f4db9489ca"},{"name":"deleteAllPrices","id":"e5b041a3-664d-463d-89d1-f22ab42a5170","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"NOT IN\", \"value\":[\"CP1\",\"CP2\",\"CP3\",\"CP4\"],\"field_name\":\"PricelistToken\"}]","type":"text"},{"key":"execute_background","value":"true","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/pricelist/deleteAllPrices?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","pricelist","deleteAllPrices"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"e5b041a3-664d-463d-89d1-f22ab42a5170"},{"name":"setTaxConnectorTokens","id":"785b80c1-0e9f-43d2-b0d2-a09a9e2169d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"file","value":"[{\n\t\"Connector\": \"Woocommerce\",\n\t\"Token\": \"IVAN\",\n\t\"WoocommerceToken\": \"1234\"\n},\n{\n\t\"Connector\": \"Prestashop\",\n\t\"Token\": \"IVAN\",\n\t\"PrestashopToken\": \"456\"\n}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/pricelist/setTaxConnectorTokens?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","pricelist","setTaxConnectorTokens"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"785b80c1-0e9f-43d2-b0d2-a09a9e2169d3"},{"name":"get","id":"3c5cd3bd-d17e-4bae-9d54-8717e4be3d4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"S_AB\",\"field_name\":\"CollectionToken\"}]","type":"text","disabled":true},{"key":"return_tokens","value":"true","type":"text","disabled":true},{"key":"data_type","value":"csv","type":"text","disabled":true},{"key":"download","value":"false","type":"text","disabled":true},{"key":"ignore_max_limit","value":"true","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/pricelist/get?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","pricelist","get"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"3c5cd3bd-d17e-4bae-9d54-8717e4be3d4f"},{"name":"deleteMinPrices","id":"bdab829e-f2a3-4ecb-b935-2ca5c7bf929f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"404\",\"field_name\":\"UserToken\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/analytics/deleteRankingVisits?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","analytics","deleteRankingVisits"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"bdab829e-f2a3-4ecb-b935-2ca5c7bf929f"},{"name":"deletePriceQuantity","id":"b8420949-8be1-442b-a052-0dfdfb828658","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"404\",\"field_name\":\"UserToken\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/pricelist/deletePriceQuantity?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","pricelist","deletePriceQuantity"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"b8420949-8be1-442b-a052-0dfdfb828658"},{"name":"get","id":"0c1d19a5-2070-4a90-9761-6d651d72d05c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"S_AB\",\"field_name\":\"CollectionToken\"}]","type":"text","disabled":true},{"key":"return_tokens","value":"true","type":"text","disabled":true},{"key":"data_type","value":"csv","type":"text","disabled":true},{"key":"download","value":"false","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/pricelist/get?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","pricelist","get"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"0c1d19a5-2070-4a90-9761-6d651d72d05c"},{"name":"getTaxes","id":"78c2f47d-54ca-4996-85a6-7d83a68b1e7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"S_AB\",\"field_name\":\"CollectionToken\"}]","type":"text","disabled":true},{"key":"return_tokens","value":"true","type":"text","disabled":true},{"key":"data_type","value":"csv","type":"text","disabled":true},{"key":"download","value":"false","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/pricelist/getTaxes?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","pricelist","getTaxes"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"78c2f47d-54ca-4996-85a6-7d83a68b1e7c"},{"name":"getPrices","id":"8ffaa6b3-3235-4efd-84c6-099d6161789b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"1","type":"text"},{"key":"filters","value":"[{\"operator\":\"IS NULL\", \"value\":\"8\",\"field_name\":\"CompanyToken\"}]","type":"text","disabled":true},{"key":"return_tokens","value":"true","type":"text","disabled":true},{"key":"data_type","value":"csv","type":"text","disabled":true},{"key":"download","value":"false","type":"text","disabled":true},{"key":"ignore_max_limit","value":"true","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\"IN\", \"value\":[\"CP2000\",\"extranet\"],\"field_name\":\"PricelistToken\"},{\"operator\":\"=\",\"value\":1,\"field_name\":\"Active\"}]","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/pricelist/getPrices?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","pricelist","getPrices"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"8ffaa6b3-3235-4efd-84c6-099d6161789b"},{"name":"setMinPrices","id":"13434315-e308-4abd-8a59-c1054ac686d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n\t\"ProductToken\": \"TEST1\",\n\t\"WarehouseToken\": \"CP1\",\n\t\"Quantity\": \"2\"\n}]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/pricelist/setMinPrices?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","pricelist","setMinPrices"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"13434315-e308-4abd-8a59-c1054ac686d9"}],"id":"eff022f0-eb68-4e88-972b-5afc1103ab0e","_postman_id":"eff022f0-eb68-4e88-972b-5afc1103ab0e","description":""},{"name":"Product","item":[{"name":"getProductUnits","id":"f53b33fe-33b9-462c-9f3d-62632c570ac4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"1","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"photo\",\"field_name\":\"CatalogSectionToken\"}]","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/product/getProductUnits?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","getProductUnits"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"f53b33fe-33b9-462c-9f3d-62632c570ac4"},{"name":"disabledProductsExceptPacks","id":"6663c41b-3d3d-47c1-8ccd-adac695a7839","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\n\t\"operator\": \"=\",\n\t\"value\": \"011\",\n\t\"field_name\": \"CollectionToken\"\n}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/product/disabledProductsExceptPacks?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","disabledProductsExceptPacks"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"6663c41b-3d3d-47c1-8ccd-adac695a7839"},{"name":"deleteProductUnits","id":"8cbafc9e-06e5-47e9-9fe0-d1fc7b57a767","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"1","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"photo\",\"field_name\":\"CatalogSectionToken\"}]","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/product/deleteProductUnits?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","deleteProductUnits"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"8cbafc9e-06e5-47e9-9fe0-d1fc7b57a767"},{"name":"get","id":"e487b81f-bdae-4eef-b79a-9cebeb614a62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"jwt","jwt":{"basicConfig":[{"key":"algorithm","value":"<algorithm>"},{"key":"isSecretBase64Encoded","value":"<is-secret-base64encoded>"},{"key":"payload","value":"<payload>"},{"key":"addTokenTo","value":"<add-token-to>"},{"key":"headerPrefix","value":"<header-prefix>"},{"key":"queryParamKey","value":"<query-param-key>"},{"key":"header","value":"<header>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2000","type":"text"},{"key":"offset","value":"1","type":"text"},{"key":"return_tokens","value":"true","type":"text","disabled":true},{"key":"return_attributes","value":"true","type":"text","description":"<p>Este parámetro simplifica la información de los atributos y la formatea de forma más visual, con el token incorporado en la propia columna. \nEjemplo: \"AttributeValue_es_Genero\": \"Mujer\"</p>\n","disabled":true},{"key":"return_internalurl_images","value":"true","type":"text","disabled":true},{"key":"ignore_max_limit","value":"true","type":"text","disabled":true},{"key":"return_primary","value":"true","type":"text","disabled":true},{"key":"offset","value":"true","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\"LIKE\", \"value\":\"%3%\",\"field_name\":\"Name_es\"}]","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"1\",\"field_name\":\"NotInWoocommerce\"}]","type":"text","disabled":true},{"key":"return_relateds","value":"true","type":"text","disabled":true},{"key":"return_total","value":"true","type":"text","disabled":true},{"key":"lite_mode","value":"true","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"CP3\",\"field_name\":\"CatalogToken\"},{\"operator\":\"=\", \"value\":\"136098\",\"field_name\":\"ProductPrimaryToken\"}]\n","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\"IN\", \"value\":\"[1,0]\",\"field_name\":\"Active\"},{\"operator\":\"=\",\"value\":\"(03984B\",\"field_name\":\"Token\"}]","type":"text","uuid":"54f44029-2d90-4c26-a900-5aee8191497d","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/product/get?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","get"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"e487b81f-bdae-4eef-b79a-9cebeb614a62"},{"name":"setInitialPhotoByFirstRef","id":"cbe74c1a-ea94-4dac-ac30-c335573a1a91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"catalog_id","value":"1","type":"text"},{"key":"catalog_token","value":"CP2","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/product/setInitialPhotoByFirstRef?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","setInitialPhotoByFirstRef"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"cbe74c1a-ea94-4dac-ac30-c335573a1a91"},{"name":"getUnits","id":"59662359-747c-47dc-9d2a-9abc5897ed03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"CP1\",\"field_name\":\"Token\"}]","type":"text","disabled":true},{"key":"return_tokens","value":"true","type":"text","disabled":true},{"key":"data_type","value":"csv","type":"text","disabled":true},{"key":"download","value":"false","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/product/getUnits?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","getUnits"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"59662359-747c-47dc-9d2a-9abc5897ed03"},{"name":"getProductGroupeds","id":"d551824b-dab5-4064-9fe0-795a6824f973","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"S_AB\",\"field_name\":\"CollectionToken\"}]","type":"text","disabled":true},{"key":"return_tokens","value":"true","type":"text","disabled":true},{"key":"data_type","value":"csv","type":"text","disabled":true},{"key":"download","value":"false","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/product/getProductGroupeds?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","getProductGroupeds"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"d551824b-dab5-4064-9fe0-795a6824f973"},{"name":"getProductTypes","id":"30792f78-8a72-45d3-b48e-0345dfc98763","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"S_AB\",\"field_name\":\"CollectionToken\"}]","type":"text","disabled":true},{"key":"return_tokens","value":"true","type":"text","disabled":true},{"key":"data_type","value":"csv","type":"text","disabled":true},{"key":"download","value":"false","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/product/getProductTypes?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","getProductTypes"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"30792f78-8a72-45d3-b48e-0345dfc98763"},{"name":"getConfigsProductTypes","id":"549491db-51e1-4fe4-b63f-f0010599d233","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"S_AB\",\"field_name\":\"CollectionToken\"}]","type":"text","disabled":true},{"key":"return_tokens","value":"true","type":"text","disabled":true},{"key":"data_type","value":"csv","type":"text","disabled":true},{"key":"download","value":"false","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/product/getProductTypes?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","getProductTypes"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"549491db-51e1-4fe4-b63f-f0010599d233"},{"name":"getConfigsProductSections","id":"272400ef-8e6a-4265-bb17-b3abba6e0c49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"S_AB\",\"field_name\":\"CollectionToken\"}]","type":"text","disabled":true},{"key":"return_tokens","value":"true","type":"text","disabled":true},{"key":"data_type","value":"csv","type":"text","disabled":true},{"key":"download","value":"false","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/product/getConfigsProductSections?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","getConfigsProductSections"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"272400ef-8e6a-4265-bb17-b3abba6e0c49"},{"name":"getProductSections","id":"387b1119-b1ef-4706-adde-b5782f7200be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"S_AB\",\"field_name\":\"CollectionToken\"}]","type":"text","disabled":true},{"key":"return_tokens","value":"true","type":"text","disabled":true},{"key":"data_type","value":"csv","type":"text","disabled":true},{"key":"download","value":"false","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/product/getProductSections?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","getProductSections"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"387b1119-b1ef-4706-adde-b5782f7200be"},{"name":"getProductsRelated","id":"b8727d54-b590-4f96-8e3d-92032a3951ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"S_AB\",\"field_name\":\"CollectionToken\"}]","type":"text","disabled":true},{"key":"return_tokens","value":"true","type":"text","disabled":true},{"key":"data_type","value":"csv","type":"text","disabled":true},{"key":"download","value":"false","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/product/getProductsRelated?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","getProductsRelated"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"b8727d54-b590-4f96-8e3d-92032a3951ed"},{"name":"getSectionTypes","id":"cd838479-360b-4349-95a0-cd8d51ed368b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"S_AB\",\"field_name\":\"CollectionToken\"}]","type":"text","disabled":true},{"key":"return_tokens","value":"true","type":"text","disabled":true},{"key":"data_type","value":"csv","type":"text","disabled":true},{"key":"download","value":"false","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/product/getProductSections?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","getProductSections"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"cd838479-360b-4349-95a0-cd8d51ed368b"},{"name":"set","id":"8c2f543f-d1a0-4e56-b18a-0705af1a35a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"IN\", \"value\":\"02-710.080\",\"field_name\":\"Token\"}]","type":"text"},{"key":"fields","value":"[{ \"value\":\"11\",\"field\":\"UnitsInitOrange\"},{ \"value\":\"5\",\"field\":\"UnitsInitRed\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/product/set?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","set"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"8c2f543f-d1a0-4e56-b18a-0705af1a35a1"},{"name":"setConnectorTokens","id":"b2497ce6-5b0f-4500-b26f-911ff108df90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"file","value":"[{\n\t\t\"Connector\": \"Woocommerce\",\n\t\t\"ProductToken\": \"0008 150.03D\",\n\t\t\"Token\": \"123456\",\n\t},\n\t{\n\t\t\"Connector\": \"Prestashop\",\n\t\t\"ProductPrimaryToken\": \"9053986\",\n\t\t\"Token\": \"654321\"\n\t},\n\t{\n\t\t\"Connector\": \"Woocommerce\",\n\t\t\"ProductToken\": \"9111172\",\n\t\t\"Token\": \"Test123\",\n\t\t\"Lang\": \"es\"\n\t},\n\t{\n\t\t\"Connector\": \"Prestashop\",\n\t\t\"ProductPrimaryToken\": \"9053988\",\n\t\t\"Token\": \"Test654321\",\n\t\t\"Lang\": \"es\"\n\t}\n]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/product/setConnectorTokens?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","setConnectorTokens"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"b2497ce6-5b0f-4500-b26f-911ff108df90"},{"name":"deleteStocksAndLots","id":"f3d309b2-0b61-4bc7-adc9-52c6d434bfad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"CPMORA-PT50922122501\",\"field_name\":\"Token\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/product/deleteStocksAndLots?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","deleteStocksAndLots"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"f3d309b2-0b61-4bc7-adc9-52c6d434bfad"},{"name":"getFiles","id":"8d1eacf6-f0f5-4b4f-9956-918cc4833f66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"true\",\"field_name\":\"FileNotInPrestashop\"}]","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"photo\",\"field_name\":\"CatalogSectionToken\"}]","type":"text"},{"key":"limit","value":"1","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/product/getFiles?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","getFiles"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"8d1eacf6-f0f5-4b4f-9956-918cc4833f66"},{"name":"getFilesReferences","id":"925e2356-0fb8-4f70-839d-1e9db8340353","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"4","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"ANSO109P\",\"field_name\":\"ProductToken\"}]","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/product/getFilesReferences?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","getFilesReferences"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"925e2356-0fb8-4f70-839d-1e9db8340353"},{"name":"deleteAllProductsCollections","id":"19375ebe-bc70-455c-9542-6c60760a2ff8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"1","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/product/deleteAllProductsCollections?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","deleteAllProductsCollections"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"19375ebe-bc70-455c-9542-6c60760a2ff8"},{"name":"deleteAllPointsProducts","id":"f20d4721-e637-4fa0-a240-3addc588cf93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/product/deleteAllPointsProducts?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","deleteAllPointsProducts"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"f20d4721-e637-4fa0-a240-3addc588cf93"},{"name":"deleteAllPromotions","id":"9a22b573-88ed-4ea9-a486-f096afaf57e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/product/deleteAllPromotions?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","deleteAllPromotions"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"9a22b573-88ed-4ea9-a486-f096afaf57e1"},{"name":"disabledAllProducts","id":"a7a7ec99-8ce9-4dc8-8eee-5a6f69efc949","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/product/disabledAllProducts?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","disabledAllProducts"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"a7a7ec99-8ce9-4dc8-8eee-5a6f69efc949"},{"name":"deleteDiscounts","id":"1e9c2b8d-507a-4ff8-a467-8e4eabe884ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"IS NULL\", \"value\":null,\"field_name\":\"CompanyId\"},{\"operator\":\"!=\", \"value\":\"CP1\",\"field_name\":\"DiscountlistToken\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/product/deleteDiscounts?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","deleteDiscounts"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"1e9c2b8d-507a-4ff8-a467-8e4eabe884ca"},{"name":"deleteAllGrouped","id":"63ed6e85-1569-48cf-a127-639a14a1207d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/product/deleteAllGrouped?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","deleteAllGrouped"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"63ed6e85-1569-48cf-a127-639a14a1207d"},{"name":"deleteAllReferencesRelatedReferences","id":"94df0341-d671-422f-a4ea-5ac9397472ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/product/deleteAllReferencesRelatedReferences?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","deleteAllReferencesRelatedReferences"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"94df0341-d671-422f-a4ea-5ac9397472ae"},{"name":"deleteAttributeRelations","id":"cde26366-def1-4f59-9af8-c1c115e79ee2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"TEMPORADA\",\"field_name\":\"AttributeToken\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/product/deleteAttributeRelations?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","deleteAttributeRelations"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"cde26366-def1-4f59-9af8-c1c115e79ee2"},{"name":"setProducts","id":"bb433f3e-c3c7-4af4-9f2a-6e45b4bf534e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[\n    {\n        \"Token\": \"112103A30000\",\n        \"ProductSection_T2_INFO_es\": \"Test info section\"\n    }\n]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/product/setProducts?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","setProducts"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"bb433f3e-c3c7-4af4-9f2a-6e45b4bf534e"},{"name":"setProductUnits","id":"93fb6161-7048-4d3d-8f28-ef590402753c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[\n    {\n        \"ProductToken\": \"CP7155\",\n        \"UnitsToken\": \"test\",\n        \"MinQuantity\": \"100\",\n        \"Quantity\": \"101\",\n        \"ExtraCharge\": \"9\",\n        \"Position\": \"123\",\n        \"CompanyToken\": \"10890\"\n    }\n]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/product/setProductUnits?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","setProductUnits"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"93fb6161-7048-4d3d-8f28-ef590402753c"},{"name":"setRelatedReferences","id":"8e2ad3cb-1200-4279-9613-89e809fdadd7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n  \"Token\": \"Test\",\n  \"ProductPrimaryToken\": \"ENRCOMPACTAA\",\n  \"ProductToken\": \"E300461002\",\n  \"ProductRelatedTypeToken\": \"CP1\" \n}]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/product/setRelatedReferences?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","product","setRelatedReferences"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"8e2ad3cb-1200-4279-9613-89e809fdadd7"}],"id":"82f0e235-ba37-487e-8356-bf3d0ab820dd","_postman_id":"82f0e235-ba37-487e-8356-bf3d0ab820dd","description":""},{"name":"Promotion","item":[{"name":"getCoupons","id":"c83b1703-2e89-4689-9102-ebe00c7b4c9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"1","type":"text","disabled":true},{"key":"filters","value":"[{\n\t\"operator\": \"=\",\n\t\"value\": \"CP728\",\n\t\"field_name\": \"Token\"\n}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/promotion/getCoupons?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","promotion","getCoupons"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"c83b1703-2e89-4689-9102-ebe00c7b4c9e"},{"name":"setCoupons","id":"efaac07a-d1d0-45de-94e4-3dbc129f14a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"file","value":"[\n    {\n        \"Token\": \"test\",\n        \"PromotionlistToken\": \"CP1\",\n        \"Code\": \"test\",\n        \"Active\": \"1\",\n        \"ApplyByDefault\": \"0\",\n        \"CompanyToken\": \"930011\",\n        \"StartAt\": \"2024-04-04 11:11:11\",\n        \"EndAt\": \"2025-04-04 11:11:11\",\n        \"Name_es\": \"test ES\",\n        \"Name_en\": \"test EN\"\n    }\n]","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/promotion/setCoupons?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","promotion","setCoupons"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"efaac07a-d1d0-45de-94e4-3dbc129f14a0"},{"name":"getPromotions","id":"4468fd55-bb36-4a58-bfb6-3e99d79e3602","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"10","type":"text"},{"key":"filters","value":"[{\n\t\"operator\": \"=\",\n\t\"value\": \"CP728\",\n\t\"field_name\": \"PromotionToken\"\n}]","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/promotion/getPromotions?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","promotion","getPromotions"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"4468fd55-bb36-4a58-bfb6-3e99d79e3602"},{"name":"disablePromotionlists","id":"bdc55ec0-242e-493e-a6ee-b6fe88fad7f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"404\",\"field_name\":\"UserToken\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/promotion/disablePromotionlists?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","promotion","disablePromotionlists"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"bdc55ec0-242e-493e-a6ee-b6fe88fad7f9"},{"name":"disableCoupons","id":"9e712d30-9a2c-4800-9220-2f0f94078c8f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"404\",\"field_name\":\"Token\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/promotion/disableCoupons?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","promotion","disableCoupons"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"9e712d30-9a2c-4800-9220-2f0f94078c8f"},{"name":"setPromotionlists","id":"1ce806a7-c3a6-4e06-96a1-17bfd2118917","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n\t\"Token\": \"Test\",\n\t\"ApplyToAll\": \"0\"\n}]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/promotion/setPromotionlists?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","promotion","setPromotionlists"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"1ce806a7-c3a6-4e06-96a1-17bfd2118917"},{"name":"setPromotionlistConnectorTokens","id":"15934ec0-2b1b-4893-8a5b-072f88bda951","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n    \"Connector\": \"Prestashop\",\n    \"Token\": \"CP728\",\n    \"PrestashopToken\": \"9876543210\" \n}]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/promotion/setPromotionlistConnectorTokens?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","promotion","setPromotionlistConnectorTokens"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"15934ec0-2b1b-4893-8a5b-072f88bda951"},{"name":"setPromotions","id":"311ff06c-6fb7-493a-af91-144b16d6cab1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"file","value":"[\n    {\n                \"CreatedAt\": \"2018-03-01 10:16:36\",\n                \"UpdatedAt\": \"2018-03-01 10:16:36\",\n                \"Token\": \"CP77777\",\n                \"PromotionlistToken\": \"CP3\",\n                \"PromotionlistName\": \"ÁRNICA_TEST 3+1\",\n                \"PromotionlistType\": \"\",\n                \"PromotionlistCode\": \"3+1\",\n                \"PromotionlistPromotionlistTypeToken\": \"8\",\n                \"PromotionlistDescription\": \"\",\n                \"PromotionlistActivationAt\": \"2018-03-01 00:00:00\",\n                \"PromotionlistExpirationAt\": \"2068-03-01 00:00:00\",\n                \"PromotionlistActive\": \"\",\n                \"PromotionlistApplyToAll\": \"1\",\n                \"PromotionlistHidden\": \"1\",\n                \"PromotionlistApplyDiscounts\": \"\",\n                \"PromotionlistDiscountValue\": \"\",\n                \"PromotionCondition_1_Token\": \"\",\n                \"PromotionCondition_1_MinQuant\": \"3\",\n                \"PromotionCondition_1_MaxQuant\": \"3\",\n                \"PromotionCondition_1_MinPrice\": \"\",\n                \"PromotionCondition_1_MaxPrice\": \"\",\n                \"PromotionCondition_1_UniqueCollection\": \"\",\n                \"PromotionCondition_1_UniqueProduct\": \"\",\n                \"PromotionCondition_1_MaxPercentage\": \"\",\n                \"PromotionCondition_1_Product_1_Token\": \"PA.FIT.ARN\",\n                \"PromotionCondition_1_Product_1_Value\": \"\",\n                \"PromotionCondition_1_Product_1_MinQuant\": \"\",\n                \"PromotionBenefit_1_Token\": \"\",\n                \"PromotionBenefit_1_TypeToken\": \"\",\n                \"PromotionBenefit_1_Percentage\": \"1\",\n                \"PromotionBenefit_1_Discount\": \"1\",\n                \"PromotionBenefit_1_Discount2\": \"\",\n                \"PromotionBenefit_1_Discount3\": \"\",\n                \"PromotionBenefit_1_Points\": \"\",\n                \"PromotionBenefit_1_PointlistToken\": \"\",\n                \"PromotionBenefit_1_Product_1_Token\": \"PA.FIT.ARN\"\n            \n}]","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","src":"/C:/Users/34676/Desktop/promotions.csv","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/promotion/setPromotions?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","promotion","setPromotions"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"311ff06c-6fb7-493a-af91-144b16d6cab1"}],"id":"4b1e85bf-6f6f-45e5-b66c-1b2fa654fff6","_postman_id":"4b1e85bf-6f6f-45e5-b66c-1b2fa654fff6","description":""},{"name":"Route","item":[{"name":"export","id":"95ad8889-ddde-4b32-ad9e-6ed577115def","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/route/export?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","route","export"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"95ad8889-ddde-4b32-ad9e-6ed577115def"},{"name":"delete","id":"92680d6f-c673-4985-b556-be2f11c366c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/route/delete?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","route","delete"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"92680d6f-c673-4985-b556-be2f11c366c2"},{"name":"get","id":"e4f456ae-1e72-4c66-81b9-52ebf94590a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"1","type":"text"},{"key":"filters","value":"[{\"operator\":\">\", \"value\":\"2019-01-19\",\"field_name\":\"Date\"}]","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/route/get?ssid={{ssid}}&limit=10","urlObject":{"protocol":"http","path":["api.php","api","v1","route","get"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"},{"key":"limit","value":"10"}],"variable":[]}},"response":[],"_postman_id":"e4f456ae-1e72-4c66-81b9-52ebf94590a2"}],"id":"66a6bcb0-cfd1-44f3-a4c2-195256a35a9a","_postman_id":"66a6bcb0-cfd1-44f3-a4c2-195256a35a9a","description":""},{"name":"Stock","item":[{"name":"setStocks","id":"c1e21a5d-be31-46c4-9628-16a5f4911ffa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n\t\"ProductToken\": \"AALCR04FMA\",\n\t\"WarehouseToken\": \"\",\n\t\"Quantity\": \"5\"\n}, {\n\t\"ProductToken\": \"AALCR04FMA\",\n\t\"WarehouseToken\": \"0\",\n\t\"Quantity\": \"5\"\n}, {\n\t\"ProductToken\": \"qwieoiw\",\n\t\"WarehouseToken\": \"10\",\n\t\"Quantity\": \"5\"\n}]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/stock/setStocks?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","stock","setStocks"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"c1e21a5d-be31-46c4-9628-16a5f4911ffa"},{"name":"setWarehouses","id":"735a97d0-253c-413b-8128-10eb64a71ac2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n\t\"ProductToken\": \"TEST1\",\n\t\"WarehouseToken\": \"CP1\",\n\t\"Quantity\": \"2\"\n}]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/stock/setStocks?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","stock","setStocks"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"735a97d0-253c-413b-8128-10eb64a71ac2"},{"name":"setLots","id":"99f44d52-59e0-4588-811a-e61d961f1171","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n\t\"Token\": \"TEST\",\n\t\"ProductToken\": \"CP1756\",\n\t\"WarehouseToken\": \"CP1\",\n\t\"Items\": \"2\"\n}]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/stock/setLots?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","stock","setLots"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"99f44d52-59e0-4588-811a-e61d961f1171"},{"name":"getWharehouseDefault","id":"9b422a4e-90fc-4c75-bf41-609ab1e8ef61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"array_by_token","value":"true","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/stock/getWharehouseDefault?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","stock","getWharehouseDefault"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"9b422a4e-90fc-4c75-bf41-609ab1e8ef61"},{"name":"getWharehousesByUsers","id":"318c99b9-caa7-4f07-9859-fd7b6b81a1be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"array_by_token","value":"true","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/stock/getWharehousesByUsers?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","stock","getWharehousesByUsers"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"318c99b9-caa7-4f07-9859-fd7b6b81a1be"},{"name":"get","id":"a52ee6e5-6233-4d4d-a3b6-0f16fb386651","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"CP1\",\"field_name\":\"CatalogToken\"}]","type":"text"},{"key":"data_type","value":"csv","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/stock/get?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","stock","get"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"a52ee6e5-6233-4d4d-a3b6-0f16fb386651"},{"name":"getWarehouses","id":"029d62c0-f7e9-4153-83e2-f2ba3f22db1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"TEST1\",\"field_name\":\"Token\"}]","type":"text"},{"key":"data_type","value":"csv","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/stock/getWarehouses?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","stock","getWarehouses"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"029d62c0-f7e9-4153-83e2-f2ba3f22db1f"}],"id":"ab86c6ca-422c-4782-baa0-54ed511ff98f","_postman_id":"ab86c6ca-422c-4782-baa0-54ed511ff98f","description":""},{"name":"Task","item":[{"name":"get","id":"7f6eb84e-a8e9-4d09-bd2d-43aab72613b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"extends","value":"[\n    \"User\",\n    \"Business\",\n    \"Activity\"\n]","description":"<p>Array que añade la información detallada de los elementos indicados. Estos son todos los posibles valores:\n[\"User\",\"Department\",\"Company\",\"TaskForm\",\"OwnerUser\",\"ParentTask\",\"Route\",\"CompanyAddress\",\"CompanyContact\",\"Catalog\",\"Business\",\"Activity\"]</p>\n","type":"text"},{"key":"limit","value":"10","type":"text"},{"key":"ignore_max_limit","value":"true","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\"IS NOT NULL\", \"value\":\"1\",\"field_name\":\"RouteStatusHistoryToken\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/task/get?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","task","get"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"7f6eb84e-a8e9-4d09-bd2d-43aab72613b2"},{"name":"getOrder","id":"a71d6336-d118-42c6-89c2-b42e10248a84","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"10","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/task/getOrder?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","task","getOrder"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"a71d6336-d118-42c6-89c2-b42e10248a84"}],"id":"24589ffa-693b-4b9f-84dd-8a539ee4b82b","_postman_id":"24589ffa-693b-4b9f-84dd-8a539ee4b82b","description":""},{"name":"Taskform","item":[{"name":"getFields","id":"a72f1a9c-813e-46b1-b34f-c933fc5d71bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"5","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"CP31\",\"field_name\":\"Token\"}]","type":"text"},{"key":"options_formatted","value":"true","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/taskform/getFields?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","taskform","getFields"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"a72f1a9c-813e-46b1-b34f-c933fc5d71bc"},{"name":"addBookChapterResult","id":"7b3acfdf-2eec-4758-9ea7-75e42460c927","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"FieldResultToken","value":"CP30","type":"text"},{"key":"BookChapterToken","value":"CP4525","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/taskform/addBookChapterResult ?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","taskform","addBookChapterResult "],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"7b3acfdf-2eec-4758-9ea7-75e42460c927"},{"name":"getFieldResults","id":"1747a216-ff17-4dbf-8f53-ed7a20a3ea83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"1","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"CJS_2\",\"field_name\":\"CustomerJourneyStepHistoryToken\"}]","type":"text"},{"key":"return_internal_urls","value":"true","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/taskform/getFieldResults?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","taskform","getFieldResults"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"1747a216-ff17-4dbf-8f53-ed7a20a3ea83"}],"id":"ab4476e2-fb51-48e1-ba94-eb730c5b9669","_postman_id":"ab4476e2-fb51-48e1-ba94-eb730c5b9669","description":""},{"name":"User","item":[{"name":"setUsers","id":"71137117-30a0-4f3f-9ed6-b36618da67b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n\t\"User\": \"testing\",\n\t\"Name\": \"Demo\",\n\t\"Email\": \"zaida@catalogplayer.com\",\n\t\"Surname\": \"demo\",\n\t\"Token\": \"testing\",\n\t\"Department_1\": \"CP1\",\n\t\"Department_2\": \"111\",\n\t\"Department_3\": \"210\",\n\t\"Active\": \"1\",\n\t\"Consumer_1\": \"Tablet\",\n\t\"ConsumerRoleToken_1\": \"admin\",\n\t\"Consumer_2\": \"Extranet\",\n\t\"ConsumerRoleToken_2\": \"admin\"\n}]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/user/setUsers?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","user","setUsers"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"71137117-30a0-4f3f-9ed6-b36618da67b9"},{"name":"setExternalUsers","id":"9e853edb-7322-4c9e-ae17-9590a97cf802","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[{\n\t\"User\": \"testing\",\n\t\"Name\": \"Demo\",\n\t\"Email\": \"zaida@catalogplayer.com\",\n\t\"Token\": \"testing\",\n\t\"Active\": \"1\",\n\t\"Consumer_1\": \"Tablet\",\n\t\"RoleToken_1\": \"admin\",\n\t\"Consumer_2\": \"Extranet\",\n\t\"RoleToken_2\": \"admin\"\n}]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/user/setExternalUsers?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","user","setExternalUsers"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"9e853edb-7322-4c9e-ae17-9590a97cf802"},{"name":"login","id":"49fa86dd-729a-4764-b691-3376943d492a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"username","value":"demo","type":"text"},{"key":"password","value":"demo","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/user/login?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","user","login"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"49fa86dd-729a-4764-b691-3376943d492a"},{"name":"loginConsumer","id":"a69d5181-5e8d-419d-9574-c7ac9e05eb7f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"username","value":"customer","type":"text"},{"key":"password","value":"customer","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"consumerToken","value":"customerJourney","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/user/loginConsumer?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","user","loginConsumer"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"a69d5181-5e8d-419d-9574-c7ac9e05eb7f"},{"name":"get","id":"d2f76de3-c827-4d27-b449-ba1491b4ba29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"1","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"98\",\"field_name\":\"Token\"}]","type":"text"},{"key":"data_type","value":"csv","type":"text","disabled":true},{"key":"array_by_token","value":"true","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/user/get?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","user","get"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"d2f76de3-c827-4d27-b449-ba1491b4ba29"},{"name":"getUsersExternals","id":"345059d8-46b9-4b58-8432-25c67e2aac75","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"extends","value":"[\n    \"Company\",\n    \"CompanyAddress\"\n]","description":"<p>Array que añade la información detallada de los elementos indicados. Estos son todos los posibles valores:\n[\"Company\",\"CompanyAddress\"]</p>\n","type":"text"},{"key":"limit","value":"2","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"156\",\"field_name\":\"Token\"}]","type":"text","disabled":true},{"key":"data_type","value":"csv","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/user/getUsersExternals?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","user","getUsersExternals"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"345059d8-46b9-4b58-8432-25c67e2aac75"}],"id":"b66421ef-60dd-4cff-ab24-810adcce5822","_postman_id":"b66421ef-60dd-4cff-ab24-810adcce5822","description":""},{"name":"Transaction","item":[{"name":"get","id":"5bc8a580-14df-4506-98fc-1c7eab447f22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"8677\",\"field_name\":\"Id\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/transaction/get?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","transaction","get"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"5bc8a580-14df-4506-98fc-1c7eab447f22"}],"id":"90ba31c9-90ce-46cc-90da-72e087c56708","_postman_id":"90ba31c9-90ce-46cc-90da-72e087c56708","description":""},{"name":"Note","item":[{"name":"sendScheduledNotes","id":"c2f31c69-73ca-4063-a6f2-76beb7477b9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/note/sendScheduledNotes?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","note","sendScheduledNotes"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"c2f31c69-73ca-4063-a6f2-76beb7477b9f"}],"id":"58ff4c36-ebdb-4c4b-b2c7-75b020f5456c","_postman_id":"58ff4c36-ebdb-4c4b-b2c7-75b020f5456c","description":""},{"name":"Business","item":[{"name":"setBusiness","id":"0c5c50b5-67ee-4fc2-8606-3d6b373a8e90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":"[\n    {\n        \"Token\": \"TestImport\",\n        \"StartAt\": \"2023-04-18 14:53:18\",\n        \"EndAt\": \"\",\n        \"Temperature\": \"15\",\n        \"Potential\": \"0\",\n        \"Quality\": \"0\",\n        \"Active\": \"0\",\n        \"PotentialValue\": \"1000\",\n        \"BusinessStatusToken\": \"\",\n        \"BusinessPhaseToken\": \"\",\n        \"BusinessTargetToken\": \"\",\n        \"BusinessOriginToken\": \"\",\n        \"CompanyToken\": \"0000066\",\n        \"UserToken\": \"3\",\n        \"Name_en\": \"Business 1 Test import\",\n        \"Description_en\": \"Business 1 DEscription test\",\n        \"ContactToken_1\": \"CONTACT_1664457547145001\",\n        \"ContactRoleToken_1\": \"Responsable de desarrollo\",\n        \"BusinessPeriodToken\": \"3-6 month\",\n        \"BusinessTypeToken\": \"EdificiosDeportivos\",\n        \"ProductToken_1\": \"1448T\",\n        \"ProductToken_2\": \"153FP\",\n        \"ProductToken_3\": \"1231231231\",\n        \"CollectionToken_1\": \"M11\",\n        \"CollectionToken_2\": \"M14\",\n        \"CollectionToken_3\": \"1231231231\",\n        \"ZoneToken_1\": \"ZoneTest\",\n        \"ZoneToken_2\": \"123123\",\n        \"Department_1\": \"CP1\",\n        \"Department_2\": \"123123\"\n    }\n]","type":"text"},{"key":"hash","value":"{{hash}}","type":"text"},{"key":"data_type","value":"json","type":"text"},{"key":"execute_now","value":"true","type":"text"},{"key":"nobackup","value":"true","type":"text"},{"key":"file","type":"file","value":null,"disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/business/setBusiness?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","business","setBusiness"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"0c5c50b5-67ee-4fc2-8606-3d6b373a8e90"},{"name":"getBusiness","id":"40a29419-1414-4074-99c0-60c6932094d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"2","type":"text"},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"BUSINESS_1689233228414001\",\"field_name\":\"Token\"}]","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/business/getBusiness?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","business","getBusiness"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"40a29419-1414-4074-99c0-60c6932094d1"}],"id":"3c1d457c-b2d0-463a-89f9-5374f6340543","_postman_id":"3c1d457c-b2d0-463a-89f9-5374f6340543","description":""},{"name":"contact_other","item":[{"name":"getContacts","id":"2882519e-731a-4b3d-8f40-e7484e2cb696","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"1","type":"text","disabled":true},{"key":"filters","value":"[{\"operator\":\"=\", \"value\":\"CONTACT_1664458260949007\",\"field_name\":\"Token\"}]","type":"text"},{"key":"extends","value":"[\n    \"Business\"\n]","description":"<p>Array que añade la información detallada de los elementos indicados. Estos son todos los posibles valores:\n[\"Business\"]</p>\n","type":"text"}]},"url":"http://{{domain}}/api.php/api/v1/contact_other/getContacts?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","contact_other","getContacts"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"2882519e-731a-4b3d-8f40-e7484e2cb696"}],"id":"06b9ee62-573a-4a83-94e3-8dfb7db46fcf","_postman_id":"06b9ee62-573a-4a83-94e3-8dfb7db46fcf","description":""},{"name":"campaign","item":[{"name":"getCampaigns","id":"8fe9f4af-6e04-4460-8fe0-a74f3d88eccd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"{{hash}}","type":"text"},{"key":"limit","value":"1","type":"text","disabled":true}]},"url":"http://{{domain}}/api.php/api/v1/campaign/getCampaigns?ssid={{ssid}}","urlObject":{"protocol":"http","path":["api.php","api","v1","campaign","getCampaigns"],"host":["{{domain}}"],"query":[{"key":"ssid","value":"{{ssid}}"}],"variable":[]}},"response":[],"_postman_id":"8fe9f4af-6e04-4460-8fe0-a74f3d88eccd"},{"name":"New Request","id":"57485754-92f6-497c-b5ce-5537850af6b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"57485754-92f6-497c-b5ce-5537850af6b4"}],"id":"2d4c5779-35ce-48d0-9fe6-69095936465e","_postman_id":"2d4c5779-35ce-48d0-9fe6-69095936465e","description":""}]}