{"info":{"_postman_id":"45676059-1fcf-4a33-b602-ae7407852eb2","name":"VTENEXT restapi","description":"<html><head></head><body><p>These Web services allow you to do HTTP requests to the specified endpoint.\nThese REST webservice are aviable on VTE 18.12 endpoint and further.</p>\n<h1 id=\"overview\">Overview</h1>\n<p>Initial release provides ALL request in POST</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>The requests need Basic authentication. \nIn Postman, you must set Username and Webservice Access Key under \"Authorization\" tab after setted \"Basic Auth\" in \"TYPE\" dropdown field for each request or define this directly in the Collection.</p>\n<h1 id=\"error-codes\">Error Codes</h1>\n<p>403 , 500</p>\n<h1 id=\"rate-limit\">Rate limit</h1>\n<p>None</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Overview","slug":"overview"},{"content":"Authentication","slug":"authentication"},{"content":"Error Codes","slug":"error-codes"},{"content":"Rate limit","slug":"rate-limit"}],"owner":"5234864","collectionId":"45676059-1fcf-4a33-b602-ae7407852eb2","publishedId":"S1TN7MiQ","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"4994DA"},"publishDate":"2019-08-14T14:09:46.000Z"},"item":[{"name":"create","event":[{"listen":"test","script":{"id":"5e50335b-1e4f-44d4-9d8a-2cc080dc0cbb","exec":["// example using pm.response.to.have\r","pm.test(\"Response is OK\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Response is a Valid Json\", function () {\r","     // assert that the status code is 200\r","     pm.response.to.be.ok; // info, success, redirection, clientError,  serverError, are other variants\r","     // assert that the response has a valid JSON body\r","     pm.response.to.be.withBody;\r","     pm.response.to.be.json; // this assertion also checks if a body  exists, so the above check is not needed\r","});\r","\r","pm.test(\"Json has OK Status code\", function () {\r","    var jsonData = pm.response.json();\r","    pm.expect(jsonData.status).to.eql(200);\r","});"],"type":"text/javascript"}}],"id":"2e04011f-f119-42ab-b8c4-6d61f4bd52fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\"elementType\":\"Quotes\",\n\"element\":\"{\\\"subject\\\":\\\"This is a test from Postman\\\",\\\"assigned_user_id\\\":\\\"19x1\\\",\\\"quotestage\\\":\\\"Created\\\",\\\"account_id\\\":\\\"3x26\\\",\\\"bill_street\\\":\\\"Street 1\\\",\\\"ship_street\\\":\\\"Street 2\\\",\\\"product_block\\\":{\\\"products\\\":{\\\"0\\\":{\\\"hdnProductId\\\":{\\\"crmid\\\":\\\"75\\\"},\\\"qty\\\":\\\"2\\\",\\\"listPrice\\\":\\\"200\\\",\\\"taxes\\\":[{\\\"taxname\\\":\\\"tax1\\\",\\\"percentage\\\":\\\"22\\\"}]}},\\\"final_details\\\":{\\\"taxtype\\\":\\\"individual\\\"}}}\"\n}"},"url":"http://my.vtenext.url/restapi/v1/vtews/create","description":"<p>Create a record of the specified module</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"45676059-1fcf-4a33-b602-ae7407852eb2","id":"45676059-1fcf-4a33-b602-ae7407852eb2","name":"VTENEXT restapi","type":"collection"}},"urlObject":{"path":["restapi","v1","vtews","create"],"host":["http://my.vtenext.url"],"query":[],"variable":[]}},"response":[{"id":"fae5cc4a-4ba0-4c73-b666-9327c6e1b52f","name":"upload document attach","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"elementType","value":"Documents","type":"text"},{"key":"filename","type":"file","value":null},{"key":"element","value":"{\"notes_title\": \"test WS\",\"assigned_user_id\": \"19x7\",\"folderid\": \"49x21\",\"filelocationtype\": \"B\",\"backend_name\": \"file\",\"filestatus\": \"1\"}","type":"text"}],"options":{"raw":{"language":"json"}}},"url":"http://my.vtenext.url/restapi/v1/vtews/create"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8c9acce5-c21a-44fe-8372-f6bcfd7e6b2b","name":"create Quote with row","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\"elementType\":\"Quotes\",\n\"element\":\"{\\\"subject\\\":\\\"This is a test from Postman\\\",\\\"assigned_user_id\\\":\\\"19x1\\\",\\\"quotestage\\\":\\\"Created\\\",\\\"account_id\\\":\\\"3x26\\\",\\\"bill_street\\\":\\\"Street 1\\\",\\\"ship_street\\\":\\\"Street 2\\\",\\\"product_block\\\":{\\\"products\\\":{\\\"0\\\":{\\\"hdnProductId\\\":{\\\"crmid\\\":\\\"75\\\"},\\\"qty\\\":\\\"2\\\",\\\"listPrice\\\":\\\"200\\\",\\\"taxes\\\":[{\\\"taxname\\\":\\\"tax1\\\",\\\"percentage\\\":\\\"22\\\"}]}},\\\"final_details\\\":{\\\"taxtype\\\":\\\"individual\\\"}}}\"\n}","options":{"raw":{"language":"json"}}},"url":"http://my.vtenext.url/restapi/v1/vtews/create"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2e04011f-f119-42ab-b8c4-6d61f4bd52fa"},{"name":"delete","event":[{"listen":"test","script":{"id":"c6de4b04-445e-46e6-85a3-8c5f74bbc5ae","exec":["// example using pm.response.to.have\r","pm.test(\"Response is OK\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Response is a Valid Json\", function () {\r","     // assert that the status code is 200\r","     pm.response.to.be.ok; // info, success, redirection, clientError,  serverError, are other variants\r","     // assert that the response has a valid JSON body\r","     pm.response.to.be.withBody;\r","     pm.response.to.be.json; // this assertion also checks if a body  exists, so the above check is not needed\r","});\r","\r","pm.test(\"Json has OK Status code\", function () {\r","    var jsonData = pm.response.json();\r","    pm.expect(jsonData.status).to.eql(200);\r","});"],"type":"text/javascript"}}],"id":"fd8c9877-315d-4808-9250-f838ebd5ce13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\"id\":\"13x149\"}"},"url":"http://my.vtenext.url/restapi/v1/vtews/delete","description":"<p>Delete the specified record.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"45676059-1fcf-4a33-b602-ae7407852eb2","id":"45676059-1fcf-4a33-b602-ae7407852eb2","name":"VTENEXT restapi","type":"collection"}},"urlObject":{"path":["restapi","v1","vtews","delete"],"host":["http://my.vtenext.url"],"query":[],"variable":[]}},"response":[],"_postman_id":"fd8c9877-315d-4808-9250-f838ebd5ce13"},{"name":"describe","event":[{"listen":"test","script":{"id":"692da2b3-eac2-4e88-8fb3-fbf401ffa85d","exec":["// example using pm.response.to.have\r","pm.test(\"Response is OK\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Response is a Valid Json\", function () {\r","     // assert that the status code is 200\r","     pm.response.to.be.ok; // info, success, redirection, clientError,  serverError, are other variants\r","     // assert that the response has a valid JSON body\r","     pm.response.to.be.withBody;\r","     pm.response.to.be.json; // this assertion also checks if a body  exists, so the above check is not needed\r","});\r","\r","pm.test(\"Json has OK Status code\", function () {\r","    var jsonData = pm.response.json();\r","    pm.expect(jsonData.status).to.eql(200);\r","});"],"type":"text/javascript"}}],"id":"7024cc1a-cbab-4118-a8be-b70842551c6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\"elementType\":\"Leads\"}"},"url":"http://my.vtenext.url/restapi/v1/vtews/describe","description":"<p>Describe the specified module and their relative fields.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"45676059-1fcf-4a33-b602-ae7407852eb2","id":"45676059-1fcf-4a33-b602-ae7407852eb2","name":"VTENEXT restapi","type":"collection"}},"urlObject":{"path":["restapi","v1","vtews","describe"],"host":["http://my.vtenext.url"],"query":[],"variable":[]}},"response":[],"_postman_id":"7024cc1a-cbab-4118-a8be-b70842551c6e"},{"name":"describeall","event":[{"listen":"test","script":{"id":"87013c5a-6bb0-4c16-b32d-dcd1757c401e","exec":["// example using pm.response.to.have\r","pm.test(\"Response is OK\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Response is a Valid Json\", function () {\r","     // assert that the status code is 200\r","     pm.response.to.be.ok; // info, success, redirection, clientError,  serverError, are other variants\r","     // assert that the response has a valid JSON body\r","     pm.response.to.be.withBody;\r","     pm.response.to.be.json; // this assertion also checks if a body  exists, so the above check is not needed\r","});\r","\r","pm.test(\"Json has OK Status code\", function () {\r","    var jsonData = pm.response.json();\r","    pm.expect(jsonData.status).to.eql(200);\r","});"],"type":"text/javascript"}}],"id":"8f782fad-6caf-4db8-8fef-2302ddeb1c71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\"elementType\":\"Leads\"}\n"},"url":"http://my.vtenext.url/restapi/v1/vtews/describeall","description":"<p>The describeall method is different from describe one because it shows hidden fields too.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"45676059-1fcf-4a33-b602-ae7407852eb2","id":"45676059-1fcf-4a33-b602-ae7407852eb2","name":"VTENEXT restapi","type":"collection"}},"urlObject":{"path":["restapi","v1","vtews","describeall"],"host":["http://my.vtenext.url"],"query":[],"variable":[]}},"response":[],"_postman_id":"8f782fad-6caf-4db8-8fef-2302ddeb1c71"},{"name":"getlabels","event":[{"listen":"test","script":{"id":"01235fab-4eb2-4d52-b443-1bf093a84c01","exec":["// example using pm.response.to.have\r","pm.test(\"Response is OK\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Response is a Valid Json\", function () {\r","     // assert that the status code is 200\r","     pm.response.to.be.ok; // info, success, redirection, clientError,  serverError, are other variants\r","     // assert that the response has a valid JSON body\r","     pm.response.to.be.withBody;\r","     pm.response.to.be.json; // this assertion also checks if a body  exists, so the above check is not needed\r","});\r","\r","pm.test(\"Json has OK Status code\", function () {\r","    var jsonData = pm.response.json();\r","    pm.expect(jsonData.status).to.eql(200);\r","});"],"type":"text/javascript"}}],"id":"8acedaf4-8e94-49fc-8ed9-91a4aca18a2a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"username\": \"admin\",\n    \"language\": \"en_us\",\n    \"module\": \"Accounts\"\n}"},"url":"http://my.vtenext.url/restapi/v1/vtews/getlabels","description":"<p>Return all labels and translated ones of the specified module,language.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"45676059-1fcf-4a33-b602-ae7407852eb2","id":"45676059-1fcf-4a33-b602-ae7407852eb2","name":"VTENEXT restapi","type":"collection"}},"urlObject":{"path":["restapi","v1","vtews","getlabels"],"host":["http://my.vtenext.url"],"query":[],"variable":[]}},"response":[],"_postman_id":"8acedaf4-8e94-49fc-8ed9-91a4aca18a2a"},{"name":"getlangs","event":[{"listen":"test","script":{"id":"82c26579-adae-4c95-b38f-8b4d25a2ba53","exec":["// example using pm.response.to.have\r","pm.test(\"Response is OK\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Response is a Valid Json\", function () {\r","     // assert that the status code is 200\r","     pm.response.to.be.ok; // info, success, redirection, clientError,  serverError, are other variants\r","     // assert that the response has a valid JSON body\r","     pm.response.to.be.withBody;\r","     pm.response.to.be.json; // this assertion also checks if a body  exists, so the above check is not needed\r","});\r","\r","pm.test(\"Json has OK Status code\", function () {\r","    var jsonData = pm.response.json();\r","    pm.expect(jsonData.status).to.eql(200);\r","});"],"type":"text/javascript"}}],"id":"aa8cec58-3d8e-457a-8040-3cc45c1de4fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"http://my.vtenext.url/restapi/v1/vtews/getlangs","description":"<p>Return all languages installed into VTENEXT.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"45676059-1fcf-4a33-b602-ae7407852eb2","id":"45676059-1fcf-4a33-b602-ae7407852eb2","name":"VTENEXT restapi","type":"collection"}},"urlObject":{"path":["restapi","v1","vtews","getlangs"],"host":["http://my.vtenext.url"],"query":[],"variable":[]}},"response":[],"_postman_id":"aa8cec58-3d8e-457a-8040-3cc45c1de4fa"},{"name":"getmenulist","event":[{"listen":"test","script":{"id":"85d7d34e-88f6-4132-af3d-6f128f48bf99","exec":["// example using pm.response.to.have\r","pm.test(\"Response is OK\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Response is a Valid Json\", function () {\r","     // assert that the status code is 200\r","     pm.response.to.be.ok; // info, success, redirection, clientError,  serverError, are other variants\r","     // assert that the response has a valid JSON body\r","     pm.response.to.be.withBody;\r","     pm.response.to.be.json; // this assertion also checks if a body  exists, so the above check is not needed\r","});\r","\r","pm.test(\"Json has OK Status code\", function () {\r","    var jsonData = pm.response.json();\r","    pm.expect(jsonData.status).to.eql(200);\r","});"],"type":"text/javascript"}}],"id":"19ea6ebd-6066-431d-9a51-3dfcffc67461","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"http://my.vtenext.url/restapi/v1/vtews/getmenulist","description":"<p>Return all modules information (visibility, tabid, name, sequence, ...)</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"45676059-1fcf-4a33-b602-ae7407852eb2","id":"45676059-1fcf-4a33-b602-ae7407852eb2","name":"VTENEXT restapi","type":"collection"}},"urlObject":{"path":["restapi","v1","vtews","getmenulist"],"host":["http://my.vtenext.url"],"query":[],"variable":[]}},"response":[],"_postman_id":"19ea6ebd-6066-431d-9a51-3dfcffc67461"},{"name":"listtypes","event":[{"listen":"test","script":{"id":"1e4802c8-0015-4220-b8f7-5652e4e229c4","exec":["// example using pm.response.to.have\r","pm.test(\"Response is OK\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Response is a Valid Json\", function () {\r","     // assert that the status code is 200\r","     pm.response.to.be.ok; // info, success, redirection, clientError,  serverError, are other variants\r","     // assert that the response has a valid JSON body\r","     pm.response.to.be.withBody;\r","     pm.response.to.be.json; // this assertion also checks if a body  exists, so the above check is not needed\r","});\r","\r","pm.test(\"Json has OK Status code\", function () {\r","    var jsonData = pm.response.json();\r","    pm.expect(jsonData.status).to.eql(200);\r","});"],"type":"text/javascript"}}],"id":"40d39339-1623-4d4d-aba0-d285d2337dbd","request":{"method":"POST","header":[],"body":{"mode":"raw","raw":""},"url":"http://my.vtenext.url/restapi/v1/vtews/listtypes","description":"<p>Return module information of the specified fieldtypes</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"45676059-1fcf-4a33-b602-ae7407852eb2","id":"45676059-1fcf-4a33-b602-ae7407852eb2","name":"VTENEXT restapi","type":"collection"}},"urlObject":{"path":["restapi","v1","vtews","listtypes"],"host":["http://my.vtenext.url"],"query":[],"variable":[]}},"response":[],"_postman_id":"40d39339-1623-4d4d-aba0-d285d2337dbd"},{"name":"loginpwd","event":[{"listen":"test","script":{"id":"1e4802c8-0015-4220-b8f7-5652e4e229c4","exec":["// example using pm.response.to.have\r","pm.test(\"Response is OK\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Response is a Valid Json\", function () {\r","     // assert that the status code is 200\r","     pm.response.to.be.ok; // info, success, redirection, clientError,  serverError, are other variants\r","     // assert that the response has a valid JSON body\r","     pm.response.to.be.withBody;\r","     pm.response.to.be.json; // this assertion also checks if a body  exists, so the above check is not needed\r","});\r","\r","pm.test(\"Json has OK Status code\", function () {\r","    var jsonData = pm.response.json();\r","    pm.expect(jsonData.status).to.eql(200);\r","});"],"type":"text/javascript"}}],"id":"3cd3946b-64bd-46ba-8b77-7cd0718ca164","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\"username\":\"myusername\",\"password\":\"mypassword\"}","options":{"raw":{"language":"json"}}},"url":"http://my.vtenext.url/restapi/v1/vtews/loginpwd","description":"<p>Login via user password.<br />This API give back the accesskey of the user to use for other API requests</p>\n","urlObject":{"path":["restapi","v1","vtews","loginpwd"],"host":["http://my.vtenext.url"],"query":[],"variable":[]}},"response":[],"_postman_id":"3cd3946b-64bd-46ba-8b77-7cd0718ca164"},{"name":"query","event":[{"listen":"test","script":{"id":"1b47f426-0334-4ea4-aa52-caa5cc07ce0b","exec":["// example using pm.response.to.have\r","pm.test(\"Response is OK\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Response is a Valid Json\", function () {\r","     // assert that the status code is 200\r","     pm.response.to.be.ok; // info, success, redirection, clientError,  serverError, are other variants\r","     // assert that the response has a valid JSON body\r","     pm.response.to.be.withBody;\r","     pm.response.to.be.json; // this assertion also checks if a body  exists, so the above check is not needed\r","});\r","\r","pm.test(\"Json has OK Status code\", function () {\r","    var jsonData = pm.response.json();\r","    pm.expect(jsonData.status).to.eql(200);\r","});"],"type":"text/javascript"}}],"id":"68efb9e2-abb0-4a34-98d9-91d44d9885f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\"query\":\"SELECT * FROM Accounts WHERE accountname like '%vte%';\"}"},"url":"http://my.vtenext.url/restapi/v1/vtews/query","description":"<p>Execute a query and return the result’s rows.\nATTENTION: Each request limits its resultset at 1000 rows.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"45676059-1fcf-4a33-b602-ae7407852eb2","id":"45676059-1fcf-4a33-b602-ae7407852eb2","name":"VTENEXT restapi","type":"collection"}},"urlObject":{"path":["restapi","v1","vtews","query"],"host":["http://my.vtenext.url"],"query":[],"variable":[]}},"response":[{"id":"1f875ddf-ea39-4daa-a11b-21012f188626","name":"accounts like vte","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\"query\":\"SELECT * FROM Accounts WHERE accountname like '%vte%';\"}","options":{"raw":{"language":"json"}}},"url":"http://my.vtenext.url/restapi/v1/vtews/query"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Wed, 27 Sep 2023 10:40:58 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"10491"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"Access-Control-Allow-Methods","value":"POST, OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"data\": [\n        {\n            \"accountname\": \"vtecrm\",\n            \"account_no\": \"ACC1\",\n            \"website\": \"www.vtecrm.com\",\n            \"phone\": \"(329) 965-4778\",\n            \"fax\": \"\",\n            \"account_id\": \"\",\n            \"otherphone\": \"\",\n            \"employees\": \"0\",\n            \"email1\": \"\",\n            \"email2\": \"\",\n            \"ownership\": \"\",\n            \"industry\": \"Recreation\",\n            \"rating\": \"\",\n            \"accounttype\": \"\",\n            \"emailoptout\": \"0\",\n            \"annual_revenue\": \"0\",\n            \"crmv_bankdetails\": \"\",\n            \"crmv_vat_registration_number\": \"\",\n            \"crmv_social_security_number\": \"\",\n            \"daily_cost\": \"0.00\",\n            \"external_code\": \"\",\n            \"newsletter_unsubscrpt\": \"0\",\n            \"assigned_user_id\": \"19x1\",\n            \"modifiedtime\": \"2023-08-04 12:54:00\",\n            \"createdtime\": \"2023-08-04 12:54:00\",\n            \"creator\": \"19x1\",\n            \"cf_7py_1123\": \"0\",\n            \"ml1\": \"\",\n            \"bill_street\": \"345 Sugar Blvd.\",\n            \"ship_street\": \"345 Sugar Blvd.\",\n            \"bill_pobox\": \"\",\n            \"ship_pobox\": \"\",\n            \"bill_city\": \"San Jose\",\n            \"ship_city\": \"San Jose\",\n            \"bill_state\": \"CA\",\n            \"ship_state\": \"CA\",\n            \"bill_code\": \"16984\",\n            \"ship_code\": \"16984\",\n            \"bill_country\": \"USA\",\n            \"ship_country\": \"USA\",\n            \"description\": \"\",\n            \"id\": \"3x22\"\n        },\n        {\n            \"accountname\": \"vteCRM Inc\",\n            \"account_no\": \"ACC4\",\n            \"website\": \"www.vtecrminc.com\",\n            \"phone\": \"(976) 474-6249\",\n            \"fax\": \"\",\n            \"account_id\": \"\",\n            \"otherphone\": \"\",\n            \"employees\": \"0\",\n            \"email1\": \"\",\n            \"email2\": \"\",\n            \"ownership\": \"\",\n            \"industry\": \"Finance\",\n            \"rating\": \"\",\n            \"accounttype\": \"\",\n            \"emailoptout\": \"0\",\n            \"annual_revenue\": \"0\",\n            \"crmv_bankdetails\": \"\",\n            \"crmv_vat_registration_number\": \"\",\n            \"crmv_social_security_number\": \"\",\n            \"daily_cost\": \"0.00\",\n            \"external_code\": \"\",\n            \"newsletter_unsubscrpt\": \"0\",\n            \"assigned_user_id\": \"19x1\",\n            \"modifiedtime\": \"2023-08-04 12:54:00\",\n            \"createdtime\": \"2023-08-04 12:54:00\",\n            \"creator\": \"19x1\",\n            \"cf_7py_1123\": \"0\",\n            \"ml1\": \"\",\n            \"bill_street\": \"1715 Scott Dr\",\n            \"ship_street\": \"1715 Scott Dr\",\n            \"bill_pobox\": \"\",\n            \"ship_pobox\": \"\",\n            \"bill_city\": \"Sunnyvale\",\n            \"ship_city\": \"Sunnyvale\",\n            \"bill_state\": \"CA\",\n            \"ship_state\": \"CA\",\n            \"bill_code\": \"93070\",\n            \"ship_code\": \"93070\",\n            \"bill_country\": \"USA\",\n            \"ship_country\": \"USA\",\n            \"description\": \"\",\n            \"id\": \"3x28\"\n        },\n        {\n            \"accountname\": \"demovte\",\n            \"account_no\": \"ACC6\",\n            \"website\": \"www.demovte.com\",\n            \"phone\": \"(681) 980-7247\",\n            \"fax\": \"\",\n            \"account_id\": \"\",\n            \"otherphone\": \"\",\n            \"employees\": \"0\",\n            \"email1\": \"\",\n            \"email2\": \"\",\n            \"ownership\": \"\",\n            \"industry\": \"Government\",\n            \"rating\": \"\",\n            \"accounttype\": \"\",\n            \"emailoptout\": \"0\",\n            \"annual_revenue\": \"0\",\n            \"crmv_bankdetails\": \"\",\n            \"crmv_vat_registration_number\": \"\",\n            \"crmv_social_security_number\": \"\",\n            \"daily_cost\": \"0.00\",\n            \"external_code\": \"\",\n            \"newsletter_unsubscrpt\": \"0\",\n            \"assigned_user_id\": \"22x2\",\n            \"modifiedtime\": \"2023-09-13 12:49:05\",\n            \"createdtime\": \"2023-08-04 12:54:01\",\n            \"creator\": \"19x1\",\n            \"cf_7py_1123\": \"57660\",\n            \"ml1\": \"1\",\n            \"bill_street\": \"345 Sugar Blvd.\",\n            \"ship_street\": \"345 Sugar Blvd.\",\n            \"bill_pobox\": \"\",\n            \"ship_pobox\": \"\",\n            \"bill_city\": \"Sunnyvale\",\n            \"ship_city\": \"Sunnyvale\",\n            \"bill_state\": \"CA\",\n            \"ship_state\": \"CA\",\n            \"bill_code\": \"60544\",\n            \"ship_code\": \"60544\",\n            \"bill_country\": \"USA\",\n            \"ship_country\": \"USA\",\n            \"description\": \"Descrizione di default.\",\n            \"id\": \"3x32\"\n        },\n        {\n            \"accountname\": \"usable-vte\",\n            \"account_no\": \"ACC7\",\n            \"website\": \"www.usable-vte.com\",\n            \"phone\": \"(362) 727-7036\",\n            \"fax\": \"\",\n            \"account_id\": \"\",\n            \"otherphone\": \"\",\n            \"employees\": \"0\",\n            \"email1\": \"\",\n            \"email2\": \"\",\n            \"ownership\": \"\",\n            \"industry\": \"Finance\",\n            \"rating\": \"\",\n            \"accounttype\": \"\",\n            \"emailoptout\": \"0\",\n            \"annual_revenue\": \"0\",\n            \"crmv_bankdetails\": \"\",\n            \"crmv_vat_registration_number\": \"\",\n            \"crmv_social_security_number\": \"\",\n            \"daily_cost\": \"0.00\",\n            \"external_code\": \"\",\n            \"newsletter_unsubscrpt\": \"0\",\n            \"assigned_user_id\": \"19x1\",\n            \"modifiedtime\": \"2023-08-04 12:54:01\",\n            \"createdtime\": \"2023-08-04 12:54:01\",\n            \"creator\": \"19x1\",\n            \"cf_7py_1123\": \"0\",\n            \"ml1\": \"\",\n            \"bill_street\": \"345 Sugar Blvd.\",\n            \"ship_street\": \"345 Sugar Blvd.\",\n            \"bill_pobox\": \"\",\n            \"ship_pobox\": \"\",\n            \"bill_city\": \"San Francisco\",\n            \"ship_city\": \"San Francisco\",\n            \"bill_state\": \"CA\",\n            \"ship_state\": \"CA\",\n            \"bill_code\": \"54611\",\n            \"ship_code\": \"54611\",\n            \"bill_country\": \"USA\",\n            \"ship_country\": \"USA\",\n            \"description\": \"\",\n            \"id\": \"3x34\"\n        },\n        {\n            \"accountname\": \"gooduivte\",\n            \"account_no\": \"ACC8\",\n            \"website\": \"www.gooduivte.com\",\n            \"phone\": \"(504) 121-9839\",\n            \"fax\": \"\",\n            \"account_id\": \"\",\n            \"otherphone\": \"\",\n            \"employees\": \"0\",\n            \"email1\": \"\",\n            \"email2\": \"\",\n            \"ownership\": \"\",\n            \"industry\": \"Machinery\",\n            \"rating\": \"\",\n            \"accounttype\": \"\",\n            \"emailoptout\": \"0\",\n            \"annual_revenue\": \"0\",\n            \"crmv_bankdetails\": \"\",\n            \"crmv_vat_registration_number\": \"\",\n            \"crmv_social_security_number\": \"\",\n            \"daily_cost\": \"0.00\",\n            \"external_code\": \"\",\n            \"newsletter_unsubscrpt\": \"0\",\n            \"assigned_user_id\": \"19x1\",\n            \"modifiedtime\": \"2023-08-04 12:54:01\",\n            \"createdtime\": \"2023-08-04 12:54:01\",\n            \"creator\": \"19x1\",\n            \"cf_7py_1123\": \"0\",\n            \"ml1\": \"\",\n            \"bill_street\": \"123 Anywhere Street\",\n            \"ship_street\": \"123 Anywhere Street\",\n            \"bill_pobox\": \"\",\n            \"ship_pobox\": \"\",\n            \"bill_city\": \"Sunnyvale\",\n            \"ship_city\": \"Sunnyvale\",\n            \"bill_state\": \"CA\",\n            \"ship_state\": \"CA\",\n            \"bill_code\": \"58010\",\n            \"ship_code\": \"58010\",\n            \"bill_country\": \"USA\",\n            \"ship_country\": \"USA\",\n            \"description\": \"\",\n            \"id\": \"3x36\"\n        },\n        {\n            \"accountname\": \"vteuser\",\n            \"account_no\": \"ACC9\",\n            \"website\": \"www.vteuser.com\",\n            \"phone\": \"(340) 116-8070\",\n            \"fax\": \"\",\n            \"account_id\": \"3x22\",\n            \"otherphone\": \"\",\n            \"employees\": \"0\",\n            \"email1\": \"\",\n            \"email2\": \"\",\n            \"ownership\": \"\",\n            \"industry\": \"Engineering\",\n            \"rating\": \"\",\n            \"accounttype\": \"\",\n            \"emailoptout\": \"0\",\n            \"annual_revenue\": \"0\",\n            \"crmv_bankdetails\": \"\",\n            \"crmv_vat_registration_number\": \"\",\n            \"crmv_social_security_number\": \"\",\n            \"daily_cost\": \"0.00\",\n            \"external_code\": \"\",\n            \"newsletter_unsubscrpt\": \"0\",\n            \"assigned_user_id\": \"19x1\",\n            \"modifiedtime\": \"2023-09-19 11:36:48\",\n            \"createdtime\": \"2023-08-04 12:54:01\",\n            \"creator\": \"19x1\",\n            \"cf_7py_1123\": \"0\",\n            \"ml1\": \"0\",\n            \"bill_street\": \"345 Sugar Blvd.\",\n            \"ship_street\": \"345 Sugar Blvd.\",\n            \"bill_pobox\": \"\",\n            \"ship_pobox\": \"\",\n            \"bill_city\": \"San Jose\",\n            \"ship_city\": \"San Jose\",\n            \"bill_state\": \"CA\",\n            \"ship_state\": \"CA\",\n            \"bill_code\": \"16984\",\n            \"ship_code\": \"16984\",\n            \"bill_country\": \"USA\",\n            \"ship_country\": \"USA\",\n            \"description\": \"Nuova descrizione\",\n            \"id\": \"3x38\"\n        },\n        {\n            \"accountname\": \"samplevte\",\n            \"account_no\": \"ACC10\",\n            \"website\": \"www.samplevte.com\",\n            \"phone\": \"(480) 652-9678\",\n            \"fax\": \"\",\n            \"account_id\": \"\",\n            \"otherphone\": \"\",\n            \"employees\": \"0\",\n            \"email1\": \"\",\n            \"email2\": \"\",\n            \"ownership\": \"\",\n            \"industry\": \"Biotechnology\",\n            \"rating\": \"\",\n            \"accounttype\": \"\",\n            \"emailoptout\": \"0\",\n            \"annual_revenue\": \"0\",\n            \"crmv_bankdetails\": \"\",\n            \"crmv_vat_registration_number\": \"\",\n            \"crmv_social_security_number\": \"\",\n            \"daily_cost\": \"0.00\",\n            \"external_code\": \"\",\n            \"newsletter_unsubscrpt\": \"0\",\n            \"assigned_user_id\": \"19x1\",\n            \"modifiedtime\": \"2023-08-04 12:54:01\",\n            \"createdtime\": \"2023-08-04 12:54:01\",\n            \"creator\": \"19x1\",\n            \"cf_7py_1123\": \"0\",\n            \"ml1\": \"\",\n            \"bill_street\": \"1715 Scott Dr\",\n            \"ship_street\": \"1715 Scott Dr\",\n            \"bill_pobox\": \"\",\n            \"ship_pobox\": \"\",\n            \"bill_city\": \"San Mateo\",\n            \"ship_city\": \"San Mateo\",\n            \"bill_state\": \"CA\",\n            \"ship_state\": \"CA\",\n            \"bill_code\": \"14298\",\n            \"ship_code\": \"14298\",\n            \"bill_country\": \"USA\",\n            \"ship_country\": \"USA\",\n            \"description\": \"\",\n            \"id\": \"3x40\"\n        }\n    ]\n}"}],"_postman_id":"68efb9e2-abb0-4a34-98d9-91d44d9885f0"},{"name":"relate","event":[{"listen":"test","script":{"id":"e8e61292-3b6b-47c8-9f95-30a496f5c1f7","exec":["// example using pm.response.to.have\r","pm.test(\"Response is OK\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Response is a Valid Json\", function () {\r","     // assert that the status code is 200\r","     pm.response.to.be.ok; // info, success, redirection, clientError,  serverError, are other variants\r","     // assert that the response has a valid JSON body\r","     pm.response.to.be.withBody;\r","     pm.response.to.be.json; // this assertion also checks if a body  exists, so the above check is not needed\r","});\r","\r","pm.test(\"Json has OK Status code\", function () {\r","    var jsonData = pm.response.json();\r","    pm.expect(jsonData.status).to.eql(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"0165bed8-ac2a-48cf-8b80-7f7dba7b9101","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\"id\":\"3x26\",\"relatelist\":\"{\\\"id\\\":\\\"6x76\\\"}\"}"},"url":"http://my.vtenext.url/restapi/v1/vtews/relate","description":"<p>You can relate an entity with another which have N-N relation type\n(Method aviable with VTE 20.04)</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"45676059-1fcf-4a33-b602-ae7407852eb2","id":"45676059-1fcf-4a33-b602-ae7407852eb2","name":"VTENEXT restapi","type":"collection"}},"urlObject":{"path":["restapi","v1","vtews","relate"],"host":["http://my.vtenext.url"],"query":[],"variable":[]}},"response":[],"_postman_id":"0165bed8-ac2a-48cf-8b80-7f7dba7b9101"},{"name":"retrieveinventory","event":[{"listen":"test","script":{"id":"3272a9c8-f20a-48d6-b76e-70eb8e280752","exec":["// example using pm.response.to.have\r","pm.test(\"Response is OK\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Response is a Valid Json\", function () {\r","     // assert that the status code is 200\r","     pm.response.to.be.ok; // info, success, redirection, clientError,  serverError, are other variants\r","     // assert that the response has a valid JSON body\r","     pm.response.to.be.withBody;\r","     pm.response.to.be.json; // this assertion also checks if a body  exists, so the above check is not needed\r","});\r","\r","pm.test(\"Json has OK Status code\", function () {\r","    var jsonData = pm.response.json();\r","    pm.expect(jsonData.status).to.eql(200);\r","});"],"type":"text/javascript"}}],"id":"74432a2a-469b-4763-9efc-a64c122e5b85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\"id\":\"13x89\"}"},"url":"http://my.vtenext.url/restapi/v1/vtews/retrieveinventory","description":"<p>Illustrate the fields of the specified inventory record, its relative values and the product block’s information.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"45676059-1fcf-4a33-b602-ae7407852eb2","id":"45676059-1fcf-4a33-b602-ae7407852eb2","name":"VTENEXT restapi","type":"collection"}},"urlObject":{"path":["restapi","v1","vtews","retrieveinventory"],"host":["http://my.vtenext.url"],"query":[],"variable":[]}},"response":[],"_postman_id":"74432a2a-469b-4763-9efc-a64c122e5b85"},{"name":"revise","event":[{"listen":"test","script":{"id":"d1072ef0-668f-4c58-b1b4-b432a8ba4383","exec":["// example using pm.response.to.have\r","pm.test(\"Response is OK\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Response is a Valid Json\", function () {\r","     // assert that the status code is 200\r","     pm.response.to.be.ok; // info, success, redirection, clientError,  serverError, are other variants\r","     // assert that the response has a valid JSON body\r","     pm.response.to.be.withBody;\r","     pm.response.to.be.json; // this assertion also checks if a body  exists, so the above check is not needed\r","});\r","\r","pm.test(\"Json has OK Status code\", function () {\r","    var jsonData = pm.response.json();\r","    pm.expect(jsonData.status).to.eql(200);\r","});"],"type":"text/javascript"}}],"id":"14988595-74c8-4413-b55a-92da03a64c1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\"element\":\"{\\\"id\\\":\\\"3x270\\\", \\\"accountname\\\":\\\"My new name !\\\"}\"}"},"url":"http://my.vtenext.url/restapi/v1/vtews/revise","description":"<p>Update the specified record.\nIt’s different only for parameters, the result is the same.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"45676059-1fcf-4a33-b602-ae7407852eb2","id":"45676059-1fcf-4a33-b602-ae7407852eb2","name":"VTENEXT restapi","type":"collection"}},"urlObject":{"path":["restapi","v1","vtews","revise"],"host":["http://my.vtenext.url"],"query":[],"variable":[]}},"response":[],"_postman_id":"14988595-74c8-4413-b55a-92da03a64c1a"},{"name":"update","event":[{"listen":"test","script":{"id":"beec6606-49a2-4e2d-a830-eb781893986d","exec":["// example using pm.response.to.have\r","pm.test(\"Response is OK\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Response is a Valid Json\", function () {\r","     // assert that the status code is 200\r","     pm.response.to.be.ok; // info, success, redirection, clientError,  serverError, are other variants\r","     // assert that the response has a valid JSON body\r","     pm.response.to.be.withBody;\r","     pm.response.to.be.json; // this assertion also checks if a body  exists, so the above check is not needed\r","});\r","\r","pm.test(\"Json has OK Status code\", function () {\r","    var jsonData = pm.response.json();\r","    pm.expect(jsonData.status).to.eql(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"f6262ea4-8423-42ee-ab2e-e5b519f03439","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"6x78\",\n    \"columns\": \"{\\\"website\\\":\\\"www.google.it\\\"}\"\n}"},"url":"http://my.vtenext.url/restapi/v1/vtews/update","description":"<p>Update the specified record.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"45676059-1fcf-4a33-b602-ae7407852eb2","id":"45676059-1fcf-4a33-b602-ae7407852eb2","name":"VTENEXT restapi","type":"collection"}},"urlObject":{"path":["restapi","v1","vtews","update"],"host":["http://my.vtenext.url"],"query":[],"variable":[]}},"response":[],"_postman_id":"f6262ea4-8423-42ee-ab2e-e5b519f03439"},{"name":"retrieve","id":"73650c43-db37-4db0-99e7-3eb5473ea096","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"id\":\"3x270\"}","options":{"raw":{"language":"json"}}},"url":"http://my.vtenext.url/restapi/v1/vtews/retrieve","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"45676059-1fcf-4a33-b602-ae7407852eb2","id":"45676059-1fcf-4a33-b602-ae7407852eb2","name":"VTENEXT restapi","type":"collection"}},"urlObject":{"path":["restapi","v1","vtews","retrieve"],"host":["http://my.vtenext.url"],"query":[],"variable":[]}},"response":[],"_postman_id":"73650c43-db37-4db0-99e7-3eb5473ea096"}],"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]}},"event":[{"listen":"prerequest","script":{"id":"836c4f85-7be3-4944-badf-c87bf067590a","type":"text/javascript","requests":{},"exec":[""]}},{"listen":"test","script":{"id":"70b2dbaf-dd3f-411b-85a7-1f9d49d033df","type":"text/javascript","requests":{},"exec":[""]}}],"variable":[{"key":"VTENEXT_URL","value":"http://my.vtenext.url"}]}