{"info":{"_postman_id":"d6eb763e-f5f8-44ff-b844-4024753de464","name":"IQ reseller","description":"<html><head></head><body><h3 id=\"click-here-for-how-to-use-the-iq-reseller-api\"><a href=\"https://iqwebapidocumentation.azurewebsites.net\">Click here for how to use the IQ Reseller API.</a></h3>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"8577913","collectionId":"d6eb763e-f5f8-44ff-b844-4024753de464","publishedId":"2sAYJ7fJRr","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-09-16T19:22:45.000Z"},"item":[{"name":"Attributes","item":[{"name":"Get Attributes JSON","id":"84d26a2f-b22d-4a51-9d13-b9cfe4530f86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/Attribute/JSON/GetAttributes","description":"<h3 id=\"request-description\">Request Description</h3>\n<p>This is an <strong>HTTP GET</strong> request to the endpoint <code>https://api.iqreseller.com/webapi.svc/Attribute/JSON/GetAttributes</code>.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<ul>\n<li><strong>No parameters are required for this request.</strong></li>\n</ul>\n<h4 id=\"expected-response\">Expected Response</h4>\n<p>The expected response will be in <strong>JSON</strong> format with a <strong>200</strong> status code. The response structure will include:</p>\n<ul>\n<li><p><code>productname</code>: A string representing the name of the product.</p>\n</li>\n<li><p><code>attributes</code>: An array of objects, each containing:</p>\n<ul>\n<li><p><code>name</code>: A string representing the name of the attribute.</p>\n</li>\n<li><p><code>value</code>: A string representing the value of the attribute.</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>Example of the response structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n  {\n    \"productname\": \"\",\n    \"attributes\": [\n      {\n        \"name\": \"\",\n        \"value\": \"\"\n      }\n    ]\n  }\n]\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["webapi.svc","Attribute","JSON","GetAttributes"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"84d26a2f-b22d-4a51-9d13-b9cfe4530f86"},{"name":"Get Attributes XML","id":"3256b3c7-4162-47fc-880c-29e65a01a2c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Attribute/XML/GetAttributes","description":"<h2 id=\"request-description\">Request Description</h2>\n<p>This is an <strong>HTTP GET</strong> request to the endpoint <code>https://api.iqreseller.com/webapi.svc/Attribute/XML/GetAttributes</code>.</p>\n<h3 id=\"purpose\">Purpose</h3>\n<p>This request retrieves all attributes associated with products in an XML format.</p>\n<h3 id=\"request-method\">Request Method</h3>\n<ul>\n<li><strong>GET</strong>: This method is used to request data from the specified resource.</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<ul>\n<li><p><strong>Status Code</strong>: 200 OK</p>\n</li>\n<li><p><strong>Content-Type</strong>: application/xml</p>\n</li>\n</ul>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>The response will contain an XML structure with the following format:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-xml\">&lt;ArrayOfproduct&gt;\n    &lt;product&gt;\n        &lt;productname&gt;&lt;/productname&gt;\n        &lt;attributes&gt;\n            &lt;attribute&gt;\n                &lt;name&gt;&lt;/name&gt;\n                &lt;value&gt;&lt;/value&gt;\n            &lt;/attribute&gt;\n        &lt;/attributes&gt;\n    &lt;/product&gt;\n&lt;/ArrayOfproduct&gt;\n\n</code></pre>\n<h3 id=\"related-data-models\">Related Data Models</h3>\n<p>Similar responses from other endpoints may return data structured as follows:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[{\"productname\":\"\",\"attributes\":[{\"name\":\"\",\"value\":\"\"}]}]\n\n</code></pre>\n<p>This indicates that the data models across various API endpoints are largely consistent.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Attribute","XML","GetAttributes"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3256b3c7-4162-47fc-880c-29e65a01a2c1"},{"name":"Insert Attributes XML","event":[{"listen":"test","script":{"id":"1c143de8-3577-40d5-8361-cadd40d0b06c","exec":["pm.test(\"Response status code is 200\", function () {","    pm.expect(pm.response.code).to.eql(200);","});","","","pm.test(\"Response time is less than 200ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(200);","});","","","pm.test(\"Response matches the expected schema\", function () {","    const responseData = pm.response.json();","    ","    pm.expect(responseData).to.be.an('array').that.is.not.empty;","    ","    responseData.forEach(item => {","        pm.expect(item).to.have.property('productname').that.is.a('string');","        pm.expect(item).to.have.property('attributes').that.is.an('array').that.is.not.empty;","","        item.attributes.forEach(attribute => {","            pm.expect(attribute).to.have.property('name').that.is.a('string');","            pm.expect(attribute).to.have.property('value').that.is.a('string');","        });","    });","});","","","pm.test(\"Attributes array is present and not empty\", function () {","    const responseData = pm.response.json();","    ","    pm.expect(responseData).to.be.an('array').that.is.not.empty;","    responseData.forEach(function(item) {","        pm.expect(item.attributes).to.be.an('array').that.is.not.empty;","    });","});","","","pm.test(\"Each attribute has a valid name and value format\", function () {","    const responseData = pm.response.json();","    ","    pm.expect(responseData).to.be.an('array').that.is.not.empty;","","    responseData.forEach(product => {","        pm.expect(product).to.have.property('productname').that.is.a('string');","        pm.expect(product.attributes).to.be.an('array').that.is.not.empty;","","        product.attributes.forEach(attribute => {","            pm.expect(attribute).to.have.property('name').that.is.a('string').and.to.have.lengthOf.at.least(1);","            pm.expect(attribute).to.have.property('value').that.is.a('string').and.to.have.lengthOf.at.least(1);","        });","    });","});",""],"type":"text/javascript","packages":{}}}],"id":"2c243d23-cfef-4247-bc99-6bba1dfb6fc2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<products>\r\n    <product>\r\n        <productname>desktop</productname>\r\n        <attributes>\r\n            <attribute>\r\n                <name>Total Memory</name>\r\n                <value>512 GB</value>\r\n            </attribute>\r\n            <attribute>\r\n                <name>Memory Slot</name>\r\n                <value>8</value>\r\n            </attribute>\r\n        </attributes>\r\n    </product>\r\n</products>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/Attribute/XML/InsertAttributes","description":"<h2 id=\"add-attributes\">Add Attributes</h2>\n<p>This endpoint allows you to insert attributes for a specific product in the system. It uses the HTTP POST method to send data to the API.</p>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>POST https://api.iqreseller.com/webapi.svc/Attribute/XML/InsertAttributes</code></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>The request body should contain the following parameters:</p>\n<ul>\n<li><p><strong>productname</strong> (string): The name of the product for which attributes are being added.</p>\n</li>\n<li><p><strong>attributes</strong> (array): A list of attributes associated with the product. Each attribute should include:</p>\n<ul>\n<li><p><strong>name</strong> (string): The name of the attribute.</p>\n</li>\n<li><p><strong>value</strong> (string): The value of the attribute.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon a successful request, the API will return a 200 status code along with a response body that typically contains the following structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n  {\n    \"productname\": \"\",\n    \"attributes\": [\n      {\n        \"name\": \"\",\n        \"value\": \"\"\n      }\n    ]\n  }\n]\n\n</code></pre>\n<p>This indicates that the attributes have been successfully inserted for the specified product.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Attribute","XML","InsertAttributes"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2c243d23-cfef-4247-bc99-6bba1dfb6fc2"},{"name":"Insert Attributes JSON","id":"621c259b-b2b7-4430-b728-18797b410f26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"\r\n\r\n[\r\n{\r\n\"productname\": \"laptop\",\r\n\"attributes\": [\r\n{\r\n\"name\": \"Total Memory\",\r\n\"value\": \"555 GB\"\r\n},\r\n{\r\n\"name\": \"Memory Slot\",\r\n\"value\": \"14\"\r\n}\r\n]\r\n}\r\n]\r\n\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/Attribute/JSON/InsertAttributes","description":"<h2 id=\"insert-attributes\">Insert Attributes</h2>\n<p>This endpoint allows users to insert attributes for a specific product into the system. It is particularly useful for adding detailed specifications or features related to a product, such as memory, storage, or other characteristics.</p>\n<h3 id=\"request-format\">Request Format</h3>\n<p><strong>HTTP Method:</strong> POST<br /><strong>Endpoint:</strong> <code>https://api.iqreseller.com/webapi.svc/Attribute/JSON/InsertAttributes</code></p>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body must be in JSON format and should contain an array of objects, where each object represents a product and its associated attributes. The structure of the request body is as follows:</p>\n<ul>\n<li><p><code>productname</code> (string): The name of the product for which attributes are being added.</p>\n</li>\n<li><p><code>attributes</code> (array): An array of attribute objects, each containing:</p>\n<ul>\n<li><p><code>name</code> (string): The name of the attribute (e.g., \"Total Memory\").</p>\n</li>\n<li><p><code>value</code> (string): The value of the attribute (e.g., \"555 GB\").</p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>Example Request Body:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n  {\n    \"productname\": \"laptop\",\n    \"attributes\": [\n      {\n        \"name\": \"Total Memory\",\n        \"value\": \"555 GB\"\n      }\n    ]\n  }\n]\n\n</code></pre>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>Upon a successful request, the API will return a 200 status code along with a response body that mirrors the structure of the request. The response will contain the following:</p>\n<ul>\n<li><p><code>productname</code> (string): The name of the product.</p>\n</li>\n<li><p><code>attributes</code> (array): An array of attribute objects, where each object includes:</p>\n<ul>\n<li><p><code>name</code> (string): The name of the attribute.</p>\n</li>\n<li><p><code>value</code> (string): The value of the attribute.</p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>Example Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n  {\n    \"productname\": \"\",\n    \"attributes\": [\n      {\n        \"name\": \"\",\n        \"value\": \"\"\n      }\n    ]\n  }\n]\n\n</code></pre>\n<p>This endpoint is essential for managing product specifications effectively within the application, allowing for detailed and structured product information to be stored and retrieved.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Attribute","JSON","InsertAttributes"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"621c259b-b2b7-4430-b728-18797b410f26"},{"name":"Insert Attibute to Inventory XML","id":"85f89d5a-261f-4db2-94fe-52e988a6bab1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<request>\n\t<createattributecategory>true</createattributecategory>\n\t<createattributename>true</createattributename>\n\t<createattributevalue>true</createattributevalue>\n\t<updateonhistory>false</updateonhistory>\n\t<inventories>\n\t\t<inventory>\n\t\t\t<inventoryid>147160</inventoryid>\n\t\t\t<attributecategory>Computer</attributecategory>\n\t\t\t<attributename>SSD</attributename>\n\t\t\t<attributevalue>1TB</attributevalue>\n\t\t\t<textattribute>true</textattribute>\n\t\t</inventory>\n\t</inventories>\n</request>\n\n\t","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventories/AddAttributes/XML","description":"<h3 id=\"add-attributes-to-inventory\">Add Attributes to Inventory</h3>\n<p>This request allows you to insert an attribute to an inventory item. If the attribute name and value do not exist, they will be added to the inventory record. If the attribute already exists, the value will be updated accordingly.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p><strong>Method:</strong> POST</p>\n</li>\n<li><p><strong>URL:</strong> <a href=\"https://api.iqreseller.com/webapi.svc/Inventories/AddAttributes/XML\">https://api.iqreseller.com/webapi.svc/Inventories/AddAttributes/XML</a></p>\n</li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body should be formatted as raw XML. The expected structure includes:</p>\n<ul>\n<li><p><strong>productname</strong>: The name of the product to which the attributes will be added.</p>\n</li>\n<li><p><strong>attributes</strong>: An array of attribute objects, where each object contains:</p>\n<ul>\n<li><p><strong>name</strong>: The name of the attribute.</p>\n</li>\n<li><p><strong>value</strong>: The value of the attribute.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"expected-response\">Expected Response</h4>\n<p>On a successful request, you will receive a response with a <code>200</code> status code. The response will typically include:</p>\n<ul>\n<li>An array containing the <code>productname</code> and the list of <code>attributes</code> that were added or updated.</li>\n</ul>\n<h4 id=\"notes\">Notes</h4>\n<ul>\n<li><p>Ensure that the attribute names are unique to avoid unintentional overwrites.</p>\n</li>\n<li><p>This operation is idempotent; calling it multiple times with the same parameters will yield the same result.</p>\n</li>\n<li><p>Refer to the API documentation for any additional information regarding the structure of the request and response.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["webapi.svc","Inventories","AddAttributes","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"85f89d5a-261f-4db2-94fe-52e988a6bab1"},{"name":"Insert/Update Inventory Attributes XML","id":"78201a7c-a049-4b3e-b6e3-280aff7f12d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<request>\r\n\t<createattributecategory>false</createattributecategory>\r\n\t<createattributename>false</createattributename>\r\n\t<createattributevalue>false</createattributevalue>\r\n\t<updateonhistory>false</updateonhistory>\r\n\t<inventories>\r\n\t\t<inventory>\r\n\t\t\t<inventoryid>192604</inventoryid>\r\n\t\t\t<attributecategory>Computer</attributecategory>\r\n\t\t\t<attributename>Storage Size</attributename>\r\n\t\t\t<attributevalue>350 GB</attributevalue>\r\n\t\t\t<textattribute>true</textattribute>\r\n            <valueattribute>false</valueattribute>\r\n\t\t</inventory>\r\n\t</inventories>\r\n</request>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventories/AddAttributes/XML","description":"<h2 id=\"add-attributes-to-inventory\">Add Attributes to Inventory</h2>\n<p>This endpoint allows you to add attributes to an inventory item in the system. It is a part of the IQ Reseller API and is designed to facilitate the management of inventory attributes.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api.iqreseller.com/webapi.svc/Inventories/AddAttributes/XML</code></p>\n</li>\n<li><p><strong>Request Body</strong>: The request body is expected to be in XML format. However, the last recorded request body was noted as <code>null</code>, indicating that no specific data was provided during that call.</p>\n</li>\n</ul>\n<h3 id=\"expected-request-body-format\">Expected Request Body Format</h3>\n<p>The request body should typically include the following structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-xml\">&lt;AddAttributes&gt;\n    &lt;ProductName&gt;YourProductName&lt;/ProductName&gt;\n    &lt;Attributes&gt;\n        &lt;Attribute&gt;\n            &lt;Name&gt;YourAttributeName&lt;/Name&gt;\n            &lt;Value&gt;YourAttributeValue&lt;/Value&gt;\n        &lt;/Attribute&gt;\n        &lt;comment class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt; Additional attributes can be added here  --&gt;\n    &lt;/Attributes&gt;\n&lt;/AddAttributes&gt;\n\n</code></pre>\n<h3 id=\"response\">Response</h3>\n<p>Upon a successful request, the API will return a response with a status code of <code>200</code>. The response will be in XML format and will include the following structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-xml\">&lt;ReturnObject&gt;\n    &lt;ErrorObject&gt;\n        &lt;comment class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt; Contains error details if any  --&gt;\n    &lt;/ErrorObject&gt;\n    &lt;Information&gt;Any relevant information&lt;/Information&gt;\n    &lt;Status&gt;Operation status&lt;/Status&gt;\n    &lt;StatusDescription&gt;Description of the status&lt;/StatusDescription&gt;\n&lt;/ReturnObject&gt;\n\n</code></pre>\n<h3 id=\"related-data\">Related Data</h3>\n<p>Similar endpoints in the API return data structures that may include product names and attributes, such as:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[{\"productname\":\"\",\"attributes\":[{\"name\":\"\",\"value\":\"\"}]}]\n\n</code></pre>\n<p>This data model can provide context for how attributes are structured and used within the inventory system.</p>\n<h3 id=\"summary\">Summary</h3>\n<p>This endpoint is crucial for managing inventory attributes, allowing for detailed customization of products within the inventory. Ensure that the request body is formatted correctly to avoid errors in processing.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Inventories","AddAttributes","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"78201a7c-a049-4b3e-b6e3-280aff7f12d4"},{"name":"Insert/Update Inventory Attributes JSON","id":"ad0ffe97-b216-4c7b-8ece-8ee597a16943","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"createattributecategory\": \"1\",\r\n    \"createattributename\": \"1\",\r\n    \"createattributevalue\": \"1\",\r\n    \"updateonhistory\": \"0\",\r\n      \"inventories\": [{\r\n            \"inventoryid\": \"192604\",\r\n            \"attributecategory\": \"Computer\",\r\n            \"attributename\": \"Storage Size\",\r\n            \"attributevalue\": \"800 GB\",\r\n            \"textattribute\": \"true\"}]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventories/AddAttributes/JSON","description":"<h3 id=\"add-attributes-to-inventories\">Add Attributes to Inventories</h3>\n<p>This endpoint allows you to add attributes to inventories in the system. It is particularly useful for categorizing and defining specific characteristics of inventory items.</p>\n<h4 id=\"request-parameters\">Request Parameters</h4>\n<p>The request body must be in JSON format and should include the following parameters:</p>\n<ul>\n<li><p><strong>createattributecategory</strong> (string): The category under which the attribute is being created.</p>\n</li>\n<li><p><strong>createattributename</strong> (string): The name of the attribute being created.</p>\n</li>\n<li><p><strong>createattributevalue</strong> (string): The value associated with the created attribute.</p>\n</li>\n<li><p><strong>updateonhistory</strong> (string): A flag indicating whether to update the history (0 for no, 1 for yes).</p>\n</li>\n<li><p><strong>inventories</strong> (array): An array of inventory objects, each containing:</p>\n<ul>\n<li><p><strong>inventoryid</strong> (string): The unique identifier for the inventory item.</p>\n</li>\n<li><p><strong>attributecategory</strong> (string): The category of the attribute.</p>\n</li>\n<li><p><strong>attributename</strong> (string): The name of the attribute.</p>\n</li>\n<li><p><strong>attributevalue</strong> (string): The value of the attribute.</p>\n</li>\n<li><p><strong>textattribute</strong> (boolean): Indicates if the attribute is a text type.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response-structure\">Response Structure</h4>\n<p>Upon a successful request, the response will return a JSON object with the following structure:</p>\n<ul>\n<li><p><strong>ErrorObject</strong> (null or object): Contains error details if any occurred during the request.</p>\n</li>\n<li><p><strong>Information</strong> (string): Additional information about the request processing.</p>\n</li>\n<li><p><strong>Status</strong> (integer): The status code of the request (0 indicates success).</p>\n</li>\n<li><p><strong>StatusDescription</strong> (string): A description of the status.</p>\n</li>\n</ul>\n<p>A successful response will have a status code of 200, indicating that the attributes were added successfully.</p>\n<h4 id=\"related-endpoints\">Related Endpoints</h4>\n<p>This endpoint is part of a larger API that manages inventory attributes. Similar endpoints may return structures that include product names and their associated attributes, which can help in understanding the relationships between different inventory items and their characteristics.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Inventories","AddAttributes","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ad0ffe97-b216-4c7b-8ece-8ee597a16943"}],"id":"c86fff9a-2d89-44d0-803f-b29fb532b9a4","description":"<p>This folder contains endpoints used to <strong>retrieve, create, and update product attribute data</strong>. Attributes are used to store additional product specifications such as memory size, storage capacity, or other customizable product properties. These APIs allow attributes to be created for products and applied directly to inventory records.</p>\n","_postman_id":"c86fff9a-2d89-44d0-803f-b29fb532b9a4"},{"name":"Bills","item":[{"name":"Get Bills List XML","id":"0fbe2e51-e931-43fb-9c98-2ace421f40a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Bills/XML/GetBills?Page=1&PageSize=1&SortBy=0","description":"<h3 id=\"request-description\">Request Description</h3>\n<p>This <strong>GET</strong> request retrieves a list of bills from the Bills table.</p>\n<p><strong>Endpoint:</strong><br /><code>https://api.iqreseller.com/webapi.svc/Bills/XML/GetBills</code></p>\n<p><strong>Query Parameters:</strong></p>\n<ul>\n<li><p><strong>Page</strong>: (integer) The page number of the results to retrieve.</p>\n</li>\n<li><p><strong>PageSize</strong>: (integer) The number of results to return per page. Must be between 1 and 14.</p>\n</li>\n<li><p><strong>SortBy</strong>: (integer) The sorting order of the results.</p>\n</li>\n</ul>\n<p><strong>Expected Response Format:</strong><br />The response will be in XML format with a <code>200</code> status code on success. The response will contain an array of bills, each with various details including:</p>\n<ul>\n<li><p><strong>Bill ID</strong></p>\n</li>\n<li><p><strong>Description</strong></p>\n</li>\n<li><p><strong>Amount</strong></p>\n</li>\n<li><p><strong>Due Date</strong></p>\n</li>\n<li><p><strong>Tax Information</strong></p>\n</li>\n</ul>\n<p>Each bill will also include additional fields such as comments, contact information, and payment details.</p>\n<p><strong>Testing Notes:</strong></p>\n<ul>\n<li>Ensure that the <code>PageSize</code> parameter is within the range of 1-14. Any value greater than 14 will result in a \"bad request\".</li>\n</ul>\n","urlObject":{"protocol":"https","path":["webapi.svc","Bills","XML","GetBills"],"host":["api","iqreseller","com"],"query":[{"key":"Page","value":"1"},{"key":"PageSize","value":"1"},{"key":"SortBy","value":"0"}],"variable":[]}},"response":[],"_postman_id":"0fbe2e51-e931-43fb-9c98-2ace421f40a2"},{"name":"Get Bills List JSON","id":"62358ea2-0062-49cf-a415-f01a7f86d692","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Bills/JSON/GetBills?Page=1&PageSize=14&SortBy=0","description":"<h3 id=\"request-description\">Request Description</h3>\n<p>This HTTP GET request retrieves a list of bills from the Bills table.</p>\n<p><strong>Request URL:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://api.iqreseller.com/webapi.svc/Bills/JSON/GetBills?Page=1&amp;PageSize=14&amp;SortBy=0\n\n</code></pre><p><strong>Query Parameters:</strong></p>\n<ul>\n<li><p><strong>Page</strong>: (integer) The page number to retrieve. Default is 1.</p>\n</li>\n<li><p><strong>PageSize</strong>: (integer) The number of records to return per page. Must be set between 1 and 14.</p>\n</li>\n<li><p><strong>SortBy</strong>: (integer) The sorting order for the results. Default is 0.</p>\n</li>\n</ul>\n<p><strong>Expected Response:</strong></p>\n<p>On a successful request, the API will return a <code>200</code> status code along with a JSON response containing the following structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n  {\n    \"BillDetails\": [\n      {\n        \"account\": 0,\n        \"amount\": 0,\n        \"apinvoicedetailid\": 0,\n        \"billid\": 0,\n        \"description\": null,\n        \"extendeddescription\": \"\",\n        \"foreignamount\": 0,\n        \"internalcomment\": \"\",\n        \"item\": \"\",\n        \"lastupdated\": \"\",\n        \"linenumber\": 0,\n        \"mfgr\": \"\",\n        \"po\": 0,\n        \"qty\": 0,\n        \"reference\": \"\",\n        \"serialnumber\": \"\",\n        \"so\": 0,\n        \"taxable\": true,\n        \"taxauthority\": null\n      }\n    ],\n    \"arinvoiceid\": 0,\n    \"arpaymentid\": 0,\n    \"autopayment\": true,\n    \"basecurrency\": true,\n    \"billid\": 0,\n    \"commentstocustomer\": \"\",\n    \"currency\": \"\",\n    \"date\": \"\",\n    \"duedate\": \"\",\n    \"isaccrual\": true,\n    \"isaposted\": true,\n    \"isposted\": true,\n    \"session\": 0,\n    \"taxable\": true,\n    \"taxoverrideflag\": true,\n    \"total\": 0,\n    \"totalsonly\": true\n  }\n]\n\n</code></pre>\n<p><strong>Notes:</strong></p>\n<ul>\n<li><p>The <code>PageSize</code> parameter must be within the range of 1-14. Any value outside this range will result in a bad request.</p>\n</li>\n<li><p>The response includes detailed information about each bill, including amounts, descriptions, and tax information.</p>\n</li>\n<li><p>Related endpoints may return similar data structures, which can be referenced for consistency in handling responses.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["webapi.svc","Bills","JSON","GetBills"],"host":["api","iqreseller","com"],"query":[{"key":"Page","value":"1"},{"key":"PageSize","value":"14"},{"key":"SortBy","value":"0"}],"variable":[]}},"response":[],"_postman_id":"62358ea2-0062-49cf-a415-f01a7f86d692"},{"name":"Get Bills Count","id":"25139f1a-8ede-4ccc-a332-d5000fa77d7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Bills/GetBillsCount","description":"<h3 id=\"request-description\">Request Description</h3>\n<p>This HTTP GET request retrieves the count of the total number of bills from the Bills table.</p>\n<h4 id=\"request-parameters\">Request Parameters</h4>\n<ul>\n<li>There are no specific parameters required for this request.</li>\n</ul>\n<h4 id=\"expected-response\">Expected Response</h4>\n<ul>\n<li><p><strong>Status Code</strong>: 200</p>\n</li>\n<li><p><strong>Content-Type</strong>: application/xml</p>\n</li>\n<li><p>&lt;_&gt; &lt;$ xmlns=\"\"&gt;<br />  The response will contain an XML structure indicating the count of bills.</p>\n</li>\n</ul>\n<h4 id=\"notes\">Notes</h4>\n<ul>\n<li><p>The only output available for this endpoint is in XML format.</p>\n</li>\n<li><p>[{\"productname\":\"\",\"attributes\":[{\"name\":\"\",\"value\":\"\"}]}]<br />  These responses also return a 200 status code.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["webapi.svc","Bills","GetBillsCount"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"25139f1a-8ede-4ccc-a332-d5000fa77d7b"},{"name":"Get Bill Using Id XML","id":"f8d08aaa-b6e0-43af-a041-f81d48c97d33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Bills/XML/GetBillbyId?id=13","description":"<h1 id=\"get-bill-by-id\"><strong>Get Bill by ID</strong></h1>\n<p>This endpoint retrieves detailed information about a specific bill using its unique identifier.</p>\n<h2 id=\"purpose\"><strong>Purpose</strong></h2>\n<p>The purpose of this request is to obtain the details of a bill identified by the provided <code>id</code>. This can be useful for viewing, auditing, or processing billing information in an application.</p>\n<h2 id=\"request-parameters\"><strong>Request Parameters</strong></h2>\n<ul>\n<li><p><strong>id</strong> (required):</p>\n<ul>\n<li><p><strong>Type</strong>: string</p>\n</li>\n<li><p><strong>Description</strong>: This parameter represents the unique identifier for the bill record. Each bill in the database has its own unique <code>id</code>.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"response-structure\"><strong>Response Structure</strong></h2>\n<p>On a successful request (HTTP Status 200), the response will be in XML format and will contain the following structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-xml\">&lt;Bill&gt;\n    &lt;BillDetails&gt;\n        &lt;BillDetail&gt;\n            &lt;account&gt;&lt;/account&gt;\n            &lt;amount&gt;&lt;/amount&gt;\n            &lt;apinvoicedetailid&gt;&lt;/apinvoicedetailid&gt;\n            &lt;billid&gt;&lt;/billid&gt;\n            &lt;description&gt;&lt;/description&gt;\n            &lt;extendeddescription&gt;&lt;/extendeddescription&gt;\n            &lt;foreignamount&gt;&lt;/foreignamount&gt;\n            &lt;internalcomment&gt;&lt;/internalcomment&gt;\n            &lt;item&gt;&lt;/item&gt;\n            &lt;lastupdated&gt;&lt;/lastupdated&gt;\n            &lt;lastupdatedby&gt;&lt;/lastupdatedby&gt;\n            &lt;linenumber&gt;&lt;/linenumber&gt;\n            &lt;mfgr&gt;&lt;/mfgr&gt;\n            &lt;po&gt;&lt;/po&gt;\n            &lt;qty&gt;&lt;/qty&gt;\n            &lt;reference&gt;&lt;/reference&gt;\n            &lt;serialnumber&gt;&lt;/serialnumber&gt;\n            &lt;so&gt;&lt;/so&gt;\n            &lt;tax1cat&gt;&lt;/tax1cat&gt;\n            &lt;tax1pct&gt;&lt;/tax1pct&gt;\n            &lt;tax2cat&gt;&lt;/tax2cat&gt;\n            &lt;tax2pct&gt;&lt;/tax2pct&gt;\n            &lt;tax3cat&gt;&lt;/tax3cat&gt;\n            &lt;tax3pct&gt;&lt;/tax3pct&gt;\n            &lt;tax4cat&gt;&lt;/tax4cat&gt;\n            &lt;tax4pct&gt;&lt;/tax4pct&gt;\n            &lt;taxable&gt;&lt;/taxable&gt;\n            &lt;taxauthority&gt;&lt;/taxauthority&gt;\n            &lt;taxauthoritytaxable&gt;&lt;/taxauthoritytaxable&gt;\n        &lt;/BillDetail&gt;\n    &lt;/BillDetails&gt;\n    &lt;arinvoiceid&gt;&lt;/arinvoiceid&gt;\n    &lt;arpaymentid&gt;&lt;/arpaymentid&gt;\n    &lt;autopayment&gt;&lt;/autopayment&gt;\n    &lt;basecurrency&gt;&lt;/basecurrency&gt;\n    &lt;billid&gt;&lt;/billid&gt;\n    &lt;commentstocustomer&gt;&lt;/commentstocustomer&gt;\n    &lt;contactcontact&gt;&lt;/contactcontact&gt;\n    &lt;contactemail&gt;&lt;/contactemail&gt;\n    &lt;contactfax&gt;&lt;/contactfax&gt;\n    &lt;contactphone&gt;&lt;/contactphone&gt;\n    &lt;conversionrate&gt;&lt;/conversionrate&gt;\n    &lt;currency&gt;&lt;/currency&gt;\n    &lt;date&gt;&lt;/date&gt;\n    &lt;dateadded&gt;&lt;/dateadded&gt;\n    &lt;days&gt;&lt;/days&gt;\n    &lt;duedate&gt;&lt;/duedate&gt;\n    &lt;foreignamount&gt;&lt;/foreignamount&gt;\n    &lt;foreignpaidnonposted&gt;&lt;/foreignpaidnonposted&gt;\n    &lt;foreignpaidposted&gt;&lt;/foreignpaidposted&gt;\n    &lt;foreignstatetax&gt;&lt;/foreignstatetax&gt;\n    &lt;foreigntax1&gt;&lt;/foreigntax1&gt;\n    &lt;foreigntax2&gt;&lt;/foreigntax2&gt;\n    &lt;foreigntax3&gt;&lt;/foreigntax3&gt;\n    &lt;foreigntax4&gt;&lt;/foreigntax4&gt;\n    &lt;internalcomments&gt;&lt;/internalcomments&gt;\n    &lt;invrecdate&gt;&lt;/invrecdate&gt;\n    &lt;isaccrual&gt;&lt;/isaccrual&gt;\n    &lt;isaposted&gt;&lt;/isaposted&gt;\n    &lt;isposted&gt;&lt;/isposted&gt;\n    &lt;lastupdated&gt;&lt;/lastupdated&gt;\n    &lt;lastupdatedby&gt;&lt;/lastupdatedby&gt;\n    &lt;originalforeignstatetax&gt;&lt;/originalforeignstatetax&gt;\n    &lt;originalstatetax&gt;&lt;/originalstatetax&gt;\n    &lt;paidinfulldate&gt;&lt;/paidinfulldate&gt;\n    &lt;paidnonposted&gt;&lt;/paidnonposted&gt;\n    &lt;paidposted&gt;&lt;/paidposted&gt;\n    &lt;po&gt;&lt;/po&gt;\n    &lt;purchaseid&gt;&lt;/purchaseid&gt;\n    &lt;recadded&gt;&lt;/recadded&gt;\n    &lt;reference&gt;&lt;/reference&gt;\n    &lt;remittoemail&gt;&lt;/remittoemail&gt;\n    &lt;remittofax&gt;&lt;/remittofax&gt;\n    &lt;remittoname&gt;&lt;/remittoname&gt;\n    &lt;remittophone&gt;&lt;/remittophone&gt;\n    &lt;rep&gt;&lt;/rep&gt;\n    &lt;session&gt;&lt;/session&gt;\n    &lt;sessiondate&gt;&lt;/sessiondate&gt;\n    &lt;shiptoemail&gt;&lt;/shiptoemail&gt;\n    &lt;shiptofax&gt;&lt;/shiptofax&gt;\n    &lt;shiptoname&gt;&lt;/shiptoname&gt;\n    &lt;shiptophone&gt;&lt;/shiptophone&gt;\n    &lt;statetax&gt;&lt;/statetax&gt;\n    &lt;statetaxpct&gt;&lt;/statetaxpct&gt;\n    &lt;tax&gt;&lt;/tax&gt;\n    &lt;tax1&gt;&lt;/tax1&gt;\n    &lt;tax1auth&gt;&lt;/tax1auth&gt;\n    &lt;tax2&gt;&lt;/tax2&gt;\n    &lt;tax2auth&gt;&lt;/tax2auth&gt;\n    &lt;tax3&gt;&lt;/tax3&gt;\n    &lt;tax3auth&gt;&lt;/tax3auth&gt;\n    &lt;tax4&gt;&lt;/tax4&gt;\n    &lt;tax4auth&gt;&lt;/tax4auth&gt;\n    &lt;taxable&gt;&lt;/taxable&gt;\n    &lt;taxauthority&gt;&lt;/taxauthority&gt;\n    &lt;taxoverrideflag&gt;&lt;/taxoverrideflag&gt;\n    &lt;taxrecondt&gt;&lt;/taxrecondt&gt;\n    &lt;terms&gt;&lt;/terms&gt;\n    &lt;total&gt;&lt;/total&gt;\n    &lt;totalsonly&gt;&lt;/totalsonly&gt;\n    &lt;vendorbill&gt;&lt;/vendorbill&gt;\n    &lt;vendorid&gt;&lt;/vendorid&gt;\n    &lt;voided&gt;&lt;/voided&gt;\n&lt;/Bill&gt;\n\n</code></pre>\n<p>This structure includes various details about the bill, such as amounts, descriptions, tax information, and contact details.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Bills","XML","GetBillbyId"],"host":["api","iqreseller","com"],"query":[{"key":"id","value":"13"}],"variable":[]}},"response":[],"_postman_id":"f8d08aaa-b6e0-43af-a041-f81d48c97d33"},{"name":"Get Bill Using Id JSON","id":"8144a420-e6f7-4ad2-ac36-52c6f5798b36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Bills/JSON/GetBillbyId?id=13","description":"<h1 id=\"get-bill-by-id\"><strong>Get Bill by ID</strong></h1>\n<p>This endpoint retrieves the details of a specific bill using its unique identifier.</p>\n<h2 id=\"parameters\"><strong>Parameters</strong></h2>\n<ul>\n<li><strong>id</strong>: (required) The primary identifier of the bill. Each bill record has its own unique id.</li>\n</ul>\n<h2 id=\"response-structure\"><strong>Response Structure</strong></h2>\n<p>On a successful request, the response will contain a JSON object with the following structure:</p>\n<ul>\n<li><p><strong>BillDetails</strong>: An array of objects containing detailed information about the bill, including:</p>\n<ul>\n<li><p><strong>account</strong>: The account associated with the bill.</p>\n</li>\n<li><p><strong>amount</strong>: The total amount of the bill.</p>\n</li>\n<li><p><strong>apinvoicedetailid</strong>: The ID for the invoice detail.</p>\n</li>\n<li><p><strong>billid</strong>: The unique ID of the bill.</p>\n</li>\n<li><p><strong>description</strong>: A brief description of the bill (may be null).</p>\n</li>\n<li><p><strong>extendeddescription</strong>: A more detailed description of the bill.</p>\n</li>\n<li><p><strong>foreignamount</strong>: The amount in foreign currency.</p>\n</li>\n<li><p><strong>internalcomment</strong>: Internal comments related to the bill.</p>\n</li>\n<li><p><strong>item</strong>: The item associated with the bill.</p>\n</li>\n<li><p><strong>lastupdated</strong>: Timestamp of the last update.</p>\n</li>\n<li><p><strong>lastupdatedby</strong>: The user who last updated the bill.</p>\n</li>\n<li><p><strong>taxable</strong>: Indicates if the bill is taxable.</p>\n</li>\n<li><p><strong>taxauthority</strong>: The authority responsible for tax (may be null).</p>\n</li>\n<li><p>Additional fields related to tax categories and amounts.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>arinvoiceid</strong>: The ID of the associated AR invoice.</p>\n</li>\n<li><p><strong>arpaymentid</strong>: The ID of the associated AR payment.</p>\n</li>\n<li><p><strong>autopayment</strong>: Indicates if the bill is set for autopayment.</p>\n</li>\n<li><p><strong>basecurrency</strong>: Indicates if the base currency is being used.</p>\n</li>\n<li><p><strong>commentstocustomer</strong>: Comments directed to the customer.</p>\n</li>\n<li><p><strong>currency</strong>: The currency of the bill.</p>\n</li>\n<li><p><strong>date</strong>: The date of the bill.</p>\n</li>\n<li><p><strong>duedate</strong>: The due date for payment.</p>\n</li>\n<li><p><strong>isaccrual</strong>: Indicates if the bill is on an accrual basis.</p>\n</li>\n<li><p><strong>isposted</strong>: Indicates if the bill has been posted.</p>\n</li>\n<li><p><strong>total</strong>: The total amount due for the bill.</p>\n</li>\n<li><p><strong>vendorid</strong>: The ID of the vendor associated with the bill.</p>\n</li>\n<li><p><strong>voided</strong>: Indicates if the bill has been voided.</p>\n</li>\n</ul>\n<p>This endpoint returns a status code of 200 on a successful request.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Bills","JSON","GetBillbyId"],"host":["api","iqreseller","com"],"query":[{"key":"id","value":"13"}],"variable":[]}},"response":[],"_postman_id":"8144a420-e6f7-4ad2-ac36-52c6f5798b36"},{"name":"Get Bills using POid XML","id":"e8ddaa5a-6388-43a0-affd-16e6b9b1b4d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Bills/XML/GetBillsbyPOId?id=13","description":"<h1 id=\"get-bills-by-purchase-order-id\">Get Bills by Purchase Order ID</h1>\n<p>This endpoint retrieves bill information based on a specified Purchase Order (PO) ID. It is useful for obtaining detailed billing data associated with a particular purchase order, which can assist in financial tracking and management.</p>\n<h2 id=\"request\">Request</h2>\n<h3 id=\"http-method\">HTTP Method</h3>\n<p><code>GET</code></p>\n<h3 id=\"url\">URL</h3>\n<p><code>https://api.iqreseller.com/webapi.svc/Bills/XML/GetBillsbyPOId?id={id}</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<ul>\n<li><code>id</code> (required): The unique identifier for the Purchase Order. This parameter is used to filter the bills associated with the specified PO.</li>\n</ul>\n<h2 id=\"response\">Response</h2>\n<h3 id=\"status-code\">Status Code</h3>\n<ul>\n<li><code>200 OK</code>: Indicates that the request was successful.</li>\n</ul>\n<h3 id=\"content-type\">Content-Type</h3>\n<ul>\n<li><code>application/xml</code>: The response is returned in XML format.</li>\n</ul>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>The response contains an array of bills with detailed information. Below are the key components of the response:</p>\n<ul>\n<li><p><strong>ArrayOfBill</strong>: The root element containing the list of bills.</p>\n<ul>\n<li><p><strong>Bill</strong>: Represents an individual bill with the following attributes:</p>\n<ul>\n<li><p><strong>BillDetails</strong>: Contains detailed information about the bill.</p>\n<ul>\n<li><p><strong>BillDetail</strong>: An array of bill details, each including:</p>\n<ul>\n<li><p><code>account</code>: The account associated with the bill.</p>\n</li>\n<li><p><code>amount</code>: The total amount of the bill.</p>\n</li>\n<li><p><code>billid</code>: The unique identifier for the bill.</p>\n</li>\n<li><p><code>description</code>: A description of the bill.</p>\n</li>\n<li><p><code>qty</code>: Quantity of items billed.</p>\n</li>\n<li><p><code>taxable</code>: Indicates if the bill is taxable.</p>\n</li>\n<li><p>Additional fields related to tax, vendor information, and payment status.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<p>This endpoint is particularly useful for users needing to track and manage their billing records against specific purchase orders, ensuring accurate financial reporting and compliance.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Bills","XML","GetBillsbyPOId"],"host":["api","iqreseller","com"],"query":[{"key":"id","value":"13"}],"variable":[]}},"response":[],"_postman_id":"e8ddaa5a-6388-43a0-affd-16e6b9b1b4d9"},{"name":"Get Bills using POid JSON","id":"5bf8e4dc-e3a5-4311-a427-7922723fc7df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Bills/JSON/GetBillsbyPOId?id=13","description":"<h3 id=\"get-bills-by-purchase-order-id\">Get Bills by Purchase Order ID</h3>\n<p>This endpoint retrieves bill details associated with a specific Purchase Order ID (POId).</p>\n<h4 id=\"request-parameters\">Request Parameters</h4>\n<ul>\n<li><strong>id</strong> (required): The unique identifier for the Purchase Order. In this example, the value is <code>13</code>.</li>\n</ul>\n<h4 id=\"response-structure\">Response Structure</h4>\n<p>On a successful request, the API returns a JSON object containing the following structure:</p>\n<ul>\n<li><p><strong>BillDetails</strong>: An array of bill detail objects, each containing:</p>\n<ul>\n<li><p><strong>account</strong>: The account number associated with the bill.</p>\n</li>\n<li><p><strong>amount</strong>: The total amount of the bill.</p>\n</li>\n<li><p><strong>apinvoicedetailid</strong>: The ID of the invoice detail.</p>\n</li>\n<li><p><strong>billid</strong>: The unique identifier for the bill.</p>\n</li>\n<li><p><strong>description</strong>: A brief description of the bill (can be null).</p>\n</li>\n<li><p><strong>extendeddescription</strong>: A more detailed description of the bill.</p>\n</li>\n<li><p><strong>foreignamount</strong>: The amount in foreign currency.</p>\n</li>\n<li><p><strong>internalcomment</strong>: Internal comments related to the bill.</p>\n</li>\n<li><p><strong>item</strong>: The item associated with the bill.</p>\n</li>\n<li><p><strong>lastupdated</strong>: The date when the bill was last updated.</p>\n</li>\n<li><p><strong>lastupdatedby</strong>: The user who last updated the bill.</p>\n</li>\n<li><p><strong>linenumber</strong>: The line number of the bill.</p>\n</li>\n<li><p><strong>mfgr</strong>: Manufacturer details.</p>\n</li>\n<li><p><strong>po</strong>: The Purchase Order number.</p>\n</li>\n<li><p><strong>qty</strong>: Quantity related to the bill.</p>\n</li>\n<li><p><strong>reference</strong>: Reference number for the bill.</p>\n</li>\n<li><p><strong>serialnumber</strong>: Serial number associated with the item.</p>\n</li>\n<li><p><strong>so</strong>: Sales Order number.</p>\n</li>\n<li><p><strong>taxable</strong>: Indicates if the bill is taxable.</p>\n</li>\n<li><p><strong>taxauthority</strong>: The tax authority responsible for the bill.</p>\n</li>\n<li><p><strong>total</strong>: The total amount of the bill.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>arinvoiceid</strong>: The ID of the AR invoice.</p>\n</li>\n<li><p><strong>arpaymentid</strong>: The ID of the AR payment.</p>\n</li>\n<li><p><strong>autopayment</strong>: Indicates if the bill is set for autopayment.</p>\n</li>\n<li><p><strong>basecurrency</strong>: Indicates if the base currency is being used.</p>\n</li>\n<li><p><strong>commentstocustomer</strong>: Comments directed to the customer.</p>\n</li>\n<li><p><strong>currency</strong>: The currency used for the bill.</p>\n</li>\n<li><p><strong>date</strong>: The date of the bill.</p>\n</li>\n<li><p><strong>duedate</strong>: The due date for payment.</p>\n</li>\n<li><p><strong>isaccrual</strong>: Indicates if the bill is an accrual.</p>\n</li>\n<li><p><strong>isaposted</strong>: Indicates if the bill is posted.</p>\n</li>\n<li><p><strong>tax</strong>: The total tax amount.</p>\n</li>\n<li><p><strong>terms</strong>: Payment terms associated with the bill.</p>\n</li>\n</ul>\n<h4 id=\"notes\">Notes</h4>\n<ul>\n<li><p>The PageSize and Page parameters are ignored when using this endpoint.</p>\n</li>\n<li><p>The SortBy parameter is ignored when using this endpoint.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["webapi.svc","Bills","JSON","GetBillsbyPOId"],"host":["api","iqreseller","com"],"query":[{"key":"id","value":"13"}],"variable":[]}},"response":[],"_postman_id":"5bf8e4dc-e3a5-4311-a427-7922723fc7df"},{"name":"Get Bills List with optional parameters-BillId XML","id":"d37ed482-f6ee-43f7-8dfe-1f8f0b96f079","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Bills/XML?Billid=1973&Page=1&PageSize=1&POid=13&Rep=CM&startdate=1/1/2022&enddate=2/1/2023","description":"<h2 id=\"api-endpoint-description\">API Endpoint Description</h2>\n<h3 id=\"get-webapisvcbillsxml\">GET /webapi.svc/Bills/XML</h3>\n<p>This endpoint retrieves billing information based on the specified parameters. It allows users to obtain details about a specific bill identified by its <code>Billid</code>, along with pagination options and date filters.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<ul>\n<li><p><strong>Billid</strong> (optional): The unique identifier for the bill you want to retrieve.</p>\n</li>\n<li><p><strong>Page</strong> (optional): The page number for pagination. Default is 1.</p>\n</li>\n<li><p><strong>PageSize</strong> (optional): The number of records to return per page. Default is 1.</p>\n</li>\n<li><p><strong>POid</strong> (optional): The purchase order ID associated with the bill.</p>\n</li>\n<li><p><strong>Rep</strong> (optional): The representative code linked to the bill.</p>\n</li>\n<li><p><strong>startdate</strong> (optional): The start date for filtering bills in the format <code>MM/DD/YYYY</code>.</p>\n</li>\n<li><p><strong>enddate</strong> (optional): The end date for filtering bills in the format <code>MM/DD/YYYY</code>.</p>\n</li>\n</ul>\n<h3 id=\"expected-response-format\">Expected Response Format</h3>\n<p>The response will be in XML format and contains the following structure:</p>\n<ul>\n<li><p><strong>bills</strong>: The root element containing billing information.</p>\n<ul>\n<li><p><strong>bill</strong>: An object representing the details of the bill.</p>\n<ul>\n<li><p><strong>amount</strong>: The total amount of the bill.</p>\n</li>\n<li><p><strong>arinvoiceid</strong>: The ID of the associated invoice.</p>\n</li>\n<li><p><strong>arpaymentid</strong>: The ID of the associated payment.</p>\n</li>\n<li><p><strong>basecurrency</strong>: The currency used for the bill.</p>\n</li>\n<li><p><strong>billdetails</strong>: Contains detailed line items related to the bill.</p>\n<ul>\n<li><p><strong>billdetail</strong>: An array of objects, each representing a line item with attributes such as:</p>\n<ul>\n<li><p><strong>amount</strong>: The amount for the line item.</p>\n</li>\n<li><p><strong>description</strong>: A brief description of the line item.</p>\n</li>\n<li><p><strong>qty</strong>: The quantity of the item.</p>\n</li>\n<li><p><strong>tax</strong>: Tax details associated with the line item.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p>Additional fields include identifiers, contact information, payment status, and dates related to the bill.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"response-status\">Response Status</h3>\n<ul>\n<li><strong>200 OK</strong>: Indicates that the request was successful and the bill details were retrieved successfully.</li>\n</ul>\n<p>This endpoint is useful for obtaining detailed billing information, which can be further processed or displayed in billing systems or reports.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Bills","XML"],"host":["api","iqreseller","com"],"query":[{"key":"Billid","value":"1973"},{"key":"Page","value":"1"},{"key":"PageSize","value":"1"},{"key":"POid","value":"13"},{"key":"Rep","value":"CM"},{"key":"startdate","value":"1/1/2022"},{"key":"enddate","value":"2/1/2023"}],"variable":[]}},"response":[],"_postman_id":"d37ed482-f6ee-43f7-8dfe-1f8f0b96f079"},{"name":"Get Bills List with optional parameters- Billid - JSON","id":"78790ff9-3b79-4f03-9d4a-9f3b8aa35ee7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Bills/JSON?Billid=1973&Page=1&PageSize=1&Rep=CM&startdate=1/1/2022&enddate=2/1/2022&POid=13","description":"<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>GET https://api.iqreseller.com/webapi.svc/Bills/JSON</code></p>\n<h3 id=\"method\">Method</h3>\n<p><code>GET</code></p>\n<h3 id=\"parameters\">Parameters</h3>\n<ul>\n<li><p><strong>Billid</strong> (optional): The unique identifier for the bill you want to retrieve.</p>\n</li>\n<li><p><strong>Page</strong> (optional): The page number for pagination of results.</p>\n</li>\n<li><p><strong>PageSize</strong> (optional): The number of results to return per page.</p>\n</li>\n<li><p><strong>Rep</strong> (optional): The representative associated with the bill.</p>\n</li>\n<li><p><strong>startdate</strong> (optional): The start date for filtering bills, formatted as MM/DD/YYYY.</p>\n</li>\n<li><p><strong>enddate</strong> (optional): The end date for filtering bills, formatted as MM/DD/YYYY.</p>\n</li>\n<li><p><strong>POid</strong> (optional): The purchase order ID associated with the bill.</p>\n</li>\n</ul>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint retrieves detailed information about a specific bill identified by the <code>Billid</code> parameter. The response will provide various attributes of the bill, including amounts, dates, contact information, and tax details. The response is structured in JSON format and includes an array of bill details, allowing for comprehensive insights into the bill's status and associated transactions.</p>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>A successful response will return a JSON object with the following key attributes:</p>\n<ul>\n<li><p><strong>amount</strong>: Total amount of the bill.</p>\n</li>\n<li><p><strong>billdetails</strong>: An array containing detailed line items of the bill, including amounts, descriptions, and tax information.</p>\n</li>\n<li><p><strong>billid</strong>: The ID of the bill.</p>\n</li>\n<li><p><strong>isposted</strong>: Indicates whether the bill has been posted.</p>\n</li>\n<li><p><strong>currencycode</strong>: The currency used for the bill.</p>\n</li>\n</ul>\n<p>The response will have a status code of 200, indicating that the request was successful.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Bills","JSON"],"host":["api","iqreseller","com"],"query":[{"key":"Billid","value":"1973"},{"key":"Page","value":"1"},{"key":"PageSize","value":"1"},{"key":"Rep","value":"CM"},{"key":"startdate","value":"1/1/2022"},{"key":"enddate","value":"2/1/2022"},{"key":"POid","value":"13"}],"variable":[]}},"response":[],"_postman_id":"78790ff9-3b79-4f03-9d4a-9f3b8aa35ee7"},{"name":"Get Bills Using CVCode (XML)","id":"94e4a18d-9b51-4c36-bbaa-ad6f49d9ea30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/Bills/XML/GetBillsByCVCode","urlObject":{"protocol":"https","path":["webapi.svc","Bills","XML","GetBillsByCVCode"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"94e4a18d-9b51-4c36-bbaa-ad6f49d9ea30"},{"name":"Get Bills Using CVCode (JSON)","id":"46e27e74-40f2-4c00-8b92-03c354cecb4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/Bills/JSON/GetBillsByCVCode","urlObject":{"protocol":"https","path":["webapi.svc","Bills","JSON","GetBillsByCVCode"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"46e27e74-40f2-4c00-8b92-03c354cecb4a"},{"name":"Get Bill Using InvoiceNumber (XML)","id":"278687ae-de4c-46a0-bd6c-c9ea39b4b18a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/Bills/XML/GetBillByInvoiceNumber","urlObject":{"protocol":"https","path":["webapi.svc","Bills","XML","GetBillByInvoiceNumber"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"278687ae-de4c-46a0-bd6c-c9ea39b4b18a"},{"name":"Get Bill Using InvoiceNumber (JSON)","id":"db355c3f-7044-4647-87b6-4f541a271a6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/Bills/JSON/GetBillByInvoiceNumber","urlObject":{"protocol":"https","path":["webapi.svc","Bills","JSON","GetBillByInvoiceNumber"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"db355c3f-7044-4647-87b6-4f541a271a6f"}],"id":"7e4ec1b4-2f55-4ec7-8131-cc88bb60d99f","description":"<p>This folder contains endpoints for <strong>retrieving and managing billing records</strong>. These APIs allow users to fetch bills, retrieve bill counts, filter bills by various identifiers (such as PO ID, CV code, or invoice number), and access detailed bill information including line items, tax data, and payment details.</p>\n","_postman_id":"7e4ec1b4-2f55-4ec7-8131-cc88bb60d99f"},{"name":"Category","item":[{"name":"Get Categories by Code","event":[{"listen":"test","script":{"id":"b04791fe-43d9-4b31-a017-b7ef0e949a3d","exec":["pm.test(\"Response status code is 200\", function () {","    pm.expect(pm.response.code).to.eql(200);","});","","","pm.test(\"Response must contain required fields\", function () {","    const responseData = xml2Json(pm.response.text());","    ","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData.category).to.exist;","    pm.expect(responseData.category.categorycode).to.exist;","    pm.expect(responseData.category.description).to.exist;","    pm.expect(responseData.category.level).to.exist;","    pm.expect(responseData.category.parent).to.exist;","});","","","pm.test(\"Response time is less than 200ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(200);","});","","","pm.test(\"The category field must be an object\", function () {","    const responseData = xml2Json(pm.response.text());","    ","    pm.expect(responseData).to.have.property('category').that.is.an('object');","});","","","pm.test(\"Response schema matches expected XML structure for category endpoint\", function () {","    const responseData = xml2Json(pm.response.text());","","    // Check that the root object 'category' exists","    pm.expect(responseData).to.have.property('category');","    ","    // Check for properties in the 'category' object","    const category = responseData.category;","    pm.expect(category).to.include.keys('categorycode', 'description', 'level', 'parent', 'categories');","    ","    // Check that 'categories' is an object","    pm.expect(category.categories).to.be.an('object');","    ","    // Check that 'categories' can have 'i:nil' property","    if (category.categories.$) {","        pm.expect(category.categories.$).to.have.property('i:nil').that.is.a('string');","    }","});","var responseData = xml2Json(pm.response.text());","","pm.test(\"Schema is valid for category response\", function () {","    var schema = {","        type: \"object\",","        properties: {","            category: {","                type: \"object\",","                properties: {","                    categorycode: { type: \"string\" },","                    description: { type: \"string\" },","                    level: { type: \"string\" },","                    parent: { type: \"string\" },","                    categories: {","                        type: \"object\",","                        properties: {","                            $: {","                                type: \"object\",","                                properties: {","                                    \"i:nil\": { type: \"string\" }","                                },","                                required: [\"i:nil\"]","                            }","                        }","                    }","                },","                required: [\"categorycode\", \"description\", \"level\", \"parent\", \"categories\"]","            }","        },","        required: [\"category\"]","    };","","    pm.expect(tv4.validate(responseData, schema)).to.be.true;","});","","pm.test(\"Response has the correct Content-Type header for XML\", function () {","    pm.expect(pm.response.headers.get('Content-Type')).to.eql('application/xml');","});","","","pm.test(\"Response time is less than 300ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(300);","});","","","pm.test(\"Category code is a non-empty string\", function () {","    const responseData = xml2Json(pm.response.text());","    ","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData.category.categorycode).to.exist.and.to.be.a('string').and.to.have.lengthOf.at.least(1, \"Category code should not be empty\");","});","","","pm.test(\"Description is a non-empty string\", function () {","    const responseData = xml2Json(pm.response.text());","    ","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData.category.description).to.exist.and.to.be.a('string').and.to.have.lengthOf.at.least(1, \"Description should not be empty\");","});","","","pm.test(\"Level is a valid enumeration\", function () {","    const responseData = xml2Json(pm.response.text());","    const validLevels = [\"1\", \"2\", \"3\", \"4\"]; // Example set of valid levels","","    if (responseData.category.level) {","        pm.expect(validLevels).to.include(responseData.category.level);","    }","});","",""],"type":"text/javascript","packages":{}}}],"id":"e50eff81-6149-4037-9b02-0e0a7f6a69d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/Category/XML/GetCategoryByCode?Code=HDD","description":"<h2 id=\"get-category-by-code\">Get Category By Code</h2>\n<p>This endpoint retrieves category information based on a specified category code. It is useful for obtaining details about a specific category within the system.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: GET</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api.iqreseller.com/webapi.svc/Category/XML/GetCategoryByCode</code></p>\n</li>\n<li><p><strong>Query Parameters</strong>:</p>\n<ul>\n<li><code>Code</code> (string): The unique code of the category you wish to retrieve. In this example, the code used is <code>HDD</code>.</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<ul>\n<li><p><strong>Status Code</strong>: 200 OK</p>\n</li>\n<li><p><strong>Content-Type</strong>: application/xml</p>\n</li>\n<li><ul>\n<li><p>The response contains a <code>category</code> element which includes:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>```\n- `categories`: A placeholder for potential subcategories, which may be nil.\n- `categorycode`: The code of the requested category.\n- `description`: A description of the category.\n- `level`: The level of the category in the hierarchy.\n- `parent`: The parent category code, if applicable.\n\n ```\n</code></pre></li>\n</ul>\n</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the <code>Code</code> parameter is correctly specified to retrieve the desired category.</p>\n</li>\n<li><p>The structure of the response aligns with other endpoints in the API, which may return similar data models, such as product details associated with categories.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["webapi.svc","Category","XML","GetCategoryByCode"],"host":["api","iqreseller","com"],"query":[{"key":"Code","value":"HDD"}],"variable":[]}},"response":[],"_postman_id":"e50eff81-6149-4037-9b02-0e0a7f6a69d2"},{"name":"Get Categories","id":"2edb620d-6cbe-40af-8e0c-d191666e151e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Category/XML/GetCategories?Page=1&PageSize=10&Sortby=0","description":"<h2 id=\"get-categories\">Get Categories</h2>\n<p>This request retrieves a listing of all categories available in the system. It is useful for obtaining a structured overview of categories, which can be utilized for various purposes such as displaying category options in a user interface or filtering products based on categories.</p>\n<h3 id=\"request-format\">Request Format</h3>\n<ul>\n<li><p><strong>Method</strong>: GET</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api.iqreseller.com/webapi.svc/Category/XML/GetCategories</code></p>\n</li>\n<li><p><strong>Query Parameters</strong>:</p>\n<ul>\n<li><p><code>Page</code> (integer): The page number of the results to retrieve. Default is 1.</p>\n</li>\n<li><p><code>PageSize</code> (integer): The number of results to return per page. Default is 10.</p>\n</li>\n<li><p><code>Sortby</code> (integer): The sorting order of the results. Default is 0.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>The response is returned in XML format with a status code of 200 on success. The structure of the response includes:</p>\n<ul>\n<li><p><strong>categories</strong>: The root element containing the list of categories.</p>\n<ul>\n<li><p><strong>category</strong>: An array of category objects, each containing:</p>\n<ul>\n<li><p><strong>categorycode</strong> (string): The unique code for the category.</p>\n</li>\n<li><p><strong>description</strong> (string): A textual description of the category.</p>\n</li>\n<li><p><strong>level</strong> (string): The hierarchical level of the category.</p>\n</li>\n<li><p><strong>parent</strong> (string): The parent category code, if applicable.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<p>Example of the response structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-xml\">&lt;categories&gt;\n  &lt;category&gt;\n    &lt;categorycode&gt;&lt;/categorycode&gt;\n    &lt;description&gt;&lt;/description&gt;\n    &lt;level&gt;&lt;/level&gt;\n    &lt;parent&gt;&lt;/parent&gt;\n  &lt;/category&gt;\n&lt;/categories&gt;\n\n</code></pre>\n<p>This endpoint is essential for applications that need to display or manipulate categories based on the available data.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Category","XML","GetCategories"],"host":["api","iqreseller","com"],"query":[{"key":"Page","value":"1"},{"key":"PageSize","value":"10"},{"key":"Sortby","value":"0"}],"variable":[]}},"response":[],"_postman_id":"2edb620d-6cbe-40af-8e0c-d191666e151e"}],"id":"33e6eed0-ec24-480c-977b-2849e9b76c4a","description":"<p>This folder contains endpoints for <strong>retrieving product category information</strong>. Categories are used to organize products in a hierarchical structure. These APIs allow users to retrieve category listings, fetch categories by code, and navigate category hierarchies used within the inventory system.</p>\n","_postman_id":"33e6eed0-ec24-480c-977b-2849e9b76c4a"},{"name":"Condition Code","item":[{"name":"Get Condition by Code XML","id":"4f00950c-2bf8-4e81-8e0f-89123b003602","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Condition/XML/GetConditionByCode?Code=NEW","description":"<h2 id=\"get-condition-by-code\">Get Condition by Code</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>GET https://api.iqreseller.com/webapi.svc/Condition/XML/GetConditionByCode?Code=NEW</code></p>\n<h3 id=\"overview\">Overview</h3>\n<p>This endpoint retrieves the condition details associated with a specific code. By providing the <code>Code</code> parameter in the query string, the API returns an XML response containing various attributes related to the specified condition.</p>\n<h3 id=\"response\">Response</h3>\n<p>On a successful request (HTTP Status 200), the response will include:</p>\n<ul>\n<li><p><code>Condition</code>: An object containing the following fields:</p>\n<ul>\n<li><p><code>brokerbinitem</code>: Information related to the broker's bin item.</p>\n</li>\n<li><p><code>code</code>: The code provided in the request.</p>\n</li>\n<li><p><code>condition</code>: Description of the condition.</p>\n</li>\n<li><p><code>conditionid</code>: Unique identifier for the condition.</p>\n</li>\n<li><p><code>itempricefield</code>: Field related to item pricing.</p>\n</li>\n<li><p><code>itemstatedprice</code>: Stated price of the item.</p>\n</li>\n<li><p><code>sort</code>: Sorting information.</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>This endpoint is useful for obtaining detailed information about conditions that may be relevant for product listings or inventory management.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Condition","XML","GetConditionByCode"],"host":["api","iqreseller","com"],"query":[{"key":"Code","value":"NEW"}],"variable":[]}},"response":[],"_postman_id":"4f00950c-2bf8-4e81-8e0f-89123b003602"},{"name":"Get Condition by Code JSON","id":"bb6e5791-73c6-41f6-80c7-22a31c26f52f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Condition/JSON/GetConditionByCode?Code=NEW","description":"<h2 id=\"get-condition-by-code\"><strong>GET Condition by Code</strong></h2>\n<p>This request retrieves the condition details associated with a specific code from the IQ Reseller API.</p>\n<h3 id=\"endpoint\"><strong>Endpoint</strong></h3>\n<p><code>GET https://api.iqreseller.com/webapi.svc/Condition/JSON/GetConditionByCode?Code=NEW</code></p>\n<h3 id=\"parameters\"><strong>Parameters:</strong></h3>\n<ul>\n<li><strong>Code</strong>: The specific code for which the condition details are being requested.</li>\n</ul>\n<h3 id=\"response\"><strong>Response</strong></h3>\n<p>On a successful request, the API returns a JSON object containing the following fields:</p>\n<ul>\n<li><p><code>brokerbinitem</code>: A string representing the broker bin item.</p>\n</li>\n<li><p><code>code</code>: A string representing the code.</p>\n</li>\n<li><p><code>condition</code>: A string describing the condition.</p>\n</li>\n<li><p><code>conditionid</code>: An integer representing the unique identifier for the condition.</p>\n</li>\n<li><p><code>itempricefield</code>: A string representing the item price field.</p>\n</li>\n<li><p><code>itemstatedprice</code>: A string representing the stated price of the item.</p>\n</li>\n<li><p><code>sort</code>: An integer used for sorting purposes.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["webapi.svc","Condition","JSON","GetConditionByCode"],"host":["api","iqreseller","com"],"query":[{"key":"Code","value":"NEW"}],"variable":[]}},"response":[],"_postman_id":"bb6e5791-73c6-41f6-80c7-22a31c26f52f"},{"name":"Get Condition by id JSON","id":"8a63c355-e509-4e2f-bbae-43fda295edeb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Condition/JSON/GetConditionById?id=1","description":"<h2 id=\"request-description\"><strong>Request Description</strong></h2>\n<p>This is an HTTP GET request to retrieve the condition details by a specific identifier.</p>\n<h3 id=\"endpoint\"><strong>Endpoint</strong></h3>\n<p><code>GET https://api.iqreseller.com/webapi.svc/Condition/JSON/GetConditionById</code></p>\n<h3 id=\"parameters\"><strong>Parameters</strong></h3>\n<ul>\n<li><strong>id</strong> (required): The unique identifier for the condition you want to retrieve.</li>\n</ul>\n<h3 id=\"expected-response\"><strong>Expected Response</strong></h3>\n<p>The response will return a JSON object with the following structure:</p>\n<ul>\n<li><p><strong>brokerbinitem</strong>: (string) A field representing broker bin item.</p>\n</li>\n<li><p><strong>code</strong>: (string) A code associated with the condition.</p>\n</li>\n<li><p><strong>condition</strong>: (string) The description of the condition.</p>\n</li>\n<li><p><strong>conditionid</strong>: (integer) The unique identifier for the condition.</p>\n</li>\n<li><p><strong>itempricefield</strong>: (string) A field representing item price.</p>\n</li>\n<li><p><strong>itemstatedprice</strong>: (string) A field representing the stated price of the item.</p>\n</li>\n<li><p><strong>sort</strong>: (integer) A sorting value for the condition.</p>\n</li>\n</ul>\n<h3 id=\"response-status\"><strong>Response Status</strong></h3>\n<ul>\n<li><strong>200 OK</strong>: Indicates that the request was successful and the condition details have been retrieved.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["webapi.svc","Condition","JSON","GetConditionById"],"host":["api","iqreseller","com"],"query":[{"key":"id","value":"1"}],"variable":[]}},"response":[],"_postman_id":"8a63c355-e509-4e2f-bbae-43fda295edeb"},{"name":"Get Condition by id XML","id":"0b7b3ec8-68de-4247-8497-4044ca3b1fc7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Condition/XML/GetConditionById?id=1","description":"<h2 id=\"request-description\"><strong>Request Description:</strong></h2>\n<p>This API endpoint retrieves a specific condition by its unique identifier.</p>\n<h3 id=\"request-parameters\"><strong>Request Parameters:</strong></h3>\n<ul>\n<li><strong>id</strong> (required): The unique identifier for the condition you want to retrieve.</li>\n</ul>\n<h3 id=\"expected-response\"><strong>Expected Response:</strong></h3>\n<p>On a successful request, you will receive a response with a status code of <strong>200</strong> and the content type <strong>application/xml</strong>. The response will contain the details of the condition in XML format, structured as follows:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-xml\">&lt;Condition&gt;\n    &lt;brokerbinitem&gt;&lt;/brokerbinitem&gt;\n    &lt;code class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;&lt;/code&gt;\n    &lt;condition&gt;&lt;/condition&gt;\n    &lt;conditionid&gt;&lt;/conditionid&gt;\n    &lt;itempricefield&gt;&lt;/itempricefield&gt;\n    &lt;itemstatedprice&gt;&lt;/itemstatedprice&gt;\n    &lt;sort&gt;&lt;/sort&gt;\n&lt;/Condition&gt;\n\n</code></pre>\n<h3 id=\"notes\"><strong>Notes:</strong></h3>\n<p>Ensure that the <code>id</code> parameter is correctly specified to retrieve the desired condition.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Condition","XML","GetConditionById"],"host":["api","iqreseller","com"],"query":[{"key":"id","value":"1"}],"variable":[]}},"response":[],"_postman_id":"0b7b3ec8-68de-4247-8497-4044ca3b1fc7"},{"name":"Get Condition by Desc","id":"290a2143-504a-453c-9550-23d76d8e4048","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Condition/XML/GetConditionByDesc?Desc=NEW","description":"<h2 id=\"get-condition-by-description\">Get Condition by Description</h2>\n<p>This endpoint retrieves the condition details based on a specified description. It is useful for obtaining information about various conditions, which can be utilized in other parts of your application or API workflow.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: GET</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api.iqreseller.com/webapi.svc/Condition/XML/GetConditionByDesc</code></p>\n</li>\n<li><p><strong>Query Parameters</strong>:</p>\n<ul>\n<li><code>Desc</code> (string, required): The description of the condition you want to retrieve. For example, using <code>Desc=NEW</code> will fetch the details for the condition labeled as \"NEW\".</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<ul>\n<li><p><strong>Status Code</strong>: 200 OK</p>\n</li>\n<li><p><strong>Content-Type</strong>: application/xml</p>\n</li>\n<li><p>&lt;$ xmlns=\"\" xmlns:i=\"\"&gt;<br />  Each element provides specific details regarding the condition, such as:</p>\n<ul>\n<li><p><code>brokerbinitem</code>: Represents the broker's bin item associated with the condition.</p>\n</li>\n<li><p><code>code</code>: A code identifier for the condition.</p>\n</li>\n<li><p><code>condition</code>: A textual representation of the condition.</p>\n</li>\n<li><p><code>conditionid</code>: A unique identifier for the condition.</p>\n</li>\n<li><p><code>itempricefield</code>: The price field associated with the item.</p>\n</li>\n<li><p><code>itemstatedprice</code>: The stated price of the item.</p>\n</li>\n<li><p><code>sort</code>: Sorting information related to the condition.</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["webapi.svc","Condition","XML","GetConditionByDesc"],"host":["api","iqreseller","com"],"query":[{"key":"Desc","value":"NEW"}],"variable":[]}},"response":[],"_postman_id":"290a2143-504a-453c-9550-23d76d8e4048"},{"name":"Get All Condition Codes","id":"3b1d6fcd-cbf9-459d-82f9-c61e4c5df40e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Condition/XML/GetConditions?Page=0&SortBy =0","description":"<h2 id=\"request-description\">Request Description</h2>\n<p>This HTTP GET request retrieves a list of condition codes from the condition table in the IQ Reseller API.</p>\n<h3 id=\"purpose\">Purpose</h3>\n<p>The purpose of this request is to obtain various condition codes that can be used for categorizing or filtering products based on their conditions.</p>\n<h3 id=\"input-parameters\">Input Parameters</h3>\n<ul>\n<li><p><strong>Page</strong>: (integer) The page number of the results to retrieve. Default is <code>0</code>.</p>\n</li>\n<li><p><strong>SortBy</strong>: (integer) The criteria by which the results should be sorted. Default is <code>0</code>.</p>\n</li>\n</ul>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>The response will be in XML format and will include:</p>\n<ul>\n<li><p><strong>ArrayOfCondition</strong>: An object containing:</p>\n<ul>\n<li><p><strong>Condition</strong>: An array of condition objects, each with the following properties:</p>\n<ul>\n<li><p><strong>brokerbinitem</strong>: (string) The broker bin item associated with the condition.</p>\n</li>\n<li><p><strong>code</strong>: (string) The unique code representing the condition.</p>\n</li>\n<li><p><strong>condition</strong>: (string) A description of the condition.</p>\n</li>\n<li><p><strong>conditionid</strong>: (string) The unique identifier for the condition.</p>\n</li>\n<li><p><strong>itempricefield</strong>: (string) The price field associated with the item.</p>\n</li>\n<li><p><strong>itemstatedprice</strong>: (string) The stated price of the item.</p>\n</li>\n<li><p><strong>sort</strong>: (string) The sorting value for the condition.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-xml\">&lt;ArrayOfCondition xmlns=\"\" xmlns:i=\"\"&gt;\n    &lt;Condition&gt;\n        &lt;brokerbinitem&gt;&lt;/brokerbinitem&gt;\n        &lt;code class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;&lt;/code&gt;\n        &lt;condition&gt;&lt;/condition&gt;\n        &lt;conditionid&gt;&lt;/conditionid&gt;\n        &lt;itempricefield&gt;&lt;/itempricefield&gt;\n        &lt;itemstatedprice&gt;&lt;/itemstatedprice&gt;\n        &lt;sort&gt;&lt;/sort&gt;\n    &lt;/Condition&gt;\n&lt;/ArrayOfCondition&gt;\n\n</code></pre>\n<p>This request is expected to return a <code>200 OK</code> status code upon successful execution.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Condition","XML","GetConditions"],"host":["api","iqreseller","com"],"query":[{"key":"Page","value":"0"},{"key":"SortBy ","value":"0"}],"variable":[]}},"response":[],"_postman_id":"3b1d6fcd-cbf9-459d-82f9-c61e4c5df40e"},{"name":"Get Conditions Count","id":"9b409234-4765-41f1-862b-7a34e22893a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Condition/GetConditionsCount","description":"<h3 id=\"get-conditions-count\">Get Conditions Count</h3>\n<p>This HTTP GET request retrieves the current count of all conditions that have been entered into the database within the Condition table.</p>\n<h4 id=\"purpose\">Purpose</h4>\n<p>The primary purpose of this request is to provide users with the total number of conditions available in the system, which can be useful for analytics, reporting, or monitoring purposes.</p>\n<h4 id=\"expected-input-parameters\">Expected Input Parameters</h4>\n<p>This request does not require any input parameters.</p>\n<h4 id=\"response-structure\">Response Structure</h4>\n<p>On a successful execution, the API returns a response with the following structure:</p>\n<ul>\n<li><p><strong>Status</strong>: 200 (indicating a successful request)</p>\n</li>\n<li><p><strong>Content-Type</strong>: application/xml</p>\n</li>\n<li><p>&lt;_&gt; &lt;$ xmlns=\"\"&gt;</p>\n</li>\n</ul>\n<p>The response contains an XML structure where:</p>\n<ul>\n<li><p>: This is the root element that encapsulates the count information.</p>\n</li>\n<li><p><code>&lt;_&gt;</code>: This element holds the count value (currently masked).</p>\n</li>\n<li><p><code>&lt;$&gt;</code>: This element includes the XML namespace (currently masked).</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["webapi.svc","Condition","GetConditionsCount"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"9b409234-4765-41f1-862b-7a34e22893a3"},{"name":"Insert Condition Code","id":"d14bda9d-b22f-4093-adb4-2fc00c14f1b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/xml","type":"text"},{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<ConditionCodes>\n    <Condition>\n        <brokerbinitem>False</brokerbinitem>\n        <code>REFRENTAL</code>\n        <condition>REFUBISHED RENTAL</condition>\n        <itempricefield>0</itempricefield>\n        <itemstatedprice>0</itemstatedprice>\n        <sort>0</sort>\n    </Condition>\n</ConditionCodes>"},"url":"https://api.iqreseller.com/webapi.svc/Condition/XML/InsertConditionCodeByXML","description":"<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>POST https://api.iqreseller.com/webapi.svc/Condition/XML/InsertConditionCodeByXML</code></p>\n<h3 id=\"purpose\">Purpose</h3>\n<p>This request is designed to create a new condition code by adding a new record to the condition table in the IQ Reseller API.</p>\n<h3 id=\"expected-input-parameters\">Expected Input Parameters</h3>\n<ul>\n<li><strong>Raw Request Body</strong>: The request expects an XML structure that defines the new condition code to be inserted. The exact parameters are not specified in the provided information.</li>\n</ul>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>Upon successful execution, the API will return a response with the following structure:</p>\n<ul>\n<li><p><strong>Status</strong>: HTTP status code indicating the result of the request (e.g., 200 for success).</p>\n</li>\n<li><p><strong>Content-Type</strong>: The type of content returned, which is <code>application/xml</code>.</p>\n</li>\n<li><p><strong>ReturnObject</strong>: Contains the result of the operation.</p>\n<ul>\n<li><p><strong>ErrorObject</strong>: Provides details about any error that occurred during the request.</p>\n</li>\n<li><p><strong>Information</strong>: Additional information regarding the request status.</p>\n</li>\n<li><p><strong>Status</strong>: Indicates the status of the operation.</p>\n</li>\n<li><p><strong>StatusDescription</strong>: A description of the status.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-xml\">{\n  \"ReturnObject\": {\n    \"$\": {\n      \"xmlns\": \"\",\n      \"xmlns:i\": \"\"\n    },\n    \"ErrorObject\": {\n      \"$\": {\n        \"i:nil\": \"\"\n      }\n    },\n    \"Information\": \"\",\n    \"Status\": \"\",\n    \"StatusDescription\": \"\"\n  }\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["webapi.svc","Condition","XML","InsertConditionCodeByXML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d14bda9d-b22f-4093-adb4-2fc00c14f1b3"},{"name":"Get Bills Count XML","id":"24b01a32-24ca-48bb-a96d-ba273d553eaa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Bills/GetBillsCount","description":"<h2 id=\"get-bills-count\">Get Bills Count</h2>\n<p>This request retrieves the count of the rows in the Bills table from the IQ Reseller API. It is useful for understanding the total number of bills available in the system.</p>\n<h3 id=\"request-details\">Request Details</h3>\n<ul>\n<li><p><strong>Method</strong>: GET</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api.iqreseller.com/webapi.svc/Bills/GetBillsCount</code></p>\n</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon a successful request, the API will return a response with a status code of <code>200</code>. The response will be in XML format and will contain the following structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-xml\">&lt;int&gt;\n    &lt;_&gt;\n    &lt;$ xmlns=\"\"&gt;\n&lt;/int&gt;\n\n</code></pre>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that your request adheres to the API's authentication and authorization requirements.</p>\n</li>\n<li><p>This endpoint does not require any input parameters.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["webapi.svc","Bills","GetBillsCount"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"24b01a32-24ca-48bb-a96d-ba273d553eaa"}],"id":"75d86f99-3eb4-4951-91be-5d0ebc0aaab0","description":"<p>This folder contains endpoints used to <strong>retrieve inventory condition codes</strong>. Condition codes identify the state or quality of inventory items (such as new, refurbished, or used). These APIs allow users to query condition codes used when listing or managing inventory items.</p>\n","_postman_id":"75d86f99-3eb4-4951-91be-5d0ebc0aaab0"},{"name":"Contact","item":[{"name":"Get Contacts by Page","id":"7dcac66e-b7de-4a64-8235-5453b7f0548b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Contact/JSON/GetContacts?Page=0&PageSize=0&SortBy=0","description":"<h3 id=\"get-contacts\">Get Contacts</h3>\n<p>This request retrieves a list of contacts from the IQ Reseller API. It allows you to specify pagination and sorting options through query parameters.</p>\n<h4 id=\"request-parameters\">Request Parameters</h4>\n<ul>\n<li><p><strong>Page</strong>: (integer) The page number of the results to retrieve. Default is <code>0</code>.</p>\n</li>\n<li><p><strong>PageSize</strong>: (integer) The number of contacts to return per page. Default is <code>0</code>, which may indicate no limit.</p>\n</li>\n<li><p><strong>SortBy</strong>: (integer) The criteria by which to sort the contacts. Default is <code>0</code>.</p>\n</li>\n</ul>\n<h4 id=\"response-structure\">Response Structure</h4>\n<p>On a successful request, the API returns a JSON array containing contact objects with the following structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n    {\n        \"address1\": \"\",\n        \"address2\": \"\",\n        \"address3\": \"\",\n        \"billto\": true,\n        \"city\": \"\",\n        \"companyname\": \"\",\n        \"contact\": true,\n        \"contactid\": \"\",\n        \"contactnotes\": \"\",\n        \"country\": \"\",\n        \"cvcode\": \"\",\n        \"email\": \"\",\n        \"email1\": \"\",\n        \"email2\": \"\",\n        \"email3\": \"\",\n        \"email4\": \"\",\n        \"email5\": \"\",\n        \"fax\": \"\",\n        \"firstname\": \"\",\n        \"freightistaxable\": true,\n        \"gender\": \"\",\n        \"id\": \"\",\n        \"installchargesaretaxable\": true,\n        \"lastname\": \"\",\n        \"lastupdatedby\": \"\",\n        \"miscchargesaretaxable\": true,\n        \"phone1\": \"\",\n        \"phone2\": \"\",\n        \"phone3\": \"\",\n        \"phone4\": \"\",\n        \"phone5\": \"\",\n        \"postalcode\": \"\",\n        \"pretitle\": \"\",\n        \"remitto\": true,\n        \"shipto\": true,\n        \"source\": \"\",\n        \"state\": \"\",\n        \"subtitle\": \"\",\n        \"tax1auth\": \"\",\n        \"tax1pct\": \"\",\n        \"tax2auth\": \"\",\n        \"tax2pct\": \"\",\n        \"tax3auth\": \"\",\n        \"tax3pct\": \"\",\n        \"tax4auth\": \"\",\n        \"tax4pct\": \"\",\n        \"taxable\": true,\n        \"taxstate\": \"\",\n        \"url\": \"\",\n        \"userdefined1\": \"\",\n        \"userdefined2\": \"\",\n        \"userdefined3\": \"\",\n        \"userdefined4\": \"\",\n        \"userdefined5\": \"\",\n        \"website1\": \"\"\n    }\n]\n\n</code></pre>\n<h4 id=\"notes\">Notes</h4>\n<ul>\n<li><p>The response will include various fields related to the contact, such as <code>firstname</code>, <code>lastname</code>, <code>email</code>, and <code>phone</code> numbers, among others.</p>\n</li>\n<li><p>The API will return a <code>200</code> status code upon a successful request.</p>\n</li>\n</ul>\n<p>This endpoint is useful for applications that need to manage or display contact information efficiently.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Contact","JSON","GetContacts"],"host":["api","iqreseller","com"],"query":[{"key":"Page","value":"0"},{"key":"PageSize","value":"0"},{"key":"SortBy","value":"0"}],"variable":[]}},"response":[],"_postman_id":"7dcac66e-b7de-4a64-8235-5453b7f0548b"},{"name":"Get Contacts Count","id":"75cd130d-b510-4e87-9848-a3b4dbae2b5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Contact/GetContactsCount","urlObject":{"protocol":"https","path":["webapi.svc","Contact","GetContactsCount"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"75cd130d-b510-4e87-9848-a3b4dbae2b5c"},{"name":"Get Contacts by CVid","id":"309d70d7-64f7-468c-95a4-78275dfdd3c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Contact/JSON/GetContactsByCVid?cvid=25","urlObject":{"protocol":"https","path":["webapi.svc","Contact","JSON","GetContactsByCVid"],"host":["api","iqreseller","com"],"query":[{"key":"cvid","value":"25"}],"variable":[]}},"response":[],"_postman_id":"309d70d7-64f7-468c-95a4-78275dfdd3c9"},{"name":"Get contacts by CVCode","id":"5c28e74e-96c3-4ba6-ae97-8e7edc8cf1f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Contact/JSON/GetContactsByCVCode?cvcode=IQRESELLER","description":"<p>This request with get the information for the cvcode that is supplied as a parameter</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Contact","JSON","GetContactsByCVCode"],"host":["api","iqreseller","com"],"query":[{"key":"cvcode","value":"IQRESELLER"}],"variable":[]}},"response":[],"_postman_id":"5c28e74e-96c3-4ba6-ae97-8e7edc8cf1f0"},{"name":"Insert Contact By XML","id":"42db0e32-9272-43c2-8f12-87c1382e81a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"raw","raw":"<CV>\n<Contacts>\n\t<Contact>\n<address1>778 Seventh St</address1>\n<address2>Suite 100</address2>\n<address3></address3>\n<city>Breckinridge</city>\n<companyname>TransDirect Inc</companyname>\n<contactnotes/>\n<country>United States</country>\n<cvcode>ANEW</cvcode>\n<email/>\n<email1/>\n<email2/>\n<email3/>\n<email4/>\n<email5/>\n<fax></fax>\n<firstname>George</firstname>\n<gender>male</gender>\n<id>102</id>\n<isfreighttaxable>False</isfreighttaxable>\n<isinstalltaxable>False</isinstalltaxable>\n<ismainbillto>True</ismainbillto>\n<ismaincontact>True</ismaincontact>\n<ismainremit>True</ismainremit>\n<ismainshipto>True</ismainshipto>\n<ismisctaxable>False</ismisctaxable>\n<istaxable>True</istaxable>\n<lastname>Jetson</lastname>\n<lastupdatedby>WEB</lastupdatedby>\n<phone>556338888</phone>\n<phone2/>\n<phone3/>\n<phone4/>\n<phone5/>\n<postalcode>66555</postalcode>\n<pretitle/>\n<source>CV</source>\n<state>MN</state>\n<subtitle></subtitle>\n<tax1auth>T3</tax1auth>\n<tax1pct>0.897900</tax1pct>\n<tax2auth>A1</tax2auth>\n<tax2pct>0.757500</tax2pct>\n<tax3auth>ALL</tax3auth>\n<tax3pct>1.353600</tax3pct>\n<tax4auth>City</tax4auth>\n<tax4pct>0.464600</tax4pct>\n<taxstate>MN</taxstate>\n<url/>\n<userdefined1/>\n<userdefined2/>\n<userdefined3/>\n<userdefined4/>\n<userdefined5/>\n<website1/>\n\t</Contact>\n</Contacts>\n</CV>"},"url":"https://api.iqreseller.com/webapi.svc/Contact/XML/InsertContactByXML","description":"<p>This request will insert a new record into the Contact table.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Contact","XML","InsertContactByXML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"42db0e32-9272-43c2-8f12-87c1382e81a0"},{"name":"Insert Contact by JSON","id":"2d270b38-5d32-422a-b224-81f3d7dfa3cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"Address1\": \"2929 W Washington Blvd\",\n\t\t\"address2\": \"Suite 100\",\n\t\t\"address3\":\"\" ,\n\t\t\"city\": \"Fargo\",\n\t\t\"companyname\": \"Barngoods Inc\",\n\t\t\"contactnotes\": \"\",\n\t\t\"country\": \"United States\",\n\t\t\"cvcode\": \"AMAZON\",\n        \"Email1\": \"HANDH@GMAIL.COM\",\n\t\t\"email2\": \"\",\n\t\t\"email3\": \"\",\n\t\t\"email4\": \"\",\n\t\t\"email5\": \"\",\n\t\t\"fax\": \"\",\n\t\t\"firstname\": \"SHINING\",\n\t\t\"gender\": \"male\",\n\t\t\"isfreighttaxable\": \"False\",\n\t\t\"isinstalltaxable\": \"False\",\n\t\t\"ismainbillto\": \"True\",\n\t\t\"ismaincontact\": \"True\",\n\t\t\"ismainremit\": \"True\",\n\t\t\"ismainshipto\": \"True\",\n\t\t\"ismisctaxable\": \"False\",\n\t\t\"istaxable\": \"True\",\n\t\t\"lastname\": \"STARR\",\n\t\t\"lastupdatedby\": \"WEB\",\n\t\t\"phone\": \"3101234567\",\n\t\t\"phone2\": \"\",\n\t\t\"phone3\": \"\",\n\t\t\"phone4\": \"\",\n\t\t\"phone5\": \"\",\n\t\t\"postalcode\": \"90292\",\n\t\t\"pretitle\": \"\",\n\t\t\"source\": \"CV\",\n\t\t\"state\": \"CA\",\n\t\t\"subtitle\": \"\",\n\t\t\"tax1auth\": \"T3\",\n\t\t\"tax1pct\": \"0.897900\",\n\t\t\"tax2auth\": \"A1\",\n\t\t\"tax2pct\": \"0.757500\",\n\t\t\"tax3auth\": \"ALL\",\n\t\t\"tax3pct\": \"1.353600\",\n\t\t\"tax4auth\": \"City\",\n\t\t\"tax4pct\": \"0.464600\",\n\t\t\"taxstate\": \"MN\",\n\t\t\"url\": \"\",\n\t\t\"userdefined1\": \"\",\n\t\t\"userdefined2\": \"\",\n\t\t\"userdefined3\": \"\",\n\t\t\"userdefined4\": \"\",\n\t\t\"userdefined5\": \"\",\n\t\t\"website1\": \"\"\n    }\n]"},"url":"https://api.iqreseller.com/webapi.svc/Contact/JSON/InsertContactByJSON","description":"<p>This request adds a new contact to the contact table.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Contact","JSON","InsertContactByJSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2d270b38-5d32-422a-b224-81f3d7dfa3cf"},{"name":"Update Contact","id":"b234a13b-abcc-4936-8867-e11fd45ce27b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"Address1\": \"2929 W Washington Blvd\",\r\n        \"Address2\": \"second floor\",\r\n        \"City\": \"Bismark\",\r\n        \"Company\": \"\",\r\n        \"Country\": \"UNITED STATES\",\r\n        \"Cvcode\": \"AMAZON\",\r\n        \"Email\": \"HANDH@GMAIL.COM\",\r\n        \"Firstname\": \"RINGO\",\r\n        \"Id\": 56,\r\n        \"Lastname\": \"STARR\",\r\n        \"Phone1\": \"3101234567\",\r\n        \"Postalcode\": \"90292\",\r\n        \"State\": \"CA\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/Contact/JSON/UpdateContacts","urlObject":{"protocol":"https","path":["webapi.svc","Contact","JSON","UpdateContacts"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b234a13b-abcc-4936-8867-e11fd45ce27b"}],"id":"bff6bfff-f4ce-4215-9917-7dbd5de8f075","description":"<p>This folder contains endpoints for <strong>retrieving and managing contact information</strong> associated with customers, vendors, or internal records. These APIs allow users to retrieve contacts, access contact details, and reference contact data used throughout the system.</p>\n","_postman_id":"bff6bfff-f4ce-4215-9917-7dbd5de8f075"},{"name":"Currency Code","item":[{"name":"Get Currencies List","id":"0c33cd98-be52-4f10-bb76-d30eeefec848","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Currency/XML/GetCurrencies","description":"<h1 id=\"get-currencies\">Get Currencies</h1>\n<p>This endpoint retrieves a list of available currencies along with their details from the IQ Reseller API. It is particularly useful for applications that need to display currency information or perform currency conversions.</p>\n<h2 id=\"request\">Request</h2>\n<p><strong>Method:</strong> GET<br /><strong>Endpoint:</strong> <code>https://api.iqreseller.com/webapi.svc/Currency/XML/GetCurrencies</code></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>This endpoint does not require any request parameters.</p>\n<h2 id=\"response\">Response</h2>\n<p>Upon a successful request, the API will return a response with a status code of <code>200</code> and a content type of <code>application/xml</code>. The response will contain an XML structure detailing the available currencies.</p>\n<h3 id=\"response-format\">Response Format</h3>\n<p>The response will include the following structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-xml\">&lt;ArrayOfCurrency&gt;\n    &lt;Currency&gt;\n        &lt;basecurrencyflag&gt;&lt;/basecurrencyflag&gt;\n        &lt;checkname&gt;&lt;/checkname&gt;\n        &lt;currencycode&gt;&lt;/currencycode&gt;\n        &lt;currencydefid&gt;&lt;/currencydefid&gt;\n        &lt;currencyrates&gt;\n            &lt;Rates&gt;\n                &lt;Rate&gt;\n                    &lt;currencycode&gt;&lt;/currencycode&gt;\n                    &lt;currencyrateid&gt;&lt;/currencyrateid&gt;\n                    &lt;effectivedate&gt;&lt;/effectivedate&gt;\n                    &lt;rate&gt;&lt;/rate&gt;\n                &lt;/Rate&gt;\n            &lt;/Rates&gt;\n        &lt;/currencyrates&gt;\n        &lt;currencysymbol&gt;&lt;/currencysymbol&gt;\n        &lt;description&gt;&lt;/description&gt;\n        &lt;displaysymbolleft&gt;&lt;/displaysymbolleft&gt;\n        &lt;numberofdecimals&gt;&lt;/numberofdecimals&gt;\n    &lt;/Currency&gt;\n&lt;/ArrayOfCurrency&gt;\n\n</code></pre>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Each <code>Currency</code> element contains various attributes such as <code>currencycode</code>, <code>currencysymbol</code>, and <code>description</code>, which provide essential information about the currency.</p>\n</li>\n<li><p>The <code>currencyrates</code> section includes an array of <code>Rates</code>, which provides details about the currency rates, including the effective date and the rate itself.</p>\n</li>\n<li><p>This endpoint is part of a broader API that may return similar structures for other resources, such as products, which can be useful for integrating currency and product information together.</p>\n</li>\n</ul>\n<p>This endpoint is essential for applications that require real-time currency data for transactions or display purposes.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Currency","XML","GetCurrencies"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0c33cd98-be52-4f10-bb76-d30eeefec848"},{"name":"Get Currency by Id","id":"0f5645b5-a114-4a94-835a-e29e86c02f77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Currency/XML/GetCurrencyById?id=8","description":"<h2 id=\"get-currency-by-id\">Get Currency by ID</h2>\n<p>This endpoint retrieves currency information based on a specified currency ID.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: GET</p>\n</li>\n<li><p><strong>URL</strong>: <code>https://api.iqreseller.com/webapi.svc/Currency/XML/GetCurrencyById</code></p>\n</li>\n<li><p><strong>Query Parameters</strong>:</p>\n<ul>\n<li><code>id</code> (required): The unique identifier of the currency you wish to retrieve.</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<ul>\n<li><p><strong>Status Code</strong>: 200 OK</p>\n</li>\n<li><p><strong>Content-Type</strong>: application/xml</p>\n</li>\n</ul>\n<h4 id=\"response-structure\">Response Structure</h4>\n<p>The response will be an XML document containing the following structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-xml\">&lt;Currency&gt;\n    &lt;basecurrencyflag&gt;&lt;/basecurrencyflag&gt;\n    &lt;checkname&gt;&lt;/checkname&gt;\n    &lt;currencycode&gt;&lt;/currencycode&gt;\n    &lt;currencydefid&gt;&lt;/currencydefid&gt;\n    &lt;currencyrates&gt;\n        &lt;Rates&gt;\n            &lt;currencycode&gt;&lt;/currencycode&gt;\n            &lt;currencyrateid&gt;&lt;/currencyrateid&gt;\n            &lt;effectivedate&gt;&lt;/effectivedate&gt;\n            &lt;rate&gt;&lt;/rate&gt;\n        &lt;/Rates&gt;\n    &lt;/currencyrates&gt;\n    &lt;currencysymbol&gt;&lt;/currencysymbol&gt;\n    &lt;description&gt;&lt;/description&gt;\n    &lt;displaysymbolleft&gt;&lt;/displaysymbolleft&gt;\n    &lt;numberofdecimals&gt;&lt;/numberofdecimals&gt;\n&lt;/Currency&gt;\n\n</code></pre>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the <code>id</code> parameter is correctly specified to retrieve the desired currency information.</p>\n</li>\n<li><p>The structure of the response may vary based on the currency details available in the database.</p>\n</li>\n<li><p>Similar endpoints may return related data models, which can be useful for understanding the overall currency and product relationship within the API.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["webapi.svc","Currency","XML","GetCurrencyById"],"host":["api","iqreseller","com"],"query":[{"key":"id","value":"8"}],"variable":[]}},"response":[],"_postman_id":"0f5645b5-a114-4a94-835a-e29e86c02f77"},{"name":"Get Currency by Code","id":"3a68acd1-93fa-4c1f-9b01-27f0509f572f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-code","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Currency/XML/GetCurrencyByCode?Code=NZD","urlObject":{"protocol":"https","path":["webapi.svc","Currency","XML","GetCurrencyByCode"],"host":["api","iqreseller","com"],"query":[{"key":"Code","value":"NZD"}],"variable":[]}},"response":[],"_postman_id":"3a68acd1-93fa-4c1f-9b01-27f0509f572f"},{"name":"Get Curriencies Count","id":"97840fae-b3db-4c06-8f11-72bc126ac35c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-totken","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/Currency/GetCurrencyCodesCount","description":"<p>This request will get the value for the total number of currencies that have been entered into the Currency table.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Currency","GetCurrencyCodesCount"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"97840fae-b3db-4c06-8f11-72bc126ac35c"}],"id":"cb017a84-1d93-466c-ab43-ae7f8430a867","description":"<p>This folder holds examples of requests that gather information about the records from the currency code table.</p>\n","_postman_id":"cb017a84-1d93-466c-ab43-ae7f8430a867"},{"name":"CV","item":[{"name":"Get All CV Records JSON","id":"60420b59-a04d-41e6-b708-bcb29ce049eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/CV/json/GetCVs","description":"<p>This request will get a listing of all of the CV records from the CV table.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","CV","json","GetCVs"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"60420b59-a04d-41e6-b708-bcb29ce049eb"},{"name":"Get All CV Records XML","id":"a98d5388-2ef1-4914-bd4d-863036e809ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/CV/xml/GetCVs","description":"<p>This request will get a listing of all of the CV records from the CV table.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","CV","xml","GetCVs"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a98d5388-2ef1-4914-bd4d-863036e809ea"},{"name":"Get CVs By Page","id":"45c408b5-3635-4ad6-af46-b8e84527bed3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/CV/XML/GetCvsByPage?Page=2&PageSize =100&SortBy=0","description":"<p>This request will retrieve the cv that match the Page parameter</p>\n<p>Parameters:</p>\n<p>Page</p>\n<p>PageSize</p>\n<p>SortBy</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","CV","XML","GetCvsByPage"],"host":["api","iqreseller","com"],"query":[{"key":"Page","value":"2"},{"key":"PageSize ","value":"100"},{"key":"SortBy","value":"0"}],"variable":[]}},"response":[],"_postman_id":"45c408b5-3635-4ad6-af46-b8e84527bed3"},{"name":"Get CVs Count","id":"c58e25ba-e6cb-42c5-866c-f7c738b4474e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/CV/GetCVsCount","description":"<p>Get the current value for the number of CVs</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","CV","GetCVsCount"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c58e25ba-e6cb-42c5-866c-f7c738b4474e"},{"name":"Get CV by Id","id":"793b0321-3215-448c-ba49-57eea05fc8cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/CV/XML/GetCvById?id=35","description":"<p>This request get the cv record that will match the id number that was input into request.</p>\n<p>Only paramter that is available,</p>\n<p>Id</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","CV","XML","GetCvById"],"host":["api","iqreseller","com"],"query":[{"key":"id","value":"35"}],"variable":[]}},"response":[],"_postman_id":"793b0321-3215-448c-ba49-57eea05fc8cc"},{"name":"Get CV by Code","id":"986f8f2a-8236-4d05-a74d-288c02d20ee0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/CV/XML/GetCVByCode?code=HP","description":"<p>This request gets the information for the CV that matches with the parameter called \"code\".</p>\n<p>Only parameter is</p>\n<p>code</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","CV","XML","GetCVByCode"],"host":["api","iqreseller","com"],"query":[{"key":"code","value":"HP"}],"variable":[]}},"response":[],"_postman_id":"986f8f2a-8236-4d05-a74d-288c02d20ee0"},{"name":"Get CVs by CV Type","id":"f40866ca-26ce-4207-b48e-5af719f75cda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/CV/XML/GetCVsByCVType?CVType=Vendor&Page=0&PageSize=0&SortBy=0","description":"<p>This requests gathers data for all of cvs that match the cvtype parameter that is input.</p>\n<p>Parameter List:</p>\n<p>CVType</p>\n<p>Page</p>\n<p>PageSize</p>\n<p>SortBy</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","CV","XML","GetCVsByCVType"],"host":["api","iqreseller","com"],"query":[{"key":"CVType","value":"Vendor"},{"key":"Page","value":"0"},{"key":"PageSize","value":"0"},{"key":"SortBy","value":"0"}],"variable":[]}},"response":[],"_postman_id":"f40866ca-26ce-4207-b48e-5af719f75cda"},{"name":"Get CVs (Revised Version)","id":"b466aee5-2832-4e81-a6ef-c602a0acb0af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://api.iqreseller.com/webapi.svc/CVs/json?cvid=35","description":"<p>Optional Parameters:</p>\n<p>cvid 25<br />cvcode EBAY<br />cvtype VENDOR<br />startdate 3/3/2022<br />enddate 3/5/2022<br />page 0<br />pageSize 0<br />skipcontacts False</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","CVs","json"],"host":["api","iqreseller","com"],"query":[{"key":"cvid","value":"35"}],"variable":[]}},"response":[],"_postman_id":"b466aee5-2832-4e81-a6ef-c602a0acb0af"},{"name":"Insert CV XML","id":"7c094a42-730f-4415-965f-1d43d07ee8de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"raw","raw":"<CVs>\r\n\t    <CV>\r\n        <aprating>0</aprating>\r\n        <arcreditlimit>1000.0000</arcreditlimit>\r\n        <arrating>0</arrating>\r\n        <billdistribution/>\r\n        <creditinvoicenumber>0</creditinvoicenumber>\r\n        <creditlimit>0.00</creditlimit>\r\n        <currency>USD</currency>\r\n        <customeraccount/>\r\n        <customeraccountnumber/>\r\n        <cvcode>Uber</cvcode>\r\n        <cvname>Uber.com Inc</cvname>\r\n        <cvnotes/>\r\n        <dhlaccountchargeno/>\r\n        <erasuremethod/>\r\n        <fedexaccountchargeno/>\r\n        <freightistaxable>false</freightistaxable>\r\n        <importflag>1</importflag>\r\n        <inactive>false</inactive>\r\n        <invoicedidstribution/>\r\n        <is1099>false</is1099>\r\n        <isclientvendor>false</isclientvendor>\r\n        <isprospect>false</isprospect>\r\n        <itadpotype/>\r\n        <itadtemplaate/>\r\n        <lastupdatedby>MA.</lastupdatedby>\r\n        <ledgercvcode/>\r\n        <outstandinginvoicelimit>0</outstandinginvoicelimit>\r\n        <overridesystemshippers>false</overridesystemshippers>\r\n        <pglmasterid>0</pglmasterid>\r\n        <purchase>false</purchase>\r\n        <purchaseterms>NET 15</purchaseterms>\r\n        <recadded>12/12/2019 10:21:13 PM</recadded>\r\n        <rep>JB</rep>\r\n        <sales>false</sales>\r\n        <saleterms>COD</saleterms>\r\n        <securecv>false</securecv>\r\n        <servicefeetemplate/>\r\n        <sglmasterid>0</sglmasterid>\r\n        <shipper>false</shipper>\r\n        <suppliermargin>0.000000</suppliermargin>\r\n        <suspended>false</suspended>\r\n        <taxable>true</taxable>\r\n        <taxexemptregistration></taxexemptregistration>\r\n        <taxregistration></taxregistration>\r\n        <type/>\r\n        <upsaccountchargeno/>\r\n        <userdefined1/>\r\n        <userdefined2/>\r\n        <userdefined3/>\r\n        <userdefined4/>\r\n        <userdefined5/>\r\n        <vendoraccountnumber/>\r\n        <vendorledgeraccount>0</vendorledgeraccount>\r\n    </CV>\r\n</CVs>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/CV/XML/InsertCVByXML","description":"<p>This request adds a new record to the CV table.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","CV","XML","InsertCVByXML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7c094a42-730f-4415-965f-1d43d07ee8de"},{"name":"Update CV XML","event":[{"listen":"test","script":{"id":"70b68228-2160-4693-b997-00d11e9cded5","exec":["[\r","  {\r","   \"vendoraccountnumber\": \"\",\r","   \"customeraccountnumber\": \"\",\r","   \"cvid\": \"0\",\r","   \"cvcode\": \"IQRESELLER\",\r","   \"isclientvendor\": \"false\",\r","   \"arcreditlimit\": \"0\",\r","   \"creditinvoicenumber\": \"0\",\r","   \"creditlimit\": \"70000\",\r","   \"outstandinginvoicelimit\": \"0\",\r","   \"is1099\": \"false\",\r","   \"freightistaxable\": \"false\",\r","   \"taxable\": \"false\",\r","   \"purchase\": \"false\",\r","   \"sales\": \"false\",\r","   \"securecv\": \"false\",\r","   \"sglmasterid\": \"0\",\r","   \"shipper\": \"false\",\r","   \"suspended\": \"false\",\r","   \"inactive\": \"false\",\r","   \"vendorledgeraccount\": \"0\",\r","   \"suppliermargin\": \"0\"\r","  }\r","]"],"type":"text/javascript"}}],"id":"ceca5eb8-5a32-4eee-b692-11f2b923f67c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<CVs>\r\n    <CV>\r\n        <aprating>0</aprating>\r\n        <arcreditlimit>1000.0000</arcreditlimit>\r\n        <arrating>0</arrating>\r\n        <billdistribution/>\r\n        <creditinvoicenumber>0</creditinvoicenumber>\r\n        <creditlimit>0.00</creditlimit>\r\n        <currency>USD</currency>\r\n        <customeraccount>123456789</customeraccount>\r\n        <customeraccountnumber/>\r\n        <cvcode>BARNGOODS</cvcode>\r\n        <cvname>Barngoods Inc</cvname>\r\n        <cvnotes/>\r\n        <dhlaccountchargeno/>\r\n        <erasuremethod/>\r\n        <fedexaccountchargeno/>\r\n        <freightistaxable>false</freightistaxable>\r\n        <importflag>1</importflag>\r\n        <inactive>false</inactive>\r\n        <invoicedidstribution/>\r\n        <is1099>false</is1099>\r\n        <isclientvendor>false</isclientvendor>\r\n        <isprospect>false</isprospect>\r\n        <itadpotype/>\r\n        <itadtemplaate/>\r\n        <lastupdatedby>MA.</lastupdatedby>\r\n        <ledgercvcode/>\r\n        <outstandinginvoicelimit>0</outstandinginvoicelimit>\r\n        <overridesystemshippers>false</overridesystemshippers>\r\n        <pglmasterid>0</pglmasterid>\r\n        <purchase>false</purchase>\r\n        <purchaseterms>NET 30</purchaseterms>\r\n        <recadded>12/12/2019 10: 21: 13 PM</recadded>\r\n        <rep>BB </rep>\r\n        <sales>false</sales>\r\n        <saleterms>COD</saleterms>\r\n        <securecv>false</securecv>\r\n        <servicefeetemplate/>\r\n        <sglmasterid>0</sglmasterid>\r\n        <shipper>false</shipper>\r\n        <suppliermargin>0.000000</suppliermargin>\r\n        <suspended>false</suspended>\r\n        <taxable>true</taxable>\r\n        <taxexemptregistration>TAX2: 123</taxexemptregistration>\r\n        <taxregistration>TAX: 91-1690099</taxregistration>\r\n        <type/>\r\n        <upsaccountchargeno/>\r\n        <userdefined1/>\r\n        <userdefined2/>\r\n        <userdefined3/>\r\n        <userdefined4/>\r\n        <userdefined5/>\r\n        <vendoraccountnumber/>\r\n        <vendorledgeraccount>0</vendorledgeraccount>\r\n    </CV>\r\n</CVs>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/CV/XML/UpdateCVs","description":"<p>This request shows how to update 6 of the fields in the cv table. The fields are cvname, rep, ledgercvcode, cvnotes, type, taxregistration.</p>\n<p>Updatable Fields are:<br />cvname, rep, ledgercvcode, cvnotes, type, taxregistration, taxexemptregistration, creditlimit, invoicedaylimit,<br />outstandinginvoicelimit, is1099, freightistaxable, taxable, purchase terms, securecv, sale terms, suspended,<br />currency, inactive, userdefined1, userdefined2, userdefined3, userdefined4, userdefined5</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","CV","XML","UpdateCVs"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ceca5eb8-5a32-4eee-b692-11f2b923f67c"}],"id":"5830da41-4d54-4143-954d-43b714de380f","description":"<p>This folder contains endpoints used to <strong>retrieve and manage Customer/Vendor (CV) records</strong>. CV records represent business entities within the system that can function as customers, vendors, or both. These APIs allow retrieval of CV information by various identifiers and support integration with billing, sales, and purchasing workflows.</p>\n","_postman_id":"5830da41-4d54-4143-954d-43b714de380f"},{"name":"CV Type","item":[{"name":"Insert CVTypeXML","id":"b82fcd23-a890-4324-a757-f6ae06a259b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"raw","raw":"<cvtypes>\r\n<cvtype>\r\n        <description>EBay18</description>\r\n        <typecategory>Vendor</typecategory>\r\n</cvtype>\r\n<cvtype>\r\n        <description>Target28</description>\r\n        <typecategory>Vendor</typecategory>\r\n</cvtype>\r\n</cvtypes>"},"url":"https://api.iqreseller.com/webapi.svc/CVType/XML/InsertCVTypes","description":"<p>This request will create a new cvtype.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","CVType","XML","InsertCVTypes"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b82fcd23-a890-4324-a757-f6ae06a259b0"},{"name":"Insert CVTypeJSON","id":"894f5442-0414-4470-b489-d4c2bd760891","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[{\r\n    \"CVTypes\": {\r\n      \"cvtype\": [\r\n        {\r\n          \"description\": \"OLDREF\",\r\n          \"typecategory\": \"REFURBISHED\"\r\n        }\r\n      ]\r\n    }\r\n}]"},"url":"https://api.iqreseller.com/webapi.svc/CVType/JSON/InsertCVTypes","urlObject":{"protocol":"https","path":["webapi.svc","CVType","JSON","InsertCVTypes"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"894f5442-0414-4470-b489-d4c2bd760891"},{"name":"Get CV Type","id":"ab75741e-8053-4e7d-a400-7112a53d1b4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/CVType/XML/GetCVTypes","description":"<p>This request will get all of the CV types that are recorded in the table.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","CVType","XML","GetCVTypes"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ab75741e-8053-4e7d-a400-7112a53d1b4f"}],"id":"b9c8989f-bfde-4a34-aaff-40d4d2689a77","_postman_id":"b9c8989f-bfde-4a34-aaff-40d4d2689a77","description":""},{"name":"Erasure Tool - Import XML to Insert Attributes","item":[{"name":"Import XML to insert Attributes","id":"9b25c4d1-02e5-4e32-8f30-e5024d1240f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<CloudReport xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">\r\n  <TransactionID>8</TransactionID>\r\n  <master_id>655</master_id>\r\n  <WareHouse></WareHouse>\r\n  <MasterName></MasterName>\r\n  \r\n</CloudReport>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/ERASURE/INVENTORY/ATTRIBUTES/XML","description":"<p>*<em>API call: ERASURE/INVENTORY/ATTRIBUTES/XMLMethod: POSTMediaType: Media Type - Application/xml</em>***Request input XML Sample</p>\n<p>(Customer use their Erasure report XML as the input</p>\n<p><strong>Response Output Sucess</strong></p>\n<p>Success</p>\n<p>If the input is not correct with valid data, then you will get the Failed message</p>\n<p><strong>Response Output Failure</strong></p>\n<p>Failed: Unknown error occurred</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","ERASURE","INVENTORY","ATTRIBUTES","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"9b25c4d1-02e5-4e32-8f30-e5024d1240f2"}],"id":"78c5415e-018f-408d-80f6-9c9387524e60","_postman_id":"78c5415e-018f-408d-80f6-9c9387524e60","description":""},{"name":"Get and Insert Inventory Attributes","item":[{"name":"Get Inventory Attributes (XML)","id":"f749fc39-06b7-402c-ab07-768a2419cec2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventory/XML/GetInventoryAttributes","description":"<h3 id=\"request-description\">Request Description</h3>\n<p>This is an <strong>HTTP GET</strong> request to the endpoint <code>https://api.iqreseller.com/webapi.svc/Attribute/JSON/GetAttributes</code>.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<ul>\n<li><strong>No parameters are required for this request.</strong></li>\n</ul>\n<h4 id=\"expected-response\">Expected Response</h4>\n<p>The expected response will be in <strong>JSON</strong> format with a <strong>200</strong> status code. The response structure will include:</p>\n<ul>\n<li><p><code>productname</code>: A string representing the name of the product.</p>\n</li>\n<li><p><code>attributes</code>: An array of objects, each containing:</p>\n<ul>\n<li><p><code>name</code>: A string representing the name of the attribute.</p>\n</li>\n<li><p><code>value</code>: A string representing the value of the attribute.</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>Example of the response structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n  {\n    \"productname\": \"\",\n    \"attributes\": [\n      {\n        \"name\": \"\",\n        \"value\": \"\"\n      }\n    ]\n  }\n]\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","XML","GetInventoryAttributes"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f749fc39-06b7-402c-ab07-768a2419cec2"},{"name":"Get Inventory Attributes (JSON)","id":"9a91498a-f645-4c44-a4e4-67a258da39df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Inventory/JSON/GetInventoryAttributes","description":"<h2 id=\"request-description\">Request Description</h2>\n<p>This is an <strong>HTTP GET</strong> request to the endpoint <code>https://api.iqreseller.com/webapi.svc/Attribute/XML/GetAttributes</code>.</p>\n<h3 id=\"purpose\">Purpose</h3>\n<p>This request retrieves all attributes associated with products in an XML format.</p>\n<h3 id=\"request-method\">Request Method</h3>\n<ul>\n<li><strong>GET</strong>: This method is used to request data from the specified resource.</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<ul>\n<li><p><strong>Status Code</strong>: 200 OK</p>\n</li>\n<li><p><strong>Content-Type</strong>: application/xml</p>\n</li>\n</ul>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>The response will contain an XML structure with the following format:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-xml\">&lt;ArrayOfproduct&gt;\n    &lt;product&gt;\n        &lt;productname&gt;&lt;/productname&gt;\n        &lt;attributes&gt;\n            &lt;attribute&gt;\n                &lt;name&gt;&lt;/name&gt;\n                &lt;value&gt;&lt;/value&gt;\n            &lt;/attribute&gt;\n        &lt;/attributes&gt;\n    &lt;/product&gt;\n&lt;/ArrayOfproduct&gt;\n\n</code></pre>\n<h3 id=\"related-data-models\">Related Data Models</h3>\n<p>Similar responses from other endpoints may return data structured as follows:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[{\"productname\":\"\",\"attributes\":[{\"name\":\"\",\"value\":\"\"}]}]\n\n</code></pre>\n<p>This indicates that the data models across various API endpoints are largely consistent.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","JSON","GetInventoryAttributes"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"9a91498a-f645-4c44-a4e4-67a258da39df"},{"name":"Insert Inventory Attributes (XML)","event":[{"listen":"test","script":{"id":"1c143de8-3577-40d5-8361-cadd40d0b06c","exec":["pm.test(\"Response status code is 200\", function () {","    pm.expect(pm.response.code).to.eql(200);","});","","","pm.test(\"Response time is less than 200ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(200);","});","","","pm.test(\"Response matches the expected schema\", function () {","    const responseData = pm.response.json();","    ","    pm.expect(responseData).to.be.an('array').that.is.not.empty;","    ","    responseData.forEach(item => {","        pm.expect(item).to.have.property('productname').that.is.a('string');","        pm.expect(item).to.have.property('attributes').that.is.an('array').that.is.not.empty;","","        item.attributes.forEach(attribute => {","            pm.expect(attribute).to.have.property('name').that.is.a('string');","            pm.expect(attribute).to.have.property('value').that.is.a('string');","        });","    });","});","","","pm.test(\"Attributes array is present and not empty\", function () {","    const responseData = pm.response.json();","    ","    pm.expect(responseData).to.be.an('array').that.is.not.empty;","    responseData.forEach(function(item) {","        pm.expect(item.attributes).to.be.an('array').that.is.not.empty;","    });","});","","","pm.test(\"Each attribute has a valid name and value format\", function () {","    const responseData = pm.response.json();","    ","    pm.expect(responseData).to.be.an('array').that.is.not.empty;","","    responseData.forEach(product => {","        pm.expect(product).to.have.property('productname').that.is.a('string');","        pm.expect(product.attributes).to.be.an('array').that.is.not.empty;","","        product.attributes.forEach(attribute => {","            pm.expect(attribute).to.have.property('name').that.is.a('string').and.to.have.lengthOf.at.least(1);","            pm.expect(attribute).to.have.property('value').that.is.a('string').and.to.have.lengthOf.at.least(1);","        });","    });","});",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"f6f021b7-a52e-41fc-8cf8-276ddc39620e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<products>\r\n    <product>\r\n        <productname>desktop</productname>\r\n        <attributes>\r\n            <attribute>\r\n                <name>Total Memory</name>\r\n                <value>512 GB</value>\r\n            </attribute>\r\n            <attribute>\r\n                <name>Memory Slot</name>\r\n                <value>8</value>\r\n            </attribute>\r\n        </attributes>\r\n    </product>\r\n</products>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventory/XML/InsertInventoryAttribute","description":"<h2 id=\"add-attributes\">Add Attributes</h2>\n<p>This endpoint allows you to insert attributes for a specific product in the system. It uses the HTTP POST method to send data to the API.</p>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>POST https://api.iqreseller.com/webapi.svc/Attribute/XML/InsertAttributes</code></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>The request body should contain the following parameters:</p>\n<ul>\n<li><p><strong>productname</strong> (string): The name of the product for which attributes are being added.</p>\n</li>\n<li><p><strong>attributes</strong> (array): A list of attributes associated with the product. Each attribute should include:</p>\n<ul>\n<li><p><strong>name</strong> (string): The name of the attribute.</p>\n</li>\n<li><p><strong>value</strong> (string): The value of the attribute.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon a successful request, the API will return a 200 status code along with a response body that typically contains the following structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n  {\n    \"productname\": \"\",\n    \"attributes\": [\n      {\n        \"name\": \"\",\n        \"value\": \"\"\n      }\n    ]\n  }\n]\n\n</code></pre>\n<p>This indicates that the attributes have been successfully inserted for the specified product.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","XML","InsertInventoryAttribute"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f6f021b7-a52e-41fc-8cf8-276ddc39620e"},{"name":"Insert Inventory Attributes (JSON)","id":"b2e0951a-cd4f-4a65-840c-8fcbee737d68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"\r\n\r\n[\r\n{\r\n\"productname\": \"laptop\",\r\n\"attributes\": [\r\n{\r\n\"name\": \"Total Memory\",\r\n\"value\": \"555 GB\"\r\n},\r\n{\r\n\"name\": \"Memory Slot\",\r\n\"value\": \"14\"\r\n}\r\n]\r\n}\r\n]\r\n\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventory/JSON/InsertInventoryAttribute","description":"<h2 id=\"insert-attributes\">Insert Attributes</h2>\n<p>This endpoint allows users to insert attributes for a specific product into the system. It is particularly useful for adding detailed specifications or features related to a product, such as memory, storage, or other characteristics.</p>\n<h3 id=\"request-format\">Request Format</h3>\n<p><strong>HTTP Method:</strong> POST<br /><strong>Endpoint:</strong> <code>https://api.iqreseller.com/webapi.svc/Attribute/JSON/InsertAttributes</code></p>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body must be in JSON format and should contain an array of objects, where each object represents a product and its associated attributes. The structure of the request body is as follows:</p>\n<ul>\n<li><p><code>productname</code> (string): The name of the product for which attributes are being added.</p>\n</li>\n<li><p><code>attributes</code> (array): An array of attribute objects, each containing:</p>\n<ul>\n<li><p><code>name</code> (string): The name of the attribute (e.g., \"Total Memory\").</p>\n</li>\n<li><p><code>value</code> (string): The value of the attribute (e.g., \"555 GB\").</p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>Example Request Body:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n  {\n    \"productname\": \"laptop\",\n    \"attributes\": [\n      {\n        \"name\": \"Total Memory\",\n        \"value\": \"555 GB\"\n      }\n    ]\n  }\n]\n\n</code></pre>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>Upon a successful request, the API will return a 200 status code along with a response body that mirrors the structure of the request. The response will contain the following:</p>\n<ul>\n<li><p><code>productname</code> (string): The name of the product.</p>\n</li>\n<li><p><code>attributes</code> (array): An array of attribute objects, where each object includes:</p>\n<ul>\n<li><p><code>name</code> (string): The name of the attribute.</p>\n</li>\n<li><p><code>value</code> (string): The value of the attribute.</p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>Example Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n  {\n    \"productname\": \"\",\n    \"attributes\": [\n      {\n        \"name\": \"\",\n        \"value\": \"\"\n      }\n    ]\n  }\n]\n\n</code></pre>\n<p>This endpoint is essential for managing product specifications effectively within the application, allowing for detailed and structured product information to be stored and retrieved.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","JSON","InsertInventoryAttribute"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b2e0951a-cd4f-4a65-840c-8fcbee737d68"}],"id":"5fe390f5-e8dd-4b9f-8fa4-ae850b0d0ed0","description":"<p>This folder contains requests for adding and changing attributes of inventory items.</p>\n","_postman_id":"5fe390f5-e8dd-4b9f-8fa4-ae850b0d0ed0"},{"name":"Get Inventories","item":[{"name":"Get Inventories by Page","id":"98f3d856-b5c9-446e-b983-467d9fd22c7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Inventory/XML/GetInventories?PageSize=2000","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","XML","GetInventories"],"host":["api","iqreseller","com"],"query":[{"key":"PageSize","value":"2000"}],"variable":[]}},"response":[],"_postman_id":"98f3d856-b5c9-446e-b983-467d9fd22c7c"},{"name":"Get Inventory by id","id":"ab7c397f-2795-4369-9840-e2587fbae7ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Inventory/XML/GetInventoryById?id=192605&incHistory=true&Page=0&PageSize=0&SortBy=0","description":"<p>This request gathers information from the inventory table for the supplied inventoryid.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","XML","GetInventoryById"],"host":["api","iqreseller","com"],"query":[{"key":"id","value":"192605"},{"key":"incHistory","value":"true"},{"key":"Page","value":"0"},{"key":"PageSize","value":"0"},{"key":"SortBy","value":"0"}],"variable":[]}},"response":[],"_postman_id":"ab7c397f-2795-4369-9840-e2587fbae7ec"},{"name":"Get Inventories by Serial Number","id":"345d2b7f-a82e-466d-bc8c-c2f3c5441052","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Inventory/XML/GetInventoriesBySerialNumber?serialnumber=88","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","XML","GetInventoriesBySerialNumber"],"host":["api","iqreseller","com"],"query":[{"key":"serialnumber","value":"88"}],"variable":[]}},"response":[],"_postman_id":"345d2b7f-a82e-466d-bc8c-c2f3c5441052"},{"name":"Get Inventories by POid","id":"d1a2ba97-73a6-4a16-8daf-37da30a14bd4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Inventory/JSON/GetInventoriesByPOId?poid=2600","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","JSON","GetInventoriesByPOId"],"host":["api","iqreseller","com"],"query":[{"key":"poid","value":"2600"}],"variable":[]}},"response":[],"_postman_id":"d1a2ba97-73a6-4a16-8daf-37da30a14bd4"},{"name":"Get Inventories by SOID","id":"208afa7f-648b-4d52-9b6a-aac04e8d9765","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Inventory/XML/GetInventoriesBySOId?soid=1100","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","XML","GetInventoriesBySOId"],"host":["api","iqreseller","com"],"query":[{"key":"soid","value":"1100"}],"variable":[]}},"response":[],"_postman_id":"208afa7f-648b-4d52-9b6a-aac04e8d9765"},{"name":"Get Inventories by Itemid with Page","id":"28b66a48-a38e-4816-9121-d6108507d7bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Inventory/XML/GetInventoriesByItemId?id=4261","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","XML","GetInventoriesByItemId"],"host":["api","iqreseller","com"],"query":[{"key":"id","value":"4261"}],"variable":[]}},"response":[],"_postman_id":"28b66a48-a38e-4816-9121-d6108507d7bb"},{"name":"Get Inventories by ItemNumber with Page","id":"22e15133-d684-4097-b180-2550c3dc2a56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Inventory/XML/GetInventoriesByItemNumber?itemnumber=B1-32&incHistory=true&Page=0&PageSize=0&SortBy=0","description":"<p>This request gathers information about inventories that match the supplied itemnumber</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","XML","GetInventoriesByItemNumber"],"host":["api","iqreseller","com"],"query":[{"key":"itemnumber","value":"B1-32"},{"key":"incHistory","value":"true"},{"key":"Page","value":"0"},{"key":"PageSize","value":"0"},{"description":{"content":"","type":"text/plain"},"key":"SortBy","value":"0"}],"variable":[]}},"response":[],"_postman_id":"22e15133-d684-4097-b180-2550c3dc2a56"},{"name":"Get Inventories by ItemNumber and Mfgr with Page","id":"c9cfce66-06b3-4da1-afca-4d4722ad7392","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Inventory/XML/GetInventoriesByItemNumberAndMfgr?itemNumber=B1-32&mfgr=3com","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","XML","GetInventoriesByItemNumberAndMfgr"],"host":["api","iqreseller","com"],"query":[{"key":"itemNumber","value":"B1-32"},{"key":"mfgr","value":"3com"}],"variable":[]}},"response":[],"_postman_id":"c9cfce66-06b3-4da1-afca-4d4722ad7392"},{"name":"Get Inventories Count","id":"81e8133d-54d3-4e76-8f9f-7e5a76d95b69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Inventory/GetInventoriesCount","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","GetInventoriesCount"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"81e8133d-54d3-4e76-8f9f-7e5a76d95b69"},{"name":"Get Inventories (Revised)","id":"910de7c8-3d11-4850-91e4-0ff71a6f48d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Inventories/XML?inventoryid=191418","urlObject":{"protocol":"https","path":["webapi.svc","Inventories","XML"],"host":["api","iqreseller","com"],"query":[{"key":"inventoryid","value":"191418"}],"variable":[]}},"response":[],"_postman_id":"910de7c8-3d11-4850-91e4-0ff71a6f48d5"},{"name":"Get Inventories (Revised) using cvcode","id":"4099ba10-1ed5-4280-8209-ca3c36be476f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Inventories/XML?cvcode=EBAY","urlObject":{"protocol":"https","path":["webapi.svc","Inventories","XML"],"host":["api","iqreseller","com"],"query":[{"key":"cvcode","value":"EBAY"}],"variable":[]}},"response":[],"_postman_id":"4099ba10-1ed5-4280-8209-ca3c36be476f"},{"name":"Get Inventories (Revised) including history and using cvcode","id":"000b74a1-6224-4746-811e-f4a1076ad2e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Inventories/XML?cvcode=EBAY&includehistory=true","urlObject":{"protocol":"https","path":["webapi.svc","Inventories","XML"],"host":["api","iqreseller","com"],"query":[{"key":"cvcode","value":"EBAY"},{"key":"includehistory","value":"true"}],"variable":[]}},"response":[],"_postman_id":"000b74a1-6224-4746-811e-f4a1076ad2e8"},{"name":"Inventory Attachment XML","id":"078ff1cb-1619-453d-b9a5-b239635b07ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/Inventory/Attachments/XML?inventoryid&fileid&filename&extension&mimetype&rep&startdate&enddate&page&pagesize&sortby","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","Attachments","XML"],"host":["api","iqreseller","com"],"query":[{"key":"inventoryid","value":null},{"key":"fileid","value":null},{"key":"filename","value":null},{"key":"extension","value":null},{"key":"mimetype","value":null},{"key":"rep","value":null},{"key":"startdate","value":null},{"key":"enddate","value":null},{"key":"page","value":null},{"key":"pagesize","value":null},{"key":"sortby","value":null}],"variable":[]}},"response":[],"_postman_id":"078ff1cb-1619-453d-b9a5-b239635b07ee"},{"name":"Inventory Attachment JSON","id":"7289de49-799e-4644-9624-684fa4ddb216","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/Inventory/Attachments/JSON","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","Attachments","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7289de49-799e-4644-9624-684fa4ddb216"},{"name":"Download Attachment","id":"7a9911c6-d099-45cf-9f6e-009771528131","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/Inventory/Attachment?Inventoryid&fileid","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","Attachment"],"host":["api","iqreseller","com"],"query":[{"key":"Inventoryid","value":null},{"key":"fileid","value":null}],"variable":[]}},"response":[],"_postman_id":"7a9911c6-d099-45cf-9f6e-009771528131"}],"id":"aad3bf5f-fc69-46d1-a863-d49cbcbabc34","description":"<p>Endpoints used to retrieve <strong>detailed inventory records</strong> including warehouse location, condition codes, pricing, serial numbers, and other inventory metadata.</p>\n","_postman_id":"aad3bf5f-fc69-46d1-a863-d49cbcbabc34"},{"name":"Get Inventory Comments (Action Table)","item":[{"name":"Get All Inventory Comments (JSON)","id":"f3acd94e-7531-4604-9bf1-1fcdc0a6ba1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/InventoryComments/JSON","urlObject":{"protocol":"https","path":["webapi.svc","InventoryComments","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f3acd94e-7531-4604-9bf1-1fcdc0a6ba1e"},{"name":"Get All Inventory Comments (XML)","id":"4aef6212-8aeb-485a-b174-467692d79450","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/InventoryComments/XML","urlObject":{"protocol":"https","path":["webapi.svc","InventoryComments","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"4aef6212-8aeb-485a-b174-467692d79450"},{"name":"Get all inventory ids from inventory comments (XML)","id":"f18beab5-ce75-4ca6-8e8b-60f58e707408","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/InventoryComments/InventoryIDs/XML","urlObject":{"protocol":"https","path":["webapi.svc","InventoryComments","InventoryIDs","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f18beab5-ce75-4ca6-8e8b-60f58e707408"},{"name":"Get all Inventory Ids from Inventory Comments (JSON)","id":"db611860-6625-4822-9885-900ebe2a8329","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/InventoryComments/InventoryIDs/JSON","urlObject":{"protocol":"https","path":["webapi.svc","InventoryComments","InventoryIDs","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"db611860-6625-4822-9885-900ebe2a8329"},{"name":"Get inventory attribute detail from inventory comments (XML)","id":"5d1d7593-06d4-45b4-87f1-d189ef30ce77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/InventoryComments/InventoryAttributes/XML?inventoryid=237935","urlObject":{"protocol":"https","path":["webapi.svc","InventoryComments","InventoryAttributes","XML"],"host":["api","iqreseller","com"],"query":[{"key":"inventoryid","value":"237935"}],"variable":[]}},"response":[],"_postman_id":"5d1d7593-06d4-45b4-87f1-d189ef30ce77"},{"name":"Get Inventory Attribute detail from inventory comments (JSON)","id":"2ecaa0ca-e478-4dee-84ee-f8add999f661","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/InventoryComments/InventoryAttributes/JSON","urlObject":{"protocol":"https","path":["webapi.svc","InventoryComments","InventoryAttributes","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2ecaa0ca-e478-4dee-84ee-f8add999f661"}],"id":"07ddee15-4d4a-47d6-9b1a-bcd394896d47","description":"<p>Endpoints used to retrieve <strong>comments or action history associated with inventory records</strong>, often stored in an action or audit table.</p>\n","_postman_id":"07ddee15-4d4a-47d6-9b1a-bcd394896d47"},{"name":"GET Users","item":[{"name":"Get Users Information (XML)","id":"2f3bc7cf-a0c8-40c1-9ff7-b3ec5177a2f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/users/xml?active=True","urlObject":{"protocol":"https","path":["webapi.svc","users","xml"],"host":["api","iqreseller","com"],"query":[{"key":"active","value":"True"}],"variable":[]}},"response":[],"_postman_id":"2f3bc7cf-a0c8-40c1-9ff7-b3ec5177a2f7"},{"name":"Get Users Information (JSON)","id":"26f4a58e-0c77-42e2-b987-495545dd7b85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/USERS/JSON","urlObject":{"protocol":"https","path":["webapi.svc","USERS","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"26f4a58e-0c77-42e2-b987-495545dd7b85"}],"id":"50f9f3b5-2b5d-4ae2-9c35-f5d4f5b864ce","_postman_id":"50f9f3b5-2b5d-4ae2-9c35-f5d4f5b864ce","description":""},{"name":"Invoices","item":[{"name":"Insert Invoice XML","id":"e8f96e2d-d4d3-48b8-8306-3159e4adc23f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<Invoices>\r\n\t<Invoice>\t\r\n    <rep>JH</rep>\r\n    <clientponumber>PO1830824</clientponumber>\r\n    <clientid>ANOVA</clientid>\r\n    <currency>USD</currency>\r\n    <contactname>Siva</contactname>\r\n    <contactphone>7894561230</contactphone>\r\n    <billtocontactname>Siva</billtocontactname>\r\n    <billtocontactphone>7894561230</billtocontactphone>\r\n    <shiptocontactname>Siva</shiptocontactname>\r\n    <shiptocontactphone>7894561230</shiptocontactphone>\r\n    <internalcomment>Comment 1</internalcomment>\r\n    <invoicecomment>Comment 2</invoicecomment>\r\n    <contactemail>sivajothi@iqreseller.com</contactemail>\r\n    <shiptoemail>sivajothi@iqreseller.com</shiptoemail>\r\n    <billtoemail>sivajothi@iqreseller.com</billtoemail>\r\n    <terms>NET 30</terms>\r\n    <taxable>1</taxable>\r\n    <userdefined1>UDF 001</userdefined1>\r\n    <invoicedistributiontype></invoicedistributiontype>\r\n <InvoiceDetails>\r\n  <InvoiceDetail>\r\n      <item>005048875</item>\r\n      <unitprice>5</unitprice>\r\n      <qty>1</qty>\r\n      <description>300-GB 3G 15K 3.5 SAS HDD</description>\r\n      <extendeddescription></extendeddescription>\r\n      <serialnumber></serialnumber>\r\n      <reference>25236</reference>\r\n      <account>161020</account>\r\n      <so>1697</so>\r\n      <mfgr>EMC</mfgr>\r\n    </InvoiceDetail>\r\n      <InvoiceDetail>\r\n      <item></item>\r\n      <unitprice>5</unitprice>\r\n      <qty>1</qty>\r\n      <description>TEST DESC.</description>\r\n      <extendeddescription></extendeddescription>\r\n      <serialnumber></serialnumber>\r\n      <reference>25236</reference>\r\n      <account>161000</account>\r\n      <so>1697</so>\r\n      <mfgr>EMC</mfgr>\r\n    </InvoiceDetail>\r\n</InvoiceDetails>\r\n </Invoice>\r\n</Invoices>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/Invoices/XML","urlObject":{"protocol":"https","path":["webapi.svc","Invoices","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e8f96e2d-d4d3-48b8-8306-3159e4adc23f"},{"name":"Get Invoices Count","id":"a3f98670-04a0-48d9-adae-f62131a71459","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Invoices/GetInvoicesCount","description":"<p>This request get the count of the rows in the invoices table.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Invoices","GetInvoicesCount"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a3f98670-04a0-48d9-adae-f62131a71459"},{"name":"Get Invoice List by XML","id":"72d806d3-7b0e-4ef1-a25b-eafaec865ada","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Invoices/XML/GetInvoices?Page=0&PageSize=0&SortBy=0","description":"<p>This request will get a listing of the invoices from the Invoice table.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Invoices","XML","GetInvoices"],"host":["api","iqreseller","com"],"query":[{"key":"Page","value":"0"},{"key":"PageSize","value":"0"},{"key":"SortBy","value":"0"}],"variable":[]}},"response":[],"_postman_id":"72d806d3-7b0e-4ef1-a25b-eafaec865ada"},{"name":"Get Invoice List by JSON","id":"517b8401-3d5f-4798-bf59-a90e429355fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Invoices/JSON/GetInvoices?Page=10&PageSize=100&SortBy=0","urlObject":{"protocol":"https","path":["webapi.svc","Invoices","JSON","GetInvoices"],"host":["api","iqreseller","com"],"query":[{"key":"Page","value":"10"},{"key":"PageSize","value":"100"},{"key":"SortBy","value":"0"}],"variable":[]}},"response":[],"_postman_id":"517b8401-3d5f-4798-bf59-a90e429355fb"},{"name":"Get Invoice by Id by XML","id":"f8be5ad0-3b2f-4b76-9f4c-6878471136b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Invoices/XML/GetInvoiceById?id=2230","description":"<p>This request gets the information for an invoice using the invoice id to search for it.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Invoices","XML","GetInvoiceById"],"host":["api","iqreseller","com"],"query":[{"key":"id","value":"2230"}],"variable":[]}},"response":[],"_postman_id":"f8be5ad0-3b2f-4b76-9f4c-6878471136b5"},{"name":"Get Invoice by Id by JSON","id":"d342db32-658e-45ce-a4cf-1674ab22ca34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Invoices/JSON?Page=0&PageSize=0&SortBy=0&id=2","urlObject":{"protocol":"https","path":["webapi.svc","Invoices","JSON"],"host":["api","iqreseller","com"],"query":[{"key":"Page","value":"0"},{"key":"PageSize","value":"0"},{"key":"SortBy","value":"0"},{"key":"id","value":"2"}],"variable":[]}},"response":[],"_postman_id":"d342db32-658e-45ce-a4cf-1674ab22ca34"},{"name":"Get Invoice by SOId by XML","id":"b4345ea2-f468-4673-8321-8f73ce6c9b15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Invoices/XML/GetInvoicesBySOId?id=2215&Page=0&PageSize=0&SortBy=0","description":"<p>This request will retreive information for the sales order number that was supplied as a parameter.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Invoices","XML","GetInvoicesBySOId"],"host":["api","iqreseller","com"],"query":[{"key":"id","value":"2215"},{"key":"Page","value":"0"},{"key":"PageSize","value":"0"},{"key":"SortBy","value":"0"}],"variable":[]}},"response":[],"_postman_id":"b4345ea2-f468-4673-8321-8f73ce6c9b15"},{"name":"Get Invoice SOId (JSON)","id":"351d8739-f7e0-4548-b85c-463d8653b4d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Invoices/JSON/GetInvoicesBySOId","urlObject":{"protocol":"https","path":["webapi.svc","Invoices","JSON","GetInvoicesBySOId"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"351d8739-f7e0-4548-b85c-463d8653b4d9"},{"name":"Get Invoice Using CVCode (XML)","id":"b258d18a-993e-4a83-861f-e6837408b0e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Invoices/XML/GetinvoicesByCVCode?cvcode=EBAY&Page=0&PageSize=0&SortBy=0","description":"<p>This request gathers the data from the invoices that match the cvcode that is input as a parameter.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Invoices","XML","GetinvoicesByCVCode"],"host":["api","iqreseller","com"],"query":[{"key":"cvcode","value":"EBAY"},{"key":"Page","value":"0"},{"key":"PageSize","value":"0"},{"key":"SortBy","value":"0"}],"variable":[]}},"response":[],"_postman_id":"b258d18a-993e-4a83-861f-e6837408b0e3"},{"name":"Get Invoice Using CVCode (JSON)","id":"c32ba0f1-93d1-4298-819d-b5832b19c809","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Invoices/JSON/GetInvoicesByCVCode","description":"<p>This request gathers the data from the invoices that match the cvcode that is input as a parameter.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Invoices","JSON","GetInvoicesByCVCode"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c32ba0f1-93d1-4298-819d-b5832b19c809"},{"name":"Get Invoice Using Rep (XML)","id":"82fcf612-cfe3-4358-b0eb-89fb7c2648a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Invoices/XML/GetinvoicesByRep?rep=JH","urlObject":{"protocol":"https","path":["webapi.svc","Invoices","XML","GetinvoicesByRep"],"host":["api","iqreseller","com"],"query":[{"key":"rep","value":"JH"}],"variable":[]}},"response":[],"_postman_id":"82fcf612-cfe3-4358-b0eb-89fb7c2648a6"},{"name":"Get Invoice Using Rep (JSON)","id":"ce5beeee-df8c-402e-b466-de6b80aed114","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Invoices/JSON/GetInvoicesByRep","urlObject":{"protocol":"https","path":["webapi.svc","Invoices","JSON","GetInvoicesByRep"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ce5beeee-df8c-402e-b466-de6b80aed114"},{"name":"Get Invoice List with optional parameters","id":"8311496b-7c8a-4d1d-b6f9-be3bc51f7f47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Invoices/XML?StartDate=03/01/2022&EndDate=03/30/2022&paid=2","description":"<p>Optional Parameters:</p>\n<ol>\n<li>InvoiceID</li>\n<li>STID</li>\n<li>CVCode</li>\n<li>Rep</li>\n<li>StartDate</li>\n<li>EndDate</li>\n<li>Page</li>\n<li>PageSize</li>\n<li>SkipLines</li>\n<li>paid</li>\n<li>voidedStartDate</li>\n<li>voidedEndDate</li>\n</ol>\n<p>Filters:</p>\n<p>The filters also work with a combination of cvcode and Paid</p>\n<p>Paid=0 Get all records of paid/unpaid/voided</p>\n<p>Paid=1 Get only Paid records</p>\n<p>Paid=2 Get only Unpaid records</p>\n<p>Paid= 3 Get only Paid and Unpaid records</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Invoices","XML"],"host":["api","iqreseller","com"],"query":[{"description":{"content":"<p>Optional Parameters:</p>\n","type":"text/plain"},"key":"StartDate","value":"03/01/2022"},{"key":"EndDate","value":"03/30/2022"},{"key":"paid","value":"2"}],"variable":[]}},"response":[],"_postman_id":"8311496b-7c8a-4d1d-b6f9-be3bc51f7f47"},{"name":"Get Invoice Id (JSON)","id":"182a00cf-9094-4009-8bda-935dc3d00dc3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/Invoices/JSON/GetInvoiceById","urlObject":{"protocol":"https","path":["webapi.svc","Invoices","JSON","GetInvoiceById"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"182a00cf-9094-4009-8bda-935dc3d00dc3"}],"id":"76cac662-09bc-4757-8248-3f0e3a5caef8","description":"<p>This folder contains api calls that refer to Invoices.</p>\n","_postman_id":"76cac662-09bc-4757-8248-3f0e3a5caef8"},{"name":"Invoices - Paid In Full Date Update","item":[{"name":"Update Paid In Full Date (XML)","id":"265556de-411b-4912-88fa-78e84d4e9678","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Invoices/XML/MarkAsPaid?InvoiceID","urlObject":{"protocol":"https","path":["webapi.svc","Invoices","XML","MarkAsPaid"],"host":["api","iqreseller","com"],"query":[{"key":"InvoiceID","value":null},{"disabled":true,"key":"PaidInFullDate","value":null}],"variable":[]}},"response":[],"_postman_id":"265556de-411b-4912-88fa-78e84d4e9678"},{"name":"Update Paid In Full Date (JSON)","id":"77187481-20c6-4a21-a2e6-874b4bd292e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.iqreseller.com/webapi.svc/Invoices/JSON/MarkAsPaid","urlObject":{"protocol":"https","path":["webapi.svc","Invoices","JSON","MarkAsPaid"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"77187481-20c6-4a21-a2e6-874b4bd292e3"}],"id":"3ab8d51a-7704-485b-b8bd-8728503a8690","_postman_id":"3ab8d51a-7704-485b-b8bd-8728503a8690","description":""},{"name":"Invoices Report","item":[{"name":"Get Invoice report PDF","id":"01abbc92-2725-43f8-a290-e75f18868b66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/reports/invoice?startdate=03/01/2022&enddate=03/31/2022&cvcode=PARTSEARCH","urlObject":{"protocol":"https","path":["webapi.svc","reports","invoice"],"host":["api","iqreseller","com"],"query":[{"key":"startdate","value":"03/01/2022"},{"key":"enddate","value":"03/31/2022"},{"key":"cvcode","value":"PARTSEARCH"}],"variable":[]}},"response":[],"_postman_id":"01abbc92-2725-43f8-a290-e75f18868b66"}],"id":"595076da-f283-4586-9780-7572f19d95da","_postman_id":"595076da-f283-4586-9780-7572f19d95da","description":""},{"name":"Item","item":[{"name":"Substitutes by XML","id":"fb277583-a6f7-45f9-b274-dc8cec76db0a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"itemnumber","value":"001P4757","type":"text"},{"key":"manufacturer","value":"IBM","type":"text"}],"body":{"mode":"raw","raw":"<substitute>\n    <item>\n        <itemnumber>001P4799</itemnumber>\n        <manufacturer>IBM</manufacturer>\n    </item>\n    <substituteitems>\n        <item>\n            <itemnumber>001P4731</itemnumber>\n            <manufacturer>IBM</manufacturer>\n            <onewaysubstitute>false</onewaysubstitute>\n            <applytoalltoplevelparents>true</applytoalltoplevelparents>\n        </item>\n        <item>\n            <itemnumber>001P4732</itemnumber>\n            <manufacturer>IBM</manufacturer>\n            <onewaysubstitute>true</onewaysubstitute>\n            <applytoalltoplevelparents>false</applytoalltoplevelparents>\n        </item>\n    </substituteitems>\n</substitute>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/Items/Substitutes/XML","urlObject":{"protocol":"https","path":["webapi.svc","Items","Substitutes","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"fb277583-a6f7-45f9-b274-dc8cec76db0a"},{"name":"Substitutes by JSON","id":"355ec86c-7810-445c-8a63-c5f9155c2a8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"itemnumber","value":"001P4757","type":"text"},{"key":"manufacturer","value":"IBM","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"item\": {\n        \"itemnumber\": \"001P4757\",\n        \"manufacturer\": \"IBM\"\n    },\n    \"substituteitems\": {\n        \"item\": [\n            {\n                \"itemnumber\": \"001P4798\",\n                \"manufacturer\": \"IBM\",\n                \"onewaysubstitute\": false,\n                \"applytoalltoplevelparents\": false\n            },\n            {\n                \"itemnumber\": \"001P4799\",\n                \"manufacturer\": \"IBM\",\n                \"onewaysubstitute\": false\n            }\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/Items/Substitutes/JSON","urlObject":{"protocol":"https","path":["webapi.svc","Items","Substitutes","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"355ec86c-7810-445c-8a63-c5f9155c2a8d"}],"id":"55fe1bd2-8603-4077-ad05-48cfd74c9f40","_postman_id":"55fe1bd2-8603-4077-ad05-48cfd74c9f40","description":""},{"name":"Ledger Transactions","item":[{"name":"Get all Ledger Transactions XML","id":"72994c7d-208b-4b05-80f7-f085a25f9690","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/LT/XML/GetLedgerTransactions?Page=1&PageSize=20&SortBy=0","description":"<p>Gets a listing of the rows from the gltrans table.  </p>\n<p>Please note:  This request could return a large number of records.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","name":"Ledger Transactions","type":"folder"}},"urlObject":{"protocol":"https","path":["webapi.svc","LT","XML","GetLedgerTransactions"],"host":["api","iqreseller","com"],"query":[{"key":"Page","value":"1"},{"key":"PageSize","value":"20"},{"key":"SortBy","value":"0"}],"variable":[]}},"response":[],"_postman_id":"72994c7d-208b-4b05-80f7-f085a25f9690"},{"name":"Get Ledger Transactions using POId XML","id":"8995166c-3d30-4c05-8eb1-92b5956739ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/LT/XML/GetLedgerTransactionsByPOId?POId=20&Page=0&PageSize=0&SortBy =0","description":"<p>This request gathers information about the transactions that are associated with the paramter POId. (Purchase Order Number)</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","name":"Ledger Transactions","type":"folder"}},"urlObject":{"protocol":"https","path":["webapi.svc","LT","XML","GetLedgerTransactionsByPOId"],"host":["api","iqreseller","com"],"query":[{"key":"POId","value":"20"},{"key":"Page","value":"0"},{"key":"PageSize","value":"0"},{"key":"SortBy ","value":"0"}],"variable":[]}},"response":[],"_postman_id":"8995166c-3d30-4c05-8eb1-92b5956739ef"},{"name":"Get Ledger Transactions using SOId XML","id":"30d1b12d-d2a7-4421-b88b-358b5741a4f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/LT/XML/GetLedgerTransactionsByPOId?SOId=10&Page=0&PageSize=0","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","name":"Ledger Transactions","type":"folder"}},"urlObject":{"protocol":"https","path":["webapi.svc","LT","XML","GetLedgerTransactionsByPOId"],"host":["api","iqreseller","com"],"query":[{"key":"SOId","value":"10"},{"key":"Page","value":"0"},{"key":"PageSize","value":"0"}],"variable":[]}},"response":[],"_postman_id":"30d1b12d-d2a7-4421-b88b-358b5741a4f4"},{"name":"Get all Ledger Transactions  JSON","id":"b7d0c5d3-59c0-4e5c-8eb1-dc65b3ff0891","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/LT/JSON/GetLedgerTransactions","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","name":"Ledger Transactions","type":"folder"}},"urlObject":{"protocol":"https","path":["webapi.svc","LT","JSON","GetLedgerTransactions"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b7d0c5d3-59c0-4e5c-8eb1-dc65b3ff0891"},{"name":"Get Ledger Transactions using POId JSON","id":"88d939ea-a693-48cb-bba4-29b7001591ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/LT/JSON/GetLedgerTransactionsByPOid","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","name":"Ledger Transactions","type":"folder"}},"urlObject":{"protocol":"https","path":["webapi.svc","LT","JSON","GetLedgerTransactionsByPOid"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"88d939ea-a693-48cb-bba4-29b7001591ea"},{"name":"Get Ledger Transaction using invoiceid JSON","id":"aba0e650-cbf0-46fa-9727-553664407286","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/LT/JSON/GetLedgerTransactionsByInvoiceid","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","name":"Ledger Transactions","type":"folder"}},"urlObject":{"protocol":"https","path":["webapi.svc","LT","JSON","GetLedgerTransactionsByInvoiceid"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"aba0e650-cbf0-46fa-9727-553664407286"},{"name":"Get Ledger Transactions using SOId JSON","id":"2b147b75-0cad-4001-841f-78d9281618fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/LT/JSON/GetLedgerTransactionsBySOid?soid=2608","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","name":"Ledger Transactions","type":"folder"}},"urlObject":{"protocol":"https","path":["webapi.svc","LT","JSON","GetLedgerTransactionsBySOid"],"host":["api","iqreseller","com"],"query":[{"key":"soid","value":"2608"}],"variable":[]}},"response":[],"_postman_id":"2b147b75-0cad-4001-841f-78d9281618fb"},{"name":"Get Ledger Transactions Using SOId (XML)","id":"3569a325-2ecd-4d3c-a5b5-f3c9158955cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/LT/XML/GetLedgerTransactionsBySOId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","name":"Ledger Transactions","type":"folder"}},"urlObject":{"protocol":"https","path":["webapi.svc","LT","XML","GetLedgerTransactionsBySOId"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3569a325-2ecd-4d3c-a5b5-f3c9158955cd"},{"name":"Get Ledger Transactions using invoiceid XML","id":"400fa6e0-bed4-46c3-b9eb-bfca441e2edc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/LT/XML/GetLedgerTransactionsByInvoiceid","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","name":"Ledger Transactions","type":"folder"}},"urlObject":{"protocol":"https","path":["webapi.svc","LT","XML","GetLedgerTransactionsByInvoiceid"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"400fa6e0-bed4-46c3-b9eb-bfca441e2edc"},{"name":"Get Ledger Transactions using Billid XML","id":"ba5a21c3-7878-463f-8c83-77bdd799a982","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/LT/XML/GetLedgerTransactionsByBillId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","name":"Ledger Transactions","type":"folder"}},"urlObject":{"protocol":"https","path":["webapi.svc","LT","XML","GetLedgerTransactionsByBillId"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ba5a21c3-7878-463f-8c83-77bdd799a982"},{"name":"Get Ledger Transactions using Billid JSON","id":"fa4b8227-409b-4789-bf90-7a208ccec5c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/LT/JSON/GetLedgerTransactionsByBillId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","name":"Ledger Transactions","type":"folder"}},"urlObject":{"protocol":"https","path":["webapi.svc","LT","JSON","GetLedgerTransactionsByBillId"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"fa4b8227-409b-4789-bf90-7a208ccec5c2"},{"name":"Get Ledger Transactions using Account XML","id":"aa6bac41-e3eb-4f5d-9603-95ba587c8091","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/LT/XML/GetLedgerTransactionsByAccount","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","name":"Ledger Transactions","type":"folder"}},"urlObject":{"protocol":"https","path":["webapi.svc","LT","XML","GetLedgerTransactionsByAccount"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"aa6bac41-e3eb-4f5d-9603-95ba587c8091"},{"name":"Get Ledger Transactions using Account JSON","id":"63a7505e-fe8a-425b-8396-4871bb347232","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/LT/JSON/GetLedgerTransactionsByAccount","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","name":"Ledger Transactions","type":"folder"}},"urlObject":{"protocol":"https","path":["webapi.svc","LT","JSON","GetLedgerTransactionsByAccount"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"63a7505e-fe8a-425b-8396-4871bb347232"},{"name":"Get Ledger Transactions using Session XML","id":"d0544261-5101-4062-ab5e-056e8b9179de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/LT/XML/GetLedgerTransactionsBySession?session=2","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","name":"Ledger Transactions","type":"folder"}},"urlObject":{"protocol":"https","path":["webapi.svc","LT","XML","GetLedgerTransactionsBySession"],"host":["api","iqreseller","com"],"query":[{"key":"session","value":"2"}],"variable":[]}},"response":[],"_postman_id":"d0544261-5101-4062-ab5e-056e8b9179de"},{"name":"Get Ledger Transactions using Session JSON","id":"b735d98b-bdf9-4711-a9cb-5fb8eaa6011e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/LT/JSON/GetLedgerTransactionsBySession?session=2","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","name":"Ledger Transactions","type":"folder"}},"urlObject":{"protocol":"https","path":["webapi.svc","LT","JSON","GetLedgerTransactionsBySession"],"host":["api","iqreseller","com"],"query":[{"key":"session","value":"2"}],"variable":[]}},"response":[],"_postman_id":"b735d98b-bdf9-4711-a9cb-5fb8eaa6011e"},{"name":"Get Ledger Transactions using GLTransid XML","id":"17958efb-0d47-4d9c-ac68-5197525af0a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/LT/XML/GetLedgerTransactionByGLTransId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","name":"Ledger Transactions","type":"folder"}},"urlObject":{"protocol":"https","path":["webapi.svc","LT","XML","GetLedgerTransactionByGLTransId"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"17958efb-0d47-4d9c-ac68-5197525af0a0"},{"name":"Get Ledger Transactions using GLTransid JSON","id":"4ebb5cfd-027b-480c-b4d2-61ccde73a161","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/LT/JSON/GetLedgerTransactionByGLTransId","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","name":"Ledger Transactions","type":"folder"}},"urlObject":{"protocol":"https","path":["webapi.svc","LT","JSON","GetLedgerTransactionByGLTransId"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"4ebb5cfd-027b-480c-b4d2-61ccde73a161"},{"name":"Get Ledger Transactions using Dates XML","id":"9c10e40b-9204-4d07-9289-130393e13658","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/LT/XML/GetLedgerTransactionsByDates?From=01/01/2015&To=01/14/2015","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","name":"Ledger Transactions","type":"folder"}},"urlObject":{"protocol":"https","path":["webapi.svc","LT","XML","GetLedgerTransactionsByDates"],"host":["api","iqreseller","com"],"query":[{"key":"From","value":"01/01/2015"},{"key":"To","value":"01/14/2015"}],"variable":[]}},"response":[],"_postman_id":"9c10e40b-9204-4d07-9289-130393e13658"},{"name":"Get Ledger Transactions using Dates JSON","id":"a682ea75-fba7-4c97-ab7b-e806a4b3ab57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/LT/JSON/GetLedgerTransactionsByDates?From=01/01/2015&To=01/14/2015","description":"<p>This request will get information on GL ledger transactions match the date rate specified in the parameters.</p>\n<p>Available Parameters:\nFrom,\nTo,\nPage,\nPageSize,\nSortBy,</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","name":"Ledger Transactions","type":"folder"}},"urlObject":{"protocol":"https","path":["webapi.svc","LT","JSON","GetLedgerTransactionsByDates"],"host":["api","iqreseller","com"],"query":[{"key":"From","value":"01/01/2015"},{"key":"To","value":"01/14/2015"}],"variable":[]}},"response":[],"_postman_id":"a682ea75-fba7-4c97-ab7b-e806a4b3ab57"},{"name":"Get Ledger Transactions count","id":"6dfe8429-6df6-488a-af43-a933b9d2ac44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/LT/GetLedgerTransactionsCount","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","name":"Ledger Transactions","type":"folder"}},"urlObject":{"protocol":"https","path":["webapi.svc","LT","GetLedgerTransactionsCount"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6dfe8429-6df6-488a-af43-a933b9d2ac44"}],"id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd","description":"<p>This folder contains examples of getting information from the General Ledger Transaction table (gltrans).</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"39a4065d-8946-4c3e-9166-1f9a94c4869c"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"5e636665-d7ba-45ba-8070-4f0e29a276f3"}}],"_postman_id":"668b5c54-d66f-4333-b2e3-33afde6eb8dd"},{"name":"Master Item","item":[{"name":"Get Item Activity","id":"06bdfccd-5b65-44f8-bfdd-1c1c210765b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/MI/XML/GetItemActivity?itemNumber=0005962R&mfgr=HP","urlObject":{"protocol":"https","path":["webapi.svc","MI","XML","GetItemActivity"],"host":["api","iqreseller","com"],"query":[{"key":"itemNumber","value":"0005962R"},{"key":"mfgr","value":"HP"}],"variable":[]}},"response":[],"_postman_id":"06bdfccd-5b65-44f8-bfdd-1c1c210765b2"},{"name":"Get Item Activity by Id","id":"945256b7-ac77-469c-a50f-abf4942ee90f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/MI/XML/GetItemActivityById?ItemId=5084&Mfgr=IBM","description":"<p>Gets all of the activity for the specified item.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","MI","XML","GetItemActivityById"],"host":["api","iqreseller","com"],"query":[{"key":"ItemId","value":"5084"},{"key":"Mfgr","value":"IBM"}],"variable":[]}},"response":[],"_postman_id":"945256b7-ac77-469c-a50f-abf4942ee90f"},{"name":"Get Item Activity by Condition Code","id":"fe591868-2682-4d60-8731-8b5c18c9126f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/MI/XML/GetItemActivityByConditionCode?itemnumber=0005962R&mfgr=HP&incASubs=true&ConditionCode=NEW","urlObject":{"protocol":"https","path":["webapi.svc","MI","XML","GetItemActivityByConditionCode"],"host":["api","iqreseller","com"],"query":[{"key":"itemnumber","value":"0005962R"},{"key":"mfgr","value":"HP"},{"key":"incASubs","value":"true"},{"key":"ConditionCode","value":"NEW"}],"variable":[]}},"response":[],"_postman_id":"fe591868-2682-4d60-8731-8b5c18c9126f"},{"name":"Get Item Activity by id and Condition Code","id":"c769cbf6-06ef-446a-88b9-3d29ec4ae173","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-code","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/MI/XML/GetItemActivityByIdAndConditionCode?itemid=5084&mfgr=ibm&incSubs=True&ConditionCode=NEW","urlObject":{"protocol":"https","path":["webapi.svc","MI","XML","GetItemActivityByIdAndConditionCode"],"host":["api","iqreseller","com"],"query":[{"key":"itemid","value":"5084"},{"key":"mfgr","value":"ibm"},{"key":"incSubs","value":"True"},{"key":"ConditionCode","value":"NEW"}],"variable":[]}},"response":[],"_postman_id":"c769cbf6-06ef-446a-88b9-3d29ec4ae173"},{"name":"Get Item by ItemID","id":"7c003951-493d-4e8e-9cb0-b2ed9302294b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/MI/XML/GetItemByItemId?ItemID=5084","description":"<p>This request will return the itemnumber that is associated with the itemid that is supplied as a parameter</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","MI","XML","GetItemByItemId"],"host":["api","iqreseller","com"],"query":[{"key":"ItemID","value":"5084"}],"variable":[]}},"response":[],"_postman_id":"7c003951-493d-4e8e-9cb0-b2ed9302294b"},{"name":"Get Item by ItemNumber","id":"5e6e0086-8f3a-4080-a4a5-10a30b4188bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/MI/JSON/GetItemsByItemNumber?ItemNumber=001P4740","description":"<p>This request gets informtion for the supplied itemnumber</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","MI","JSON","GetItemsByItemNumber"],"host":["api","iqreseller","com"],"query":[{"key":"ItemNumber","value":"001P4740"}],"variable":[]}},"response":[],"_postman_id":"5e6e0086-8f3a-4080-a4a5-10a30b4188bf"},{"name":"Get Item by itemnumber and Mfgr","id":"b4196645-b339-4588-ae62-d9ee1fb8f030","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/MI/JSON/GetItemByItemNumberAndMfgr?ItemNumber=001P4740&Mfgr=IBM","description":"<p>This request gets the information for an item that is specified by the itemnumber and mfgr parameters</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","MI","JSON","GetItemByItemNumberAndMfgr"],"host":["api","iqreseller","com"],"query":[{"key":"ItemNumber","value":"001P4740"},{"key":"Mfgr","value":"IBM"}],"variable":[]}},"response":[],"_postman_id":"b4196645-b339-4588-ae62-d9ee1fb8f030"},{"name":"Get Item by Mfgr JSON","event":[{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","id":"22f77e64-35d7-4e59-ba75-a1a11c37e94a"}}],"id":"3c4b5685-1838-4941-8ba9-43151fef8eef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/MI/JSON/GetItemsByMfgr?mfgr=HP&page=2&pagesize=2","description":"<p>This request will gather data from the item table that matches the supplied parameter.</p>\n<p>There are three parameters for this api request.</p>\n<p>Mfgr -- This is the literal value of the manufacturer code.  For example, if the code for Hewlett Packard is HP, then enter HP as the parameter.</p>\n<p>PageSize -- This parameter determines how many records get returned from the item table.  If the pagesize = 10, the response will have a maximum of 10 records in it.</p>\n<p>Page Parameter:\nTo explain how the page parameter works will require some math. </p>\n<p>Examples\nPage Parameter set to 1:\nThe result will be the first 20 rows of the item table that match the mfgr parameter.\nPage Parameter set to 10:\nThe row number of the item table that will be the first row of the result can be calculated by the following formula;\n                        (20 records/page X 9 pages ) + 1 = Row 181 from the item table\nThe row number of the item table that will be the last row of the result can be calculated by the following formula;\n                        (20 records/page X 10 pages) = Row 200 from the item table</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","MI","JSON","GetItemsByMfgr"],"host":["api","iqreseller","com"],"query":[{"key":"mfgr","value":"HP"},{"key":"page","value":"2"},{"key":"pagesize","value":"2"}],"variable":[]}},"response":[],"_postman_id":"3c4b5685-1838-4941-8ba9-43151fef8eef"},{"name":"Get All Items (Revised)","id":"0d99d300-c145-4235-8fe2-7d9a837ef234","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/MI/JSON/GetItems?pagesize =30&page=100","description":"<p>This request will gather data from the item table.  It will bring back data from 41 of the fields in the table.\nThe list of fields includes:\n        \"associateditem_swap\",\n        \"bulk\",\n        \"category\",\n        \"category2\",\n        \"category3\",\n        \"category4\",\n        \"clei\",\n        \"comments\",\n        \"createddate\",\n        \"description\",\n        \"extdescription\",\n        \"harmonizedsystemorschedulebcode\",\n        \"heci\",\n        \"imageurl\",\n        \"item_swap\",\n        \"itemid\",\n        \"itemnumber\",\n        \"listprice\",\n        \"manufactureritem\",\n        \"mfgr\",\n        \"minreorderqty\",\n        \"primarylocation\",\n        \"reorderpoint\",\n        \"rep\",\n        \"saleprice1\",\n        \"saleprice2\",\n        \"saleprice3\",\n        \"saleprice4\",\n        \"saleprice5\",\n        \"saleprice6\",\n        \"saleprice7\",\n        \"saleprice8\",\n        \"taxgoodscategory\",\n        \"type\",\n        \"updateddate\",\n        \"userdefined1\",\n        \"userdefined2\",\n        \"userdefined3\",\n        \"userdefined4\",\n        \"userdefined5\",\n        \"warehouse\"</p>\n<p>Parameters can be worked in any of the following combination:</p>\n<p>itemid={itemid}&amp;itemnumber={itemnumber}&amp;mfgr={mfgr}&amp;category1={category1}&amp;category2={category2}&amp;category3={category3}&amp;category4={category4}&amp;createdstartdate={createdstartdate}&amp;createdenddate={createdenddate}&amp;updatedstartdate={updatedstartdate}&amp;updatedenddate={updatedenddate}&amp;page={page}&amp;pagesize={pagesize}&amp;sortby={sortby}</p>\n<p>SortBy Definitions:\n SORTBY = 0 =&gt; [itemid] ASC\n SORTBY = 1 =&gt; [itemid] DESC\n SORTBY = 2 =&gt; [itemnumber] ASC\n SORTBY = 3 =&gt; [itemnumber] DESC\n SORTBY = 4 =&gt; [mfgr] ASC\n SORTBY = 5 =&gt; [mfgr] DESC\n SORTBY = 6 =&gt; [lastupdated] ASC\n SORTBY = 7 =&gt; [lastupdated] DESC</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","MI","JSON","GetItems"],"host":["api","iqreseller","com"],"query":[{"description":{"content":"<p>PageSize Parameter:\nThe meaning of this parameter from my point of view would relate to the number of records getting returned from the database.  So, if this parameter is set to 10, the user should expect to get 10 records back.  My testing has so far not received a different response from different settings of this parameter.\nIt does not matter what it is set at, 20 records are always returned.</p>\n<p>I will be speaking with the developers about this.  I think it is wrong.</p>\n","type":"text/plain"},"key":"pagesize ","value":"30"},{"description":{"content":"<p>PageSize Parameter:\nThe meaning of this parameter from my point of view would relate to the number of records getting returned from the database.  So, if this parameter is set to 10, the user should expect to get 10 records back.  My testing has so far not received a different response from different settings of this parameter.\nIt does not matter what it is set at, 20 records are always returned.</p>\n<p>I will be speaking with the developers about this.  I think it is wrong.</p>\n<p>Page Parameter:\nTo explain how the page parameter works will require some math. </p>\n","type":"text/plain"},"key":"page","value":"100"}],"variable":[]}},"response":[],"_postman_id":"0d99d300-c145-4235-8fe2-7d9a837ef234"},{"name":"Get Items Count","id":"00bec6ad-07ea-4c77-b7bc-3073f03c6b7e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/MI/GetItemsCount","description":"<p>Gets the value for the total number of items that are in the database.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","MI","GetItemsCount"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"00bec6ad-07ea-4c77-b7bc-3073f03c6b7e"},{"name":"Get Item Substitutes by Item Number and Mfgr","id":"b67ba2e9-fe52-403e-a42a-f1f1c19bd968","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/MI/XML/GetItemSubstitutesUsingItemAndMfgr?ItemNumber=001P4740&Mfgr=IBM","description":"<p>This api call gets the substitutes for the supplied itemnumber and manufacturer.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","MI","XML","GetItemSubstitutesUsingItemAndMfgr"],"host":["api","iqreseller","com"],"query":[{"key":"ItemNumber","value":"001P4740"},{"key":"Mfgr","value":"IBM"}],"variable":[]}},"response":[],"_postman_id":"b67ba2e9-fe52-403e-a42a-f1f1c19bd968"},{"name":"Get Item Substitutes","id":"4950947b-0fa4-4353-862f-258bd0989238","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/MI/XML/GetItemSubstitutes","description":"<p>This api call will get a listing of all the current substitutes grouped according to the item that they are substitutes for.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","MI","XML","GetItemSubstitutes"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"4950947b-0fa4-4353-862f-258bd0989238"},{"name":"Update Master Item","id":"87b724a9-c33e-462e-bd21-fe2a93360cff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<items>\r\n\t<item>\r\n\t<itemnumber>5503-901</itemnumber>\r\n\t<mfgr>AXIS</mfgr>\r\n\t<rep>JH</rep>\r\n\t<description>CISCO ONS15454 OC-192/STM-64 INTERFACE CARD - LR  1550  1 CI</description>\r\n\t<extdescription>CISCO ONS15454 OC-192/STM-64</extdescription>\r\n\t<category>TEST</category>\r\n\t<category2>Ethernet Interface Card1 </category2>\r\n\t<category3>Ethernet Interface Card2</category3>\r\n\t<category4>Ethernet Interface Card3</category4>\r\n\t<primarylocation>CISCO ONS12345</primarylocation>\r\n\t<warehouse>MAIN</warehouse>\r\n\t<listprice>31</listprice>\r\n\t<saleprice1>11</saleprice1>\r\n\t<saleprice2>11</saleprice2>\r\n\t<saleprice3>11</saleprice3>\r\n\t<saleprice4>11</saleprice4>\r\n\t<saleprice5>11</saleprice5>\r\n\t<saleprice6>11</saleprice6>\r\n\t<saleprice7>11</saleprice7>\r\n\t<saleprice8>1</saleprice8>\r\n\t<minreorderqty>9</minreorderqty>\r\n\t<reorderpoint>2</reorderpoint>\r\n\t<harmonizedsystemorschedulebcode>9823749</harmonizedsystemorschedulebcode>\r\n\t<comments>This is updated by API </comments>\r\n\t<userdefined1>Sample 1</userdefined1>\r\n\t<userdefined2>Sample 2</userdefined2>\r\n\t<userdefined3>Sample 3</userdefined3>\r\n\t<userdefined4>Sample 4</userdefined4>\r\n\t<userdefined5>Sample 5</userdefined5>\r\n\t<imageurl>http://ecx.images-amazon.com/images/I/41pLtyAgDSL._SX425_.jpg</imageurl>\r\n\t</item>\r\n</items>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/MI/XML/UpdateMasterItems","description":"<p>This api call can be used to make changes to the master items.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","MI","XML","UpdateMasterItems"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"87b724a9-c33e-462e-bd21-fe2a93360cff"},{"name":"Insert Master Item XML","id":"31b83723-0a3e-40f5-8f9b-0b69ceff9741","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<items>\r\n    <item>\r\n        <itemnumber>MACBOOKPRO9,4</itemnumber>\r\n        <mfgr>MICROWFILT</mfgr>\r\n        <rep>AA</rep>\r\n        <description>BATTERY Model:MACBOOKPRO9,4</description>\r\n        <extdescription/>\r\n        <category/>\r\n        <category2/>\r\n        <category3/>\r\n        <category4/>\r\n        <primarylocation/>\r\n        <warehouse>67        </warehouse>\r\n        <saleprice1/>\r\n        <saleprice2/>\r\n        <saleprice3/>\r\n        <saleprice4/>\r\n        <saleprice5/>\r\n        <saleprice6/>\r\n        <saleprice7/>\r\n        <saleprice8/>\r\n        <minreorderqty/>\r\n        <reorderpoint/>\r\n        <harmonizedsystemorschedulebcode/>\r\n        <comments/>\r\n        <userdefined1/>\r\n        <userdefined2/>\r\n        <userdefined3/>\r\n        <userdefined4/>\r\n        <userdefined5/>\r\n        <imageurl/>\r\n    </item>\r\n</items>\r\n","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/MI/XML/InsertMasterItems","description":"<p>This request will create a new master item according to the supplied information.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","MI","XML","InsertMasterItems"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"31b83723-0a3e-40f5-8f9b-0b69ceff9741"},{"name":"Insert Master Item JSON","id":"38102525-88af-4a00-857e-17fd4db02661","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"itemnumber\": \"MACBOOKPRO9,45\",\r\n        \"mfgr\": \"MICROWFILT\",\r\n        \"rep\": \"AA\",\r\n        \"description\": \"BATTERY Model:MACBOOKPRO9,45\",\r\n        \"extdescription\": \"\",\r\n        \"primarylocation\": \"\",\r\n        \"warehouse\": \"67\",\r\n        \"listprice\": \"0.00\",\r\n        \"saleprice1\": \"0.00\",\r\n        \"saleprice2\": \"0.00\",\r\n        \"saleprice3\": \"0.00\",\r\n        \"saleprice4\": \"0.00\",\r\n        \"saleprice5\": \"0.00\",\r\n        \"saleprice6\": \"0.00\",\r\n        \"saleprice7\": \"0.00\",\r\n        \"saleprice8\": \"0.00\",\r\n        \"minreorderqty\": \"0\",\r\n        \"reorderpoint\": \"0\",\r\n        \"comments\": \"\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/MI/JSON/InsertMasterItems","description":"<p>This request will create a new master item according to the supplied information.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","MI","JSON","InsertMasterItems"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[{"id":"652e9d52-f749-4092-8037-67e51d22c649","name":"Insert Master Item JSON","originalRequest":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"itemnumber\": \"MACBOOKPRO9,45\",\r\n        \"mfgr\": \"MICROWFILT\",\r\n        \"rep\": \"AA\",\r\n        \"description\": \"BATTERY Model:MACBOOKPRO9,45\",\r\n        \"extdescription\": \"\",\r\n        \"primarylocation\": \"\",\r\n        \"warehouse\": \"67\",\r\n        \"listprice\": \"0.00\",\r\n        \"saleprice1\": \"0.00\",\r\n        \"saleprice2\": \"0.00\",\r\n        \"saleprice3\": \"0.00\",\r\n        \"saleprice4\": \"0.00\",\r\n        \"saleprice5\": \"0.00\",\r\n        \"saleprice6\": \"0.00\",\r\n        \"saleprice7\": \"0.00\",\r\n        \"saleprice8\": \"0.00\",\r\n        \"minreorderqty\": \"0\",\r\n        \"reorderpoint\": \"0\",\r\n        \"comments\": \"\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/MI/JSON/InsertMasterItems"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"203"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 21 Feb 2025 21:09:06 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Cache-Control","value":"private"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorObject\": null,\n    \"Information\": \"\",\n    \"Status\": 1,\n    \"StatusDescription\": \"Master item inserted successfully.\"\n}"}],"_postman_id":"38102525-88af-4a00-857e-17fd4db02661"},{"name":"Insert Item Substitute XML","id":"7234e650-6768-41f5-a7b6-329ba3fbddff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<substitute>\r\n    <item>\r\n        <itemnumber>001P4771</itemnumber>\r\n        <manufacturer>IBM</manufacturer>\r\n    </item>\r\n    <substituteitems>\r\n        <item>\r\n            <itemnumber>001P4731</itemnumber>\r\n            <manufacturer>IBM</manufacturer>\r\n            <onewaysubstitute>false</onewaysubstitute>\r\n            <applytoalltoplevelparents>true</applytoalltoplevelparents>\r\n        </item>\r\n        <item>\r\n            <itemnumber>001P4721</itemnumber>\r\n            <manufacturer>IBM</manufacturer>\r\n            <onewaysubstitute>false</onewaysubstitute>\r\n            <applytoalltoplevelparents>false</applytoalltoplevelparents>\r\n        </item>\r\n    </substituteitems>\r\n</substitute>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/Items/Substitutes/XML","urlObject":{"protocol":"https","path":["webapi.svc","Items","Substitutes","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7234e650-6768-41f5-a7b6-329ba3fbddff"},{"name":"Master Item More UDFs JSON","id":"bf4e3095-4c5c-459d-86e0-981f5f17a22e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/MI/UDFs/JSON?Itemid&Itemnumber&mfgr","urlObject":{"protocol":"https","path":["webapi.svc","MI","UDFs","JSON"],"host":["api","iqreseller","com"],"query":[{"key":"Itemid","value":null},{"key":"Itemnumber","value":null},{"key":"mfgr","value":null}],"variable":[]}},"response":[],"_postman_id":"bf4e3095-4c5c-459d-86e0-981f5f17a22e"},{"name":"Master Item More UDFs XML","id":"7504bcaa-84a7-4f4a-a925-b392aff3c5bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/MI/UDFs/XML?Itemid&Itemnumber&mfgr","urlObject":{"protocol":"https","path":["webapi.svc","MI","UDFs","XML"],"host":["api","iqreseller","com"],"query":[{"key":"Itemid","value":null},{"key":"Itemnumber","value":null},{"key":"mfgr","value":null}],"variable":[]}},"response":[],"_postman_id":"7504bcaa-84a7-4f4a-a925-b392aff3c5bf"},{"name":"Insert/Update UDFs XML","id":"7b35b5b7-59e4-467e-8acc-e05291c13434","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"<mi>\n\t<itemid>11691</itemid>\n\t<itemnumber>Item1</itemnumber>\n\t<mfgr>Mfgr1</mfgr>\n\t<udf>\n\t\t<userdefinedvalue01>FEDX</userdefinedvalue01>\n\t\t<userdefinedvalue02>usps</userdefinedvalue02>\n\t\t<userdefinedvalue03>UDF03</userdefinedvalue03>\n\t\t<userdefinedvalue04>UDF04</userdefinedvalue04>\n\t\t<userdefinedvalue05>UDF05</userdefinedvalue05>\n\t</udf>\n\t<moreinfo>\n\t\t<value01>UPS</value01>\n\t\t<value02>SAMP2</value02>\n\t\t<value03>SAMP1</value03>\n\t\t<value04>2025-12-15</value04>\n\t\t<value05>2025-12-16</value05>\n\t\t<value06>2025-12-17</value06>\n\t\t<value07>UDF7</value07>\n\t\t<value08>UDF8</value08>\n\t\t<value09>UDF9</value09>\n\t\t<value10>UDF10</value10>\n\t\t<value11>UDF11</value11>\n\t\t<value12>UDF12</value12>\n\t\t<value13>UDF13</value13>\n\t\t<value14>UDF14</value14>\n\t\t<value15>UDF15</value15>\n\t\t<value16>UDF16</value16>\n\t\t<value17>UDF17</value17>\n\t\t<value18>UDF18</value18>\n\t\t<value19>UDF19</value19>\n\t\t<value20>UDF20</value20>\n\t\t<value21>UDF21</value21>\n\t\t<value22>UDF22</value22>\n\t\t<value23>UDF23</value23>\n\t\t<value24>UDF24</value24>\n\t\t<value25>UDF25</value25>\n\t\t<value26>UDF26</value26>\n\t\t<value27>UDF27</value27>\n\t\t<value28>UDF28</value28>\n\t\t<value28>UDF300000</value28>\n\t\t<value29>UDF29</value29>\n\t\t<value30>UDF30</value30>\n\t</moreinfo>\n</mi>\n","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/MI/UDFs/XML?Itemid&Itemnumber&mfgr","urlObject":{"protocol":"https","path":["webapi.svc","MI","UDFs","XML"],"host":["api","iqreseller","com"],"query":[{"key":"Itemid","value":null},{"key":"Itemnumber","value":null},{"key":"mfgr","value":null}],"variable":[]}},"response":[],"_postman_id":"7b35b5b7-59e4-467e-8acc-e05291c13434"},{"name":"Insert/Update UDFs JSON","id":"79abca30-9403-42d5-be82-cc87638757d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n\t\"itemid\": 11961,\n\t\"itemnumber\": \"TESTITEM\",\n\t\"mfgr\": \"TEST MFGR\",\n\t\"udf\": {\n\t\t\"userdefinedvalue01\": \"UPS\",\n\t\t\"userdefinedvalue02\": \"FEDX\",\n\t\t\"userdefinedvalue03\": \"UDF03\",\n\t\t\"userdefinedvalue04\": \"UDF04\",\n\t\t\"userdefinedvalue05\": \"UDF05\"\n\t},\n\t\"moreinfo\": {\n\t\t\"value01\": \"FEDX\",\n\t\t\"value02\": \"SAMP1\",\n\t\t\"value03\": \"SAMP2\",\n\t\t\"value04\": \"2025-10-25\",\n\t\t\"value05\": \"2025-10-26\",\n\t\t\"value06\": \"2025-10-27\",\n\t\t\"value07\": \"UDF7\",\n\t\t\"value08\": \"UDF8\",\n\t\t\"value09\": \"UDF9\",\n\t\t\"value10\": \"UDF10\",\n\t\t\"value11\": \"UDF11\",\n\t\t\"value12\": \"UDF12\",\n\t\t\"value13\": \"UDF13\",\n\t\t\"value14\": \"UDF14\",\n\t\t\"value15\": \"UDF15\",\n\t\t\"value16\": \"UDF16\",\n\t\t\"value17\": \"UDF17\",\n\t\t\"value18\": \"UDF18\",\n\t\t\"value19\": \"UDF19\",\n\t\t\"value20\": \"UDF20\",\n\t\t\"value21\": \"UDF21\",\n\t\t\"value22\": \"UDF22\",\n\t\t\"value23\": \"UDF23\",\n\t\t\"value24\": \"UDF24\",\n\t\t\"value25\": \"UDF25\",\n\t\t\"value26\": \"UDF26\",\n\t\t\"value27\": \"UDF27\",\n\t\t\"value28\": \"UDF28\",\n\t\t\"value29\": \"UDF29\",\n\t\t\"value30\": \"UDF30\"\n\t}\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/MI/UDFs/JSON?Itemid&Itemnumber&mfgr","urlObject":{"protocol":"https","path":["webapi.svc","MI","UDFs","JSON"],"host":["api","iqreseller","com"],"query":[{"key":"Itemid","value":null},{"key":"Itemnumber","value":null},{"key":"mfgr","value":null}],"variable":[]}},"response":[],"_postman_id":"79abca30-9403-42d5-be82-cc87638757d7"}],"id":"e8e70f31-df2b-487d-95ca-e2187bd43b28","description":"<p>This folder contains endpoints used to <strong>retrieve and manage master item records</strong>. Master items represent product templates or base product definitions used when creating inventory records. These APIs allow users to query item data such as item numbers, manufacturer information, and product details.</p>\n","_postman_id":"e8e70f31-df2b-487d-95ca-e2187bd43b28"},{"name":"MAPP","item":[{"name":"Change Warehouse after SO","id":"7feedc12-7204-4e6f-a008-995da1005e03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"soid\": 2663,\r\n    \"inventoryid\": \"193528\",\r\n    \"warehouse\": \"REP-BILZ\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/MAPP/ShippingItems/Warehouse/JSON","urlObject":{"protocol":"https","path":["webapi.svc","MAPP","ShippingItems","Warehouse","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7feedc12-7204-4e6f-a008-995da1005e03"},{"name":"Get ShippingItems for SO JSON","id":"2f714bcc-fe2a-44a5-8a60-42318f090759","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc//Shipments/XML?soid=2663","urlObject":{"protocol":"https","path":["webapi.svc","","Shipments","XML"],"host":["api","iqreseller","com"],"query":[{"key":"soid","value":"2663"}],"variable":[]}},"response":[],"_postman_id":"2f714bcc-fe2a-44a5-8a60-42318f090759"},{"name":"Get Reserved SO Details by SOID","id":"a1a89a4b-7267-465f-97c0-7a78ae81cae1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/MAPP/SO/Details/Reserved/XML?SOId=2208","urlObject":{"protocol":"https","path":["webapi.svc","MAPP","SO","Details","Reserved","XML"],"host":["api","iqreseller","com"],"query":[{"key":"SOId","value":"2208"}],"variable":[]}},"response":[],"_postman_id":"a1a89a4b-7267-465f-97c0-7a78ae81cae1"}],"id":"3cec52f6-0cfe-4bf2-8a43-81b999eb5ed2","_postman_id":"3cec52f6-0cfe-4bf2-8a43-81b999eb5ed2","description":""},{"name":"MFGR","item":[{"name":"Get Mfgr by ID","id":"2b2f7dbb-241b-4a33-a63e-757bdbd035b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Mfgr/JSON/GetMfgrById?id=1754","description":"<p>Gets the Manufacturer information using the primarykey as a parameter</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Mfgr","JSON","GetMfgrById"],"host":["api","iqreseller","com"],"query":[{"key":"id","value":"1754"}],"variable":[]}},"response":[],"_postman_id":"2b2f7dbb-241b-4a33-a63e-757bdbd035b1"},{"name":"GET Mfgr by mfgr","id":"7c0f4ca6-79b5-491b-9a13-08af31c99a84","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Mfgr/XML/GetMfgrByMfgr?Mfgr=Apple","urlObject":{"protocol":"https","path":["webapi.svc","Mfgr","XML","GetMfgrByMfgr"],"host":["api","iqreseller","com"],"query":[{"key":"Mfgr","value":"Apple"}],"variable":[]}},"response":[],"_postman_id":"7c0f4ca6-79b5-491b-9a13-08af31c99a84"},{"name":"Get All Mfgrs","id":"8acdeed3-884d-44f7-89b6-2f2d21b6cb73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Mfgr/XML/GetAllMfgrs","urlObject":{"protocol":"https","path":["webapi.svc","Mfgr","XML","GetAllMfgrs"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8acdeed3-884d-44f7-89b6-2f2d21b6cb73"},{"name":"Get Mfgr Count","id":"be3c8b94-27a7-441c-918c-c7089906e8fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Mfgr/GetMfgrsCount","description":"<p>Gets the count for the number of manufacturers that are entered into the database.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Mfgr","GetMfgrsCount"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"be3c8b94-27a7-441c-918c-c7089906e8fd"}],"id":"a574b55e-61c0-4e1b-8848-426ba80da87c","description":"<p>This folder holds request examples that will demonstrate how to get information about manufacturers that are listed in the mfgr table.</p>\n","_postman_id":"a574b55e-61c0-4e1b-8848-426ba80da87c"},{"name":"Purchase Orders (PO)","item":[{"name":"Get POs XML","id":"08ce8909-11ab-4523-8516-3ff1c039e886","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/PO/XML/GetPOs?PageSize=30&Page=90&SortBy=43","description":"<p>This will get the data for a small group of purchase orders.</p>\n<p>a.  This request can be sent with no parameters.  It will return records that are defined by the page default parameter which is 20.  This means that leaving this at a default value of 20, Records 1 through 20 from the pt table will be returned as the result.</p>\n<p>b.  Changing or adding the PageSize parameter will return the number of records according to it's value.  This means, for example, if the PageSize parameter is set to 30, row 1 through 30 from the pt table will be returned as the result.</p>\n<p>c.  Changing or setting the Page parameter will return more than one group of records.  The number of records that would be returned will equal the value of Page multiplied by the value of the PageSize parameter.  For example if the PageSize parameter is set on 30 and the Page parameter is set on 90, 30 rows of data will be returned. The first row of the result will be row 2671 and the last row of the result will be 27.</p>\n<p>d.  Do not use the SortBy parameter for this api call.  It is not set up and will not change or sort your data.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","PO","XML","GetPOs"],"host":["api","iqreseller","com"],"query":[{"key":"PageSize","value":"30"},{"key":"Page","value":"90"},{"description":{"content":"<p>Please Note:  This parameter is currently not functional for this call.</p>\n","type":"text/plain"},"key":"SortBy","value":"43"}],"variable":[]}},"response":[],"_postman_id":"08ce8909-11ab-4523-8516-3ff1c039e886"},{"name":"Get POs JSON","id":"66ef0adc-cf28-4367-bab8-96a38869930a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/PO/JSON/GetPOs?PageSize=30&Page=90&SortBy=43","description":"<p>This will get the data for a small group of purchase orders.</p>\n<p>a.  This request can be sent with no parameters.  It will return records that are defined by the page default parameter which is 20.  This means that leaving this at a default value of 20, Records 1 through 20 from the pt table will be returned as the result.</p>\n<p>b.  Changing or adding the PageSize parameter will return the number of records according to it's value.  This means, for example, if the PageSize parameter is set to 30, row 1 through 30 from the pt table will be returned as the result.</p>\n<p>c.  Changing or setting the Page parameter will return more than one group of records.  The number of records that would be returned will equal the value of Page multiplied by the value of the PageSize parameter.  For example if the PageSize parameter is set on 30 and the Page parameter is set on 90, 30 rows of data will be returned. The first row of the result will be row 2671 and the last row of the result will be 27.</p>\n<p>d.  Do not use the SortBy parameter for this api call.  It is not set up and will not change or sort your data.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","PO","JSON","GetPOs"],"host":["api","iqreseller","com"],"query":[{"key":"PageSize","value":"30"},{"key":"Page","value":"90"},{"description":{"content":"<p>Please Note:  This parameter is currently not functional for this call.</p>\n","type":"text/plain"},"key":"SortBy","value":"43"}],"variable":[]}},"response":[],"_postman_id":"66ef0adc-cf28-4367-bab8-96a38869930a"},{"name":"Get PO By Id XML","id":"89690b47-2447-4369-87f5-5c534c86537b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/PO/XML/GetPOByPOId?id=2726","urlObject":{"protocol":"https","path":["webapi.svc","PO","XML","GetPOByPOId"],"host":["api","iqreseller","com"],"query":[{"description":{"content":"<p>This parameter is the ptid field in the pt table.  It is displayed in the application as PO number.</p>\n","type":"text/plain"},"key":"id","value":"2726"}],"variable":[]}},"response":[],"_postman_id":"89690b47-2447-4369-87f5-5c534c86537b"},{"name":"Get PO by Id JSON","id":"c3ea801b-5efb-43e1-8421-6f2a36ea3145","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://api.iqreseller.com/webapi.svc/PO/JSON/GetPOByPOId?id=2726","urlObject":{"protocol":"https","path":["webapi.svc","PO","JSON","GetPOByPOId"],"host":["api","iqreseller","com"],"query":[{"description":{"content":"<p>This parameter is actually the ptid field in the pt table.  In the application it is referred to as PO number.</p>\n","type":"text/plain"},"key":"id","value":"2726"}],"variable":[]}},"response":[],"_postman_id":"c3ea801b-5efb-43e1-8421-6f2a36ea3145"},{"name":"Get PO by PP Id XML","event":[{"listen":"prerequest","script":{"id":"0dbed1e0-2c96-431e-afd1-37f409286a68","exec":["pm.globals.get(\"session-token\");"],"type":"text/javascript"}}],"id":"63799242-3197-49ea-8e03-f0198ef966c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","description":"<p>PP means Purchase Proposal or Sales Quote</p>\n","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/PO/XML/GetPOByPPId?id=223","urlObject":{"protocol":"https","path":["webapi.svc","PO","XML","GetPOByPPId"],"host":["api","iqreseller","com"],"query":[{"key":"id","value":"223"}],"variable":[]}},"response":[],"_postman_id":"63799242-3197-49ea-8e03-f0198ef966c5"},{"name":"Get PO by PP Id JSON","event":[{"listen":"prerequest","script":{"exec":["pm.globals.get(\"session-token\");"],"type":"text/javascript","id":"0dbed1e0-2c96-431e-afd1-37f409286a68"}}],"id":"ba3f022a-b2cd-40f7-8e9f-c7ee3297be58","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","description":"<p>PP means Purchase Proposal or Sales Quote</p>\n","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/PO/JSON/GetPOByPPId?id=223","urlObject":{"protocol":"https","path":["webapi.svc","PO","JSON","GetPOByPPId"],"host":["api","iqreseller","com"],"query":[{"key":"id","value":"223"}],"variable":[]}},"response":[],"_postman_id":"ba3f022a-b2cd-40f7-8e9f-c7ee3297be58"},{"name":"Get POs by Itemnumber XML","id":"39a17b9a-bc44-445d-b9b2-82c57d8e4d13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/PO/XML/GetPOsByItemNumber?Item=E6400&Mfgr=Dell&Page=&PageSize=&SortBy=","description":"<p>This request will gather the data for a purchase order by looking for the purchase quote associated with it.</p>\n<p>The request can be controlled by five parameters.</p>\n<ol>\n<li>Item</li>\n<li>Mfgr</li>\n<li>Page</li>\n<li>PageSize</li>\n<li>SortBy</li>\n</ol>\n","urlObject":{"protocol":"https","path":["webapi.svc","PO","XML","GetPOsByItemNumber"],"host":["api","iqreseller","com"],"query":[{"description":{"content":"<p>if this parameter is used, the mfgr parameter must also be used.<br />If this parameter is used without the page, pagesize, and sortby parameters, all of the records for the requested itemnumber and manufacturer will be returned in the result.  It is strongly suggested not to do this.  Returning a large number of records could have serious performance problems.</p>\n","type":"text/plain"},"key":"Item","value":"E6400"},{"description":{"content":"<p>If this parameter is used, the item parameter must also be used.</p>\n","type":"text/plain"},"key":"Mfgr","value":"Dell"},{"key":"Page","value":""},{"key":"PageSize","value":""},{"key":"SortBy","value":""}],"variable":[]}},"response":[],"_postman_id":"39a17b9a-bc44-445d-b9b2-82c57d8e4d13"},{"name":"Get POs by Itemnumber JSON","id":"77bb7ca1-83c4-4579-8f57-f0d48b094a36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/PO/JSON/GetPOsByItemNumber?Item=E6400&Mfgr=Dell&Page&PageSize&SortBy","description":"<p>This request will gather the data for a purchase order by looking for the purchase quote associated with it.</p>\n<p>The request can be controlled by five parameters.</p>\n<ol>\n<li>Item</li>\n<li>Mfgr</li>\n<li>Page</li>\n<li>PageSize</li>\n<li>SortBy</li>\n</ol>\n","urlObject":{"protocol":"https","path":["webapi.svc","PO","JSON","GetPOsByItemNumber"],"host":["api","iqreseller","com"],"query":[{"description":{"content":"<p>if this parameter is used, the mfgr parameter must also be used.<br />If this parameter is used without the page, pagesize, and sortby parameters, all of the records for the requested itemnumber and manufacturer will be returned in the result.  It is strongly suggested not to do this.  Returning a large number of records could have serious performance problems.</p>\n","type":"text/plain"},"key":"Item","value":"E6400"},{"description":{"content":"<p>If this parameter is used, the item parameter must also be used.</p>\n","type":"text/plain"},"key":"Mfgr","value":"Dell"},{"key":"Page","value":""},{"key":"PageSize","value":""},{"key":"SortBy","value":""}],"variable":[]}},"response":[],"_postman_id":"77bb7ca1-83c4-4579-8f57-f0d48b094a36"},{"name":"Insert PO by XML","event":[{"listen":"prerequest","script":{"id":"2fb25a62-bfef-4f28-a97f-8f12edbf9914","exec":["pm.globals.get(\"session-token\");"],"type":"text/javascript"}}],"id":"21a1bc0a-5ab2-4a9a-89da-b9d035065198","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/xml","type":"text"},{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<POs>\n    <PO>\n        <PODetails>\n            <PODetail>\n                <item>001P4722</item>\n                <mfgr>IBM</mfgr>\n                <quantity>10</quantity>\n                <purchasecost>49.99</purchasecost>\n                <country>Indonesia</country>\n                <istaxable>1</istaxable>\n                <serialnumber></serialnumber>\n            </PODetail>\n            <PODetail>\n                <item>ZD621</item>\n                <mfgr>ZEBRA</mfgr>\n                <purchasecost>159.99</purchasecost>\n                <quantity>4</quantity>\n                <country>United States</country>\n                <istaxable>1</istaxable>\n                <serialnumber></serialnumber>\n            </PODetail>\n        </PODetails>\n        <vendor>UPS</vendor>\n        <contactname>John Kenworth</contactname>\n        <condition>ref</condition>\n        <currency>USD</currency>\n        <terms>net 30</terms>\n        <purchasedate>2022-8-12</purchasedate>\n        <rep>CM</rep>\n        <userdefined1>test1</userdefined1>\n        <userdefined2>test2</userdefined2>\n        <userdefined3>test3</userdefined3>\n        <freight>21</freight>\n        <freightistaxable>1</freightistaxable>\n        <miscchargesaretaxable>0</miscchargesaretaxable>\n        <taxable>1</taxable>\n    </PO>\n</POs>"},"url":"https://api.iqreseller.com/webapi.svc/PO/XML/InsertPOByXml","urlObject":{"protocol":"https","path":["webapi.svc","PO","XML","InsertPOByXml"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[{"id":"946bff13-f074-494c-aff9-67d38d03697e","name":"Example Request and Response of Insert PO by XML","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/xml","type":"text"},{"key":"iqr-session-token","value":"WWeoyS7CFubGngCKm+oxZNkPwKXCL2c7aOSrwJOjSx33+WxSGTSWTA==","type":"text"}],"body":{"mode":"raw","raw":"<POs>\r\n\t<PO>\r\n\t\t<PODetails>\r\n\t\t\t<PODetail>\r\n\t\t\t\t<item>0005962R</item>\r\n\t\t\t\t<mfgr>HP</mfgr>\r\n\t\t\t\t<quantity>1</quantity>\r\n\t\t\t\t<purchasecost>150</purchasecost>\r\n\t\t\t\t<country>India</country>\r\n\t\t\t\t<istaxable>1</istaxable>\r\n\t\t\t\t<serialnumber></serialnumber>\r\n\t\t\t</PODetail>\r\n\t\t\t<PODetail>\r\n\t\t\t\t<item>00FC448</item>\r\n\t\t\t\t<mfgr>HP</mfgr>\r\n\t\t\t\t<purchasecost>10.00</purchasecost>\r\n\t\t\t\t<quantity>4</quantity>\r\n\t\t\t\t<country>India</country>\r\n\t\t\t\t<istaxable>1</istaxable>\r\n\t\t\t\t<serialnumber>asdf22</serialnumber>\r\n\t\t\t</PODetail>\r\n\t\t</PODetails>\r\n\t\t<vendor>UPS</vendor>\r\n\t\t<contactname>Cliff</contactname>\r\n\t\t<condition>ref</condition>\r\n\t\t<currency>usd</currency>\r\n\t\t<terms>net 30</terms>\r\n\t\t<purchasedate>2018-5-5</purchasedate>\r\n\t\t<rep>SR</rep>\r\n\t\t<userdefined1>Cliff</userdefined1>\r\n\t\t<userdefined2>adfdd</userdefined2>\r\n\t\t<userdefined3>2.00</userdefined3>\r\n\t\t<freight>21</freight>\r\n\t\t<freightistaxable>1</freightistaxable>\r\n\t\t<miscchargesaretaxable>0</miscchargesaretaxable>\r\n\t\t<taxable>1</taxable>\r\n\t</PO>\r\n</POs>\r\n","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/PO/XML/InsertPOByXML"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Cache-Control","value":"private"},{"key":"Content-Length","value":"261"},{"key":"Content-Type","value":"application/xml; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 11 Dec 2019 16:43:13 GMT"}],"cookie":[],"responseTime":null,"body":"<ReturnObject xmlns=\"http://schemas.datacontract.org/2004/07/IQWebAPI\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <ErrorObject i:nil=\"true\"/>\n    <Information/>\n    <Status>1</Status>\n    <StatusDescription>PO inserted successfully.</StatusDescription>\n</ReturnObject>"}],"_postman_id":"21a1bc0a-5ab2-4a9a-89da-b9d035065198"},{"name":"Insert PO by JSON","id":"40e432ea-e1a8-4242-bec5-5b94a6ebce69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"Inventories\": [\n            {\n                \"commentstovendor\": \"                                                  \",\n                \"condition\": \"NEW \",\n                \"country\": \"INDONESIA\",\n                \"foreignpurchasecost\": 150,\n                \"foreignunitcost\": 150,\n                \"item\": \"001P4722                      \",\n                \"itemdesc\": \"UPDATE-14500 RPM 120GB SATA 3.5 HDD-817\",\n                \"location\": \"ES-01\",\n                \"mfgr\": \"IBM    \",\n                \"purchasecost\": 150,\n                \"purchasedate\": \"12/08/2022\",\n                \"quantity\": 10,\n                \"rep\": \"CM \",\n                \"serialnumber\": \"   \",\n                \"taxable\": true,\n                \"warehouse\": \"MAIN      \"\n            },\n            {\n                \"condition\": \"NEW \",\n                \"country\": \"UNITED STATES\",\n                \"foreignpurchasecost\": 150,\n                \"foreignunitcost\": 150,\n                \"item\": \"ZD621                       \",\n                \"itemdesc\": \"ZD600 Series 4-Inch Desktop Printers - NOTE\",\n                \"location\": \"ES-01\",\n                \"mfgr\": \"ZEBRA       \",\n                \"purchasecost\": 150,\n                \"purchasedate\": \"12/8/2022\",\n                \"quantity\": 1,\n                \"rep\": \"CM \",\n                \"serialnumber\": \"                         \",\n                \"taxable\": true,\n                \"warehouse\": \"MAIN      \"\n            }\n        ],\n        \"vendor\": \"UPS\",\n        \"condition\": \"NEW \",\n        \"contactcontact\": \"                                    \",\n        \"contactemail\": \"\",\n        \"contactfax\": \"                              \",\n        \"contactphone\": \"                              \",\n        \"currency\": \"USD\",\n        \"freightistaxable\": true,\n        \"miscchargesaretaxable\": false,\n        \"rep\": \"CM \",\n        \"shipfromaddress1\": \"1201 11TH AVE NE\",\n        \"shipfromaddress2\": \"STE 200\",\n        \"shipfromaddress3\": \"\",\n        \"shipfromcity\": \"REDMOND\",\n        \"shipfromcompany\": \"UPS \",\n        \"shipfromcontact\": \"                                    \",\n        \"shipfromcountry\": \"UNITED STATES\",\n        \"shipfromemail\": \"\",\n        \"shipfromfax\": \"                              \",\n        \"shipfromphone\": \"                              \",\n        \"shipfrompostalcode\": \"98052\",\n        \"shipfromstate\": \"WA\",\n        \"shipfromvendor\": \"UPS\",\n        \"shiptoaddress1\": \"1201 111TH AVE NE\",\n        \"shiptoaddress2\": \"STE #200\",\n        \"shiptoaddress3\": \"TEST\",\n        \"shiptocity\": \"REDMOND\",\n        \"shiptocompany\": \"UPS \",\n        \"shiptocontact\": \"SJ\",\n        \"shiptocountry\": \"UNITED STATES\",\n        \"shiptoemail\": \"sivajothi@viswambara.com\",\n        \"shiptofax\": \"1234567890\",\n        \"shiptophone\": \"132467943\",\n        \"shiptopostalcode\": \"98052\",\n        \"shiptostate\": \"WA\",\n        \"shiptovendor\": \"UPS\",\n        \"taxable\": true,\n        \"taxauthority\": \"WA\",\n        \"terms\": \"NET 30\",\n        \"userdefined1\": \"test1                              \",\n        \"userdefined2\": \"test2                              \",\n        \"userdefined3\": \"test3                              \",\n        \"userdefined4\": \"\",\n        \"userdefined5\": \"\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/PO/JSON/InsertPOByJson","description":"<p>This request creates a new purchase order with a JSON formatted request.</p>\n<p>It allows to insert ITAD related fields as well.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","PO","JSON","InsertPOByJson"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"40e432ea-e1a8-4242-bec5-5b94a6ebce69"},{"name":"PO Insert (Revised) XML","id":"a0f99d53-72c7-41f3-ad9c-8ec15264462f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"    <po>\r\n        <inventories>\r\n            <inventory>\r\n                <item>001P4722</item>\r\n                <mfgr>IBM</mfgr>\r\n                <quantity>10</quantity>\r\n                <purchasecost>49.99</purchasecost>\r\n                <country>Indonesia</country>\r\n                <istaxable>1</istaxable>\r\n                <serialnumber></serialnumber>\r\n            </inventory>\r\n            <inventory>\r\n                <item>ZD621</item>\r\n                <mfgr>ZEBRA</mfgr>\r\n                <purchasecost>159.99</purchasecost>\r\n                <quantity>4</quantity>\r\n                <country>United States</country>\r\n                <istaxable>1</istaxable>\r\n                <serialnumber></serialnumber>\r\n            </inventory>\r\n        </inventories>\r\n        <vendor>ACME</vendor>\r\n        <contactname>John Kenworth</contactname>\r\n        <condition>ref</condition>\r\n        <currency>USD</currency>\r\n        <terms>net 30</terms>\r\n        <purchasedate>2022-8-12</purchasedate>\r\n        <rep>CM</rep>\r\n        <userdefined1>test1</userdefined1>\r\n        <userdefined2>test2</userdefined2>\r\n        <userdefined3>test3</userdefined3>\r\n        <freight>21</freight>\r\n        <freightistaxable>1</freightistaxable>\r\n        <miscchargesaretaxable>0</miscchargesaretaxable>\r\n        <taxable>1</taxable>\r\n        <overidecomplete>1</overidecomplete>\r\n\t\t<istrade>1</istrade>\r\n    </po>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/POs/XML","urlObject":{"protocol":"https","path":["webapi.svc","POs","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a0f99d53-72c7-41f3-ad9c-8ec15264462f"},{"name":"PO Insert (Revised) JSON","id":"cb034d88-bd89-4646-9731-f74ad2076797","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"vendor\": \"EBAY\",\r\n    \"contactname\": \"Cliff Mauer\",\r\n    \"condition\": \"REF\",\r\n    \"currency\": \"USD\",\r\n    \"terms\": \"net 30\",\r\n    \"purchasedate\": \"2021-04-05\",\r\n    \"rep\": \"CM\",\r\n    \"freight\": \"21\",\r\n    \"freightistaxable\": \"true\",\r\n    \"miscchargesaretaxable\": \"0\",\r\n    \"taxable\": \"true\",\r\n    \"overidecomplete\": \"1\",\r\n    \"istrade\": \"1\",\r\n    \"inventories\": [\r\n        {\r\n            \"item\": \"0005962R\",\r\n            \"mfgr\": \"HP\",\r\n            \"quantity\": \"1\",\r\n            \"purchasecost\": \"150\",\r\n            \"country\": \"India\",\r\n            \"istaxable\": \"true\",\r\n            \"serialnumber\": \"8008820987\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/POs/JSON","urlObject":{"protocol":"https","path":["webapi.svc","POs","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"cb034d88-bd89-4646-9731-f74ad2076797"},{"name":"Update PO UDF1-UDF4","id":"ddaefaa3-cf46-4bad-bc6f-e90e11a50631","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<pos>\r\n    <po>\r\n        <poid>3225</poid>\r\n        <userdefined1>TESTCliff</userdefined1>\r\n        <userdefined2>TestJohn</userdefined2>\r\n        <userdefined3>TestJudy</userdefined3>\r\n        <userdefined4>TestAlma</userdefined4>\r\n     </po>\r\n</pos>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/PO/XML","urlObject":{"protocol":"https","path":["webapi.svc","PO","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ddaefaa3-cf46-4bad-bc6f-e90e11a50631"},{"name":"PO Line Item Insert - Inventory lines for existing POs","id":"b7f31779-873a-4c0d-8b8e-2609da20a5aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"poid\": \"3417\",\r\n        \"inventories\": [\r\n            {\r\n                \"item\": \"HD160JJ/P\",\r\n                \"mfgr\": \"Dell\",\r\n                \"quantity\": \"1\",\r\n                \"purchasecost\": \"79.89\",\r\n                \"condition\": \"NEW\",\r\n                \"istaxable\": \"1\",\r\n                \"serialnumber\": \"S0DFJ1MLA84095\"\r\n            }\r\n        ]\r\n    },\r\n    [\r\n        {\r\n            \"commentstovendor\": \"325\",\r\n            \"condition\": \"NEW \",\r\n            \"country\": \"INDIA\",\r\n            \"foreignpurchasecost\": 80,\r\n            \"foreignunitcost\": 80,\r\n            \"item\": \"HD160JJ/P\",\r\n            \"itemdesc\": \"160 HDD\",\r\n            \"location\": \"ES-06\",\r\n            \"mfgr\": \"Dell\",\r\n            \"purchasecost\": 125.99,\r\n            \"quantity\": 1,\r\n            \"rep\": \"CM \",\r\n            \"serialnumber\": \"S0DFJ1MLA84095\",\r\n            \"taxable\": true,\r\n            \"warehouse\": \"MAIN      \",\r\n            \"internalcomments\": \"Cliff Scenario 1\"\r\n        }\r\n    ]\r\n}\r\n]","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/PO/INVENTORIES/JSON","description":"<p>This example will demonstrate how you can add a line item to an existing Purchase Order.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","PO","INVENTORIES","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b7f31779-873a-4c0d-8b8e-2609da20a5aa"},{"name":"Get POs (Revised)","id":"2b63927a-8797-442e-a01a-1407b6419ba7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/POs/XML","urlObject":{"protocol":"https","path":["webapi.svc","POs","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2b63927a-8797-442e-a01a-1407b6419ba7"},{"name":"PO Report PDF Download","id":"5a26c2bb-b3e3-4dd5-b021-173419ac7a99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/Reports/PO","description":"<p>Parameter details:</p>\n<p>POID</p>\n<p>REP</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Reports","PO"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"5a26c2bb-b3e3-4dd5-b021-173419ac7a99"},{"name":"PO Receive XML","id":"72427f41-4401-4b81-b965-19d41617f39c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<po>\r\n    <poid>850</poid>\r\n    <items>\r\n        <item>\r\n            <inventoryid>115913</inventoryid>\r\n            <serialnumber>00000106222</serialnumber>\r\n            <weight>0.500</weight>\r\n            <warehouse>MAIN-1</warehouse>\r\n            <location>Location01</location>\r\n            <description>146 GB HDD</description>\r\n            <purchasecost>6</purchasecost>\r\n            <conditioncode>REF</conditioncode>\r\n            <country>United States</country>\r\n        </item>\r\n        <item>\r\n            <inventoryid>116311</inventoryid>\r\n            <serialnumber>000002062422</serialnumber>\r\n            <weight>0.5</weight>\r\n            <warehouse>main-1</warehouse>\r\n            <location>Location02</location>\r\n            <description>146 GB HDD</description>\r\n            <purchasecost>6</purchasecost>\r\n            <conditioncode>REF</conditioncode>\r\n            <country>United States</country>\r\n        </item>\r\n    </items>\r\n</po>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/PO/Receive/XML","urlObject":{"protocol":"https","path":["webapi.svc","PO","Receive","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"72427f41-4401-4b81-b965-19d41617f39c"},{"name":"PO Receive JSON","id":"2a1517aa-568b-4cc9-a2c4-ffca2db808b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"poid\": 1800,\r\n    \"items\": [\r\n        {\r\n            \"inventoryid\": 147295,\r\n            \"serialnumber\": \"Cliff001\",\r\n            \"weight\": 0.50,\r\n            \"warehouse\": \"MAIN-1\",\r\n            \"location\": \"Location01\",\r\n            \"description\": \"7200RPM 250GB SATA 3.5 Hard Drive\",\r\n            \"purchasecost\": 10.1122,\r\n            \"conditioncode\": \"REF\",\r\n            \"country\": \"United States\"\r\n        },\r\n        {\r\n            \"inventoryid\": 147296,\r\n            \"serialnumber\": \"Cliff002\",\r\n            \"weight\": 0.5,\r\n            \"warehouse\": \"MAIN02\",\r\n            \"location\": \"Location02\",\r\n            \"description\": \"7200RPM 250GB SATA 3.5 Hard Drive\",\r\n            \"purchasecost\": 11.3344,\r\n            \"conditioncode\": \"REF\",\r\n            \"country\": \"India\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/PO/Receive/JSON","urlObject":{"protocol":"https","path":["webapi.svc","PO","Receive","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2a1517aa-568b-4cc9-a2c4-ffca2db808b2"}],"id":"2bdccba6-5120-459b-bbc3-b1cca0ef5db0","description":"<p>This folder contains endpoints used to <strong>retrieve and manage purchase orders</strong>. Purchase orders represent procurement transactions issued to vendors for purchasing inventory items. These APIs allow users to retrieve purchase order details, counts, and related transaction information.</p>\n","_postman_id":"2bdccba6-5120-459b-bbc3-b1cca0ef5db0"},{"name":"PO Attachment","item":[{"name":"Upload File for a PO","id":"73999e34-1055-4aac-ad60-97c2976217fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/po/attachment","urlObject":{"protocol":"https","path":["webapi.svc","po","attachment"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"73999e34-1055-4aac-ad60-97c2976217fd"},{"name":"Download the File from a PO","id":"72b0b1a2-b21e-47f2-9279-3bb2bed2da79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/po/attachment","urlObject":{"protocol":"https","path":["webapi.svc","po","attachment"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"72b0b1a2-b21e-47f2-9279-3bb2bed2da79"},{"name":"Get Attachments","id":"917a5446-574d-47a6-8eca-3b8fdbc417db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==}","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/po/attachmens/Json?poid=5108","urlObject":{"protocol":"https","path":["webapi.svc","po","attachmens","Json"],"host":["api","iqreseller","com"],"query":[{"key":"poid","value":"5108"}],"variable":[]}},"response":[],"_postman_id":"917a5446-574d-47a6-8eca-3b8fdbc417db"}],"id":"7c4c1c3e-05dd-4d46-924d-b10aa7750716","_postman_id":"7c4c1c3e-05dd-4d46-924d-b10aa7750716","description":""},{"name":"PP","item":[{"name":"Get All PPs XML","id":"e4f6235a-d7dc-4802-b2b7-fb3454282783","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/PP/XML/GetPPs?page=4&pagesize=10&sort=0","urlObject":{"protocol":"https","path":["webapi.svc","PP","XML","GetPPs"],"host":["api","iqreseller","com"],"query":[{"key":"page","value":"4"},{"key":"pagesize","value":"10"},{"key":"sort","value":"0"}],"variable":[]}},"response":[],"_postman_id":"e4f6235a-d7dc-4802-b2b7-fb3454282783"},{"name":"Get All PPs JSON","id":"d6dd3a57-963d-46c5-b815-41e6b213b4e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/PP/JSON/GetPPs?page=4&pagesize=10&sort=0","urlObject":{"protocol":"https","path":["webapi.svc","PP","JSON","GetPPs"],"host":["api","iqreseller","com"],"query":[{"key":"page","value":"4"},{"key":"pagesize","value":"10"},{"key":"sort","value":"0"}],"variable":[]}},"response":[],"_postman_id":"d6dd3a57-963d-46c5-b815-41e6b213b4e3"},{"name":"Get PP by PP id XML","id":"3be1a8b0-bd3b-45d0-a292-6be0e8babfa8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/PP/XML/GetPPByPPId?id=5","urlObject":{"protocol":"https","path":["webapi.svc","PP","XML","GetPPByPPId"],"host":["api","iqreseller","com"],"query":[{"key":"id","value":"5"}],"variable":[]}},"response":[],"_postman_id":"3be1a8b0-bd3b-45d0-a292-6be0e8babfa8"},{"name":"Get PP by PP id JSON","id":"4f58c6bf-7808-45a9-afd4-c8c98f8f9a4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/PP/JSON/GetPPByPPId?id=5","urlObject":{"protocol":"https","path":["webapi.svc","PP","JSON","GetPPByPPId"],"host":["api","iqreseller","com"],"query":[{"key":"id","value":"5"}],"variable":[]}},"response":[],"_postman_id":"4f58c6bf-7808-45a9-afd4-c8c98f8f9a4b"},{"name":"Get PP by PO id XML","id":"e102881f-332b-4edb-b1bd-dcff52f58bd9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/PP/XML/GetPPByPOId?id=266","urlObject":{"protocol":"https","path":["webapi.svc","PP","XML","GetPPByPOId"],"host":["api","iqreseller","com"],"query":[{"key":"id","value":"266"}],"variable":[]}},"response":[],"_postman_id":"e102881f-332b-4edb-b1bd-dcff52f58bd9"},{"name":"Get PP by PO id JSON","id":"50849750-0605-4f3d-b1b2-becdf0285b37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/PP/JSON/GetPPByPOId?id=266","urlObject":{"protocol":"https","path":["webapi.svc","PP","JSON","GetPPByPOId"],"host":["api","iqreseller","com"],"query":[{"key":"id","value":"266"}],"variable":[]}},"response":[],"_postman_id":"50849750-0605-4f3d-b1b2-becdf0285b37"},{"name":"Get PPs by Item Number XML","id":"65250c2a-a433-4980-8e03-824a194aa425","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/PP/XML/GetPPsByItemNumber?itemnumber=005048875&mfgr=EMC&page =5&pagesize=10","urlObject":{"protocol":"https","path":["webapi.svc","PP","XML","GetPPsByItemNumber"],"host":["api","iqreseller","com"],"query":[{"key":"itemnumber","value":"005048875"},{"key":"mfgr","value":"EMC"},{"key":"page ","value":"5"},{"key":"pagesize","value":"10"}],"variable":[]}},"response":[],"_postman_id":"65250c2a-a433-4980-8e03-824a194aa425"},{"name":"Get PPs by Item Number JSON","id":"455915a6-af2c-4cb3-b3e4-13e251d593a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/PP/JSON/GetPPsByItemNumber?itemnumber=005048875&mfgr=EMC&page=1&pagesize=10","urlObject":{"protocol":"https","path":["webapi.svc","PP","JSON","GetPPsByItemNumber"],"host":["api","iqreseller","com"],"query":[{"key":"itemnumber","value":"005048875"},{"key":"mfgr","value":"EMC"},{"key":"page","value":"1"},{"key":"pagesize","value":"10"}],"variable":[]}},"response":[],"_postman_id":"455915a6-af2c-4cb3-b3e4-13e251d593a4"},{"name":"Get PPs (Revised) XML","id":"5e75fea8-9ff6-4862-8d19-ff3bc4ca8aab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/PPs/XML?poid=426","description":"<h1 id=\"parameters\"><strong>Parameters</strong></h1>\n<ul>\n<li>PPid -- Purchase Proposal Number</li>\n<li>POid -- Purchase Order Number</li>\n<li>CVCode</li>\n<li>ItemNumber</li>\n<li>Mfgr</li>\n<li>Status</li>\n<li>UpdatedStartDate</li>\n<li>UpdatedEndDate</li>\n<li>ShipStartDate</li>\n<li>ShipEndDate</li>\n</ul>\n<h2 id=\"sorting-options\"><em><strong>Sorting Options:</strong></em></h2>\n<ul>\n<li>PPID asc</li>\n<li>PPID desc</li>\n<li>POID asc</li>\n<li>POID desc</li>\n<li>CVcode asc</li>\n<li>CVcode desc</li>\n<li>PurchaseDate Asc</li>\n<li>PurchaseDate Desc</li>\n<li>LASTUPDATED Asc</li>\n<li>LASTUPDATED Desc</li>\n<li>DELIVERYDATE Asc</li>\n<li>DELIVERYDATE Desc</li>\n<li>STATUS Asc</li>\n<li>STATUS Desc</li>\n</ul>\n","urlObject":{"protocol":"https","path":["webapi.svc","PPs","XML"],"host":["api","iqreseller","com"],"query":[{"key":"poid","value":"426"}],"variable":[]}},"response":[],"_postman_id":"5e75fea8-9ff6-4862-8d19-ff3bc4ca8aab"},{"name":"Insert PP JSON","id":"b9d967c5-6a0a-4a0d-a494-94b74733806a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"condition\": \"NEW\",\r\n    \"vendor\": \"BAILEY\",\r\n    \"contactfax\": \"1234567896\",\r\n    \"contactphone\": \"9876543210\",\r\n    \"probabilityfactor\": \"1\",\r\n    \"rep\": \"JH\",\r\n    \"acceptancedate\": \"22 JAN, 2022\",\r\n    \"closingdate\": \"22 JAN, 2022\",\r\n    \"expecteddate\": \"22 JAN, 2022\",\r\n    \"userdefined1\": \"a1\",\r\n    \"userdefined2\": \"b1\",\r\n    \"userdefined3\": \"c1\",\r\n    \"userdefined4\": \"d1\",\r\n    \"userdefined5\": \"e1\",\r\n    \"shiptofax\": \"1234564789\",\r\n    \"shiptophone\": \"1234567890\",\r\n    \"commentstovendor\": \"ascfv\",\r\n    \"internalcomments\": \"abcdefgh\",\r\n    \"shipfromvendor\": \"BAILEY\",\r\n    \"shipfromcompany\": \"BAILEY TECHNOLOGY\",\r\n    \"shipfromaddress1\": \"15 Parts Lane\",\r\n    \"shipfromaddress2\": \"\",\r\n    \"shipfromaddress3\": \"\",\r\n    \"shipfromcity\": \"Harrisburg\",\r\n    \"shipfromcountry\": \"UNITED STATES\",\r\n    \"shipfromemail\": \"asu@iqreseller.com\",\r\n    \"shipfromfax\": \"\",\r\n    \"shipfromphone\": \"800-555-1212\",\r\n    \"shipfrompostalcode\": \"17112\",\r\n    \"shipfromstate\": \"PA\",\r\n    \"ppdetails\": [\r\n        {\r\n            \"item\": \"WS-C2060-24TC-L\",\r\n            \"mfgr\": \"CISCO\",\r\n            \"location\": \"3A-03\",\r\n            \"serialnumber\": \"1131313\",\r\n            \"description\": \"WS-C2060-24TC-L\",\r\n            \"extendeddescription\": \"Test Description\",\r\n            \"internalcomments\": \"PP for PO\",\r\n            \"commentstovendor\": \"30 Day Warranty\",\r\n            \"unitcost\": \"10\",\r\n            \"warehouse\": \"ssss\",\r\n            \"taxable\": \"0\",\r\n            \"taxauthoritytaxable\": \"0\",\r\n            \"quantity\": \"7\"\r\n        },\r\n        {\r\n            \"item\": \"600GB\",\r\n            \"mfgr\": \"MEDIA\",\r\n            \"location\": \"7\",\r\n            \"description\": \"XXX | XXX | XXX | XXX\",\r\n            \"extendeddescription\": \"7\",\r\n            \"internalcomments\": \"\",\r\n            \"commentstovendor\": \"\",\r\n            \"unitcost\": \"10\",\r\n            \"warehouse\": \"MAIN\",\r\n            \"taxable\": \"0\",\r\n            \"taxauthoritytaxable\": \"0\",\r\n            \"quantity\": \"7\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/PPs/JSON","urlObject":{"protocol":"https","path":["webapi.svc","PPs","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b9d967c5-6a0a-4a0d-a494-94b74733806a"},{"name":"Insert PP XML","id":"1b6d676b-11d1-43ba-bd98-288e3e7df9a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<pp>\r\n    <ppdetails>\r\n        <ppdetail>\r\n            <item>WS-C2060-24TC-L</item>\r\n            <mfgr>CISCO</mfgr>\r\n            <location>3E-01r</location>\r\n            <serialnumber>292358</serialnumber>\r\n            <description>Cisco WS-C2060-24TC-L</description>\r\n            <extendeddescription>7</extendeddescription>\r\n            <unitcost>10</unitcost>\r\n            <warehouse>MAIN</warehouse>\r\n            <taxable>1</taxable>\r\n            <taxauthoritytaxable></taxauthoritytaxable>\r\n            <quantity>1</quantity>\r\n        </ppdetail>\r\n        <ppdetail>\r\n            <item>005-048-811</item>\r\n            <mfgr>EMC</mfgr>\r\n            <location>3E-01</location>\r\n            <serialnumber></serialnumber>\r\n            <description>400GB 3GB SAS 10K</description>\r\n            <extendeddescription>7</extendeddescription>\r\n            <internalcomments>TEST IN COMMENTS</internalcomments>\r\n            <commentstovendor>TEST CV COMMENTS</commentstovendor>\r\n            <unitcost>10</unitcost>\r\n            <warehouse>ssss</warehouse>\r\n            <taxable>1</taxable>\r\n            <taxauthoritytaxable></taxauthoritytaxable>\r\n            <quantity>12</quantity>\r\n        </ppdetail>\r\n    </ppdetails>\r\n    <condition>NEW</condition>\r\n    <vendor>ENTRASYS</vendor>\r\n    <contactfax></contactfax>\r\n    <contactphone>35575584</contactphone>\r\n    <probabilityfactor>1</probabilityfactor>\r\n    <rep>BB</rep>\r\n    <acceptancedate>20 Jun, 2022</acceptancedate>\r\n    <closingdate>20 Jun, 2022</closingdate>\r\n    <expecteddate>20 Jun, 2022</expecteddate>\r\n    <shipdate>20 Jun, 2022</shipdate>\r\n    <userdefined1>a</userdefined1>\r\n    <userdefined2>b</userdefined2>\r\n    <userdefined3>c</userdefined3>\r\n    <userdefined4>d</userdefined4>\r\n    <userdefined5>e</userdefined5>\r\n    <shipfromvendor>BAILEY</shipfromvendor>\r\n    <shipfromcompany>BAILEY</shipfromcompany>\r\n    <shipfromaddress1>15 Parts Lane</shipfromaddress1>\r\n    <shipfromaddress2></shipfromaddress2>\r\n    <shipfromaddress3></shipfromaddress3>\r\n    <shipfromcity>Harrisburg</shipfromcity>\r\n    <shipfromcountry>UNITED STATES</shipfromcountry>\r\n    <shipfromemail>asu@iqreseller.com</shipfromemail>\r\n    <shipfromfax></shipfromfax>\r\n    <shipfromphone>800-555-1212</shipfromphone>\r\n    <shipfrompostalcode>17112</shipfrompostalcode>\r\n    <shipfromstate>PA</shipfromstate>\r\n    <shiptovendor>BAILEY</shiptovendor>\r\n    <shiptocompany>TEST company</shiptocompany>\r\n    <shiptoaddress1>15 Parts Lane</shiptoaddress1>\r\n    <shiptocity>Harrisburg</shiptocity>\r\n    <shiptocountry>UNITED STATES</shiptocountry>\r\n    <shiptoemail>asu@iqreseller.com</shiptoemail>\r\n    <shiptophone>800-555-1212</shiptophone>\r\n    <shiptostate>PA</shiptostate>\r\n    <commentstovendor>COMMENTS</commentstovendor>\r\n    <internalcomments>Internal Commnents</internalcomments>\r\n</pp>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/PPs/XML","urlObject":{"protocol":"https","path":["webapi.svc","PPs","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"1b6d676b-11d1-43ba-bd98-288e3e7df9a6"}],"id":"9f82bf97-e228-47ba-a114-fe14bf4aa405","_postman_id":"9f82bf97-e228-47ba-a114-fe14bf4aa405","description":""},{"name":"PP Attachment","item":[{"name":"Upload File for a PP","id":"3b7bbc19-15d7-429f-8da1-060fb20fcc61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/pp/attachment","urlObject":{"protocol":"https","path":["webapi.svc","pp","attachment"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3b7bbc19-15d7-429f-8da1-060fb20fcc61"},{"name":"Download the File from a PP","id":"96fe38b6-13da-43ec-b189-2959937daed3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/pp/attachment","urlObject":{"protocol":"https","path":["webapi.svc","pp","attachment"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"96fe38b6-13da-43ec-b189-2959937daed3"},{"name":"Get Attachments XML","id":"57323957-5788-4a78-801d-ac573fa68dd1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/PP/attachments/XML","urlObject":{"protocol":"https","path":["webapi.svc","PP","attachments","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"57323957-5788-4a78-801d-ac573fa68dd1"}],"id":"a2557a6f-7de4-4366-afc2-dd5d727ddebb","_postman_id":"a2557a6f-7de4-4366-afc2-dd5d727ddebb","description":""},{"name":"Rates","item":[{"name":"Get Currency Rates","id":"7de11ba7-fa7e-415a-86e4-9287e14e14ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Rates/XML/GetCurrencyRates?Page=1&PageSize=20&SortBy=0","urlObject":{"protocol":"https","path":["webapi.svc","Rates","XML","GetCurrencyRates"],"host":["api","iqreseller","com"],"query":[{"key":"Page","value":"1"},{"key":"PageSize","value":"20"},{"key":"SortBy","value":"0"}],"variable":[]}},"response":[],"_postman_id":"7de11ba7-fa7e-415a-86e4-9287e14e14ff"},{"name":"Get Currency Rates by Id","id":"b26c6f86-bd03-490b-9163-5f0fc4a489ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Rates/XML/GetCurrencyRatesById?id=2","urlObject":{"protocol":"https","path":["webapi.svc","Rates","XML","GetCurrencyRatesById"],"host":["api","iqreseller","com"],"query":[{"key":"id","value":"2"}],"variable":[]}},"response":[],"_postman_id":"b26c6f86-bd03-490b-9163-5f0fc4a489ea"},{"name":"Get Currency Rates by Code","id":"8198082e-dfc1-43b7-9829-22452119cf77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Currency/XML/GetCurrencyByCode?Code=EUR","urlObject":{"protocol":"https","path":["webapi.svc","Currency","XML","GetCurrencyByCode"],"host":["api","iqreseller","com"],"query":[{"key":"Code","value":"EUR"}],"variable":[]}},"response":[],"_postman_id":"8198082e-dfc1-43b7-9829-22452119cf77"},{"name":"Get Currency Rates Count","id":"fc0fdba9-a9b6-49fc-bee5-2a2bd62f6f77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Currency/GetCurrencyCodesCount","urlObject":{"protocol":"https","path":["webapi.svc","Currency","GetCurrencyCodesCount"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"fc0fdba9-a9b6-49fc-bee5-2a2bd62f6f77"}],"id":"9027ca73-bd26-4d33-95ea-5fa1ebf22c97","_postman_id":"9027ca73-bd26-4d33-95ea-5fa1ebf22c97","description":""},{"name":"Reports API for Dashboard","item":[{"name":"Profit and Loss Statement (XML)","id":"24ddc84b-deff-4f12-8b00-8e28ffe946af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Reports/Ledger/ProfitAndLoss/XML","urlObject":{"protocol":"https","path":["webapi.svc","Reports","Ledger","ProfitAndLoss","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"24ddc84b-deff-4f12-8b00-8e28ffe946af"},{"name":"Profit and Loss Statement (JSON)","id":"ffaec3da-2e40-4569-b710-bde586f9828a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Reports/Ledger/ProfitAndLoss/JSON","urlObject":{"protocol":"https","path":["webapi.svc","Reports","Ledger","ProfitAndLoss","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ffaec3da-2e40-4569-b710-bde586f9828a"},{"name":"Paid Commission report (JSON)","id":"c0e2fbd6-d25c-456e-834e-8c9c4eb56815","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Reports/Commission/PaidMargin/JSON?StartDate=2022-01-01&EndDate=2022-03-31&REP=ASU&GroupBy=1","urlObject":{"protocol":"https","path":["webapi.svc","Reports","Commission","PaidMargin","JSON"],"host":["api","iqreseller","com"],"query":[{"key":"StartDate","value":"2022-01-01"},{"key":"EndDate","value":"2022-03-31"},{"key":"REP","value":"ASU"},{"key":"GroupBy","value":"1"}],"variable":[]}},"response":[],"_postman_id":"c0e2fbd6-d25c-456e-834e-8c9c4eb56815"},{"name":"Paid Commission report (XML)","id":"a9dfb8a3-4917-4b55-bd25-195d84ea70cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Reports/Commission/PaidMargin/XML?StartDate=2022-01-01&EndDate=2022-03-31&REP=ASU&GroupBy=1","urlObject":{"protocol":"https","path":["webapi.svc","Reports","Commission","PaidMargin","XML"],"host":["api","iqreseller","com"],"query":[{"key":"StartDate","value":"2022-01-01"},{"key":"EndDate","value":"2022-03-31"},{"key":"REP","value":"ASU"},{"description":{"content":"<p>1: Summarized by SO, 2: Summarized by SO and Invoice</p>\n","type":"text/plain"},"key":"GroupBy","value":"1"}],"variable":[]}},"response":[],"_postman_id":"a9dfb8a3-4917-4b55-bd25-195d84ea70cd"}],"id":"94e1afb0-9ac0-43ad-bd24-7e5d59968344","_postman_id":"94e1afb0-9ac0-43ad-bd24-7e5d59968344","description":""},{"name":"Returns (RMA)","item":[{"name":"Get RMA (XML)","id":"1c010156-7ef5-4531-ab8d-a6d0b50360b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Returns/XML?returnid =258","description":"<p>StartFragment</p>\n<p><strong>Parameters:</strong></p>\n<ul>\n<li>returnid</li>\n<li>soid</li>\n<li>cvcode</li>\n<li>status</li>\n<li>openedstartdate</li>\n<li>openedenddate</li>\n<li>verifiedstartdate</li>\n<li>verifiedenddate</li>\n<li>testedstartdatete</li>\n<li>stedenddate</li>\n<li>closedstartdate</li>\n<li>closedenddate</li>\n<li>voidedstartdate</li>\n<li>voidedenddate</li>\n<li>receivedstartdate</li>\n<li>receivedenddate</li>\n<li>skiplinespage = 1</li>\n<li>(default)pagesize = 20</li>\n<li>(default)sortby = 1</li>\n<li>(default returnid)</li>\n</ul>\n<p>StartFragment</p>\n<p>SORTBY Options: </p>\n<ul>\n<li>SORTBY = 0 - [returnid] ASC </li>\n<li>SORTBY = 1 - [returnid] DESC </li>\n<li>SORTBY = 2 - [soid] ASC </li>\n<li>SORTBY = 3 - [soid] DESC </li>\n<li>SORTBY = 4 - [cvcode] ASC </li>\n<li>SORTBY = 5 - [cvcode] DESC </li>\n<li>SORTBY = 6 - [status] ASC </li>\n<li>SORTBY = 7 - [status] DESC </li>\n<li>SORTBY = 8 - [createddate] ASC </li>\n<li>SORTBY = 9 - [createddate] DESC </li>\n<li>SORTBY = 10 - [verifieddate] ASC </li>\n<li>SORTBY = 11 - [verifieddate] DESC </li>\n<li>SORTBY = 12 - [testeddate] ASC </li>\n<li>SORTBY = 13 - [testeddate] DESC </li>\n<li>SORTBY = 14 - [closeddate] ASC </li>\n<li>SORTBY = 15 - [closeddate] DESC </li>\n<li>SORTBY = 16 - [receiveddate] ASC </li>\n<li>SORTBY = 17 - [receiveddate] DESC </li>\n<li>SORTBY = 18 - [voideddate] ASC </li>\n<li>SORTBY = 19 - [voideddate] DESC </li>\n<li>If any other number - [returnid] DESC</li>\n</ul>\n<p>EndFragment</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Returns","XML"],"host":["api","iqreseller","com"],"query":[{"key":"returnid ","value":"258"}],"variable":[]}},"response":[],"_postman_id":"1c010156-7ef5-4531-ab8d-a6d0b50360b1"},{"name":"Get Returns (RMA) (JSON)","id":"de033a8a-f700-4435-98ce-baca96dcbdf6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Returns/JSON","description":"<p>StartFragment</p>\n<p><strong>Parameters:</strong></p>\n<ul>\n<li>returnid</li>\n<li>soid</li>\n<li>cvcode</li>\n<li>status</li>\n<li>openedstartdate</li>\n<li>openedenddate</li>\n<li>verifiedstartdate</li>\n<li>verifiedenddate</li>\n<li>testedstartdatete</li>\n<li>stedenddate</li>\n<li>closedstartdate</li>\n<li>closedenddate</li>\n<li>voidedstartdate</li>\n<li>voidedenddate</li>\n<li>receivedstartdate</li>\n<li>receivedenddate</li>\n<li>skiplinespage = 1</li>\n<li>(default)pagesize = 20</li>\n<li>(default)sortby = 1</li>\n<li>(default returnid)</li>\n</ul>\n<p>StartFragment</p>\n<p>SORTBY Options: </p>\n<ul>\n<li>SORTBY = 0 - [returnid] ASC </li>\n<li>SORTBY = 1 - [returnid] DESC </li>\n<li>SORTBY = 2 - [soid] ASC </li>\n<li>SORTBY = 3 - [soid] DESC </li>\n<li>SORTBY = 4 - [cvcode] ASC </li>\n<li>SORTBY = 5 - [cvcode] DESC </li>\n<li>SORTBY = 6 - [status] ASC </li>\n<li>SORTBY = 7 - [status] DESC </li>\n<li>SORTBY = 8 - [createddate] ASC </li>\n<li>SORTBY = 9 - [createddate] DESC </li>\n<li>SORTBY = 10 - [verifieddate] ASC </li>\n<li>SORTBY = 11 - [verifieddate] DESC </li>\n<li>SORTBY = 12 - [testeddate] ASC </li>\n<li>SORTBY = 13 - [testeddate] DESC </li>\n<li>SORTBY = 14 - [closeddate] ASC </li>\n<li>SORTBY = 15 - [closeddate] DESC </li>\n<li>SORTBY = 16 - [receiveddate] ASC </li>\n<li>SORTBY = 17 - [receiveddate] DESC </li>\n<li>SORTBY = 18 - [voideddate] ASC </li>\n<li>SORTBY = 19 - [voideddate] DESC </li>\n<li>If any other number - [returnid] DESC</li>\n</ul>\n<p>EndFragment</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Returns","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"de033a8a-f700-4435-98ce-baca96dcbdf6"},{"name":"SO Return Insert (JSON) [POST] - sos/return/json","id":"abe4de58-0b64-4d02-bcfa-c042a130b8d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<?xml version=\"1.0\"?>\r\n<return xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">\r\n\t<soid>3667</soid>\r\n\t<reasoncode>2</reasoncode>\r\n\t<sodetails>\r\n\t\t<sodetail>\r\n\t\t        <linenumber>1</linenumber>\r\n\t\t        <itemnumber>001P4766</itemnumber>\r\n\t\t         <mfgr>IBM</mfgr>\r\n\t\t         <quantity>1</quantity>\r\n\t\t         <returntype>1</returntype>\r\n\t\t</sodetail>\r\n\t\t<sodetail>\r\n\t\t     <linenumber>2</linenumber>\r\n\t\t     <itemnumber>001P4766</itemnumber>\r\n\t\t     <mfgr>IBM</mfgr>\r\n\t\t     <quantity>1</quantity>\r\n\t                     <returntype>1</returntype>\r\n\t\t</sodetail>\r\n\t</sodetails>\r\n</return>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/sos/return/json","urlObject":{"protocol":"https","path":["webapi.svc","sos","return","json"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"abe4de58-0b64-4d02-bcfa-c042a130b8d5"},{"name":"SO Return Insert (XML) [POST] - sos/return/json","id":"3aec04ba-a00b-43fd-b0a9-1fc2332949dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<?xml version=\"1.0\"?>\r\n<return xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">\r\n\t<soid>3667</soid>\r\n\t<reasoncode>2</reasoncode>\r\n\t<sodetails>\r\n\t\t<sodetail>\r\n\t\t        <linenumber>1</linenumber>\r\n\t\t        <itemnumber>001P4766</itemnumber>\r\n\t\t         <mfgr>IBM</mfgr>\r\n\t\t         <quantity>1</quantity>\r\n\t\t         <returntype>1</returntype>\r\n\t\t</sodetail>\r\n\t\t<sodetail>\r\n\t\t     <linenumber>2</linenumber>\r\n\t\t     <itemnumber>001P4766</itemnumber>\r\n\t\t     <mfgr>IBM</mfgr>\r\n\t\t     <quantity>1</quantity>\r\n\t                     <returntype>1</returntype>\r\n\t\t</sodetail>\r\n\t</sodetails>\r\n</return>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/sos/return/xml","urlObject":{"protocol":"https","path":["webapi.svc","sos","return","xml"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3aec04ba-a00b-43fd-b0a9-1fc2332949dd"},{"name":"Receive RMA (XML)","id":"c60f1989-1264-489a-86f4-329c69e29e7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Returns/Receive/XML","urlObject":{"protocol":"https","path":["webapi.svc","Returns","Receive","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c60f1989-1264-489a-86f4-329c69e29e7d"},{"name":"Receive RMA (JSON)","id":"c1d91e47-8aef-46c5-b154-1613a67a2ce8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Returns/Receive/JSON","urlObject":{"protocol":"https","path":["webapi.svc","Returns","Receive","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c1d91e47-8aef-46c5-b154-1613a67a2ce8"}],"id":"16c6e92c-de62-4574-abe9-212a60c7666f","description":"<p>This folder contains endpoints used to <strong>retrieve return transaction records</strong>. Return records track inventory items that have been returned by customers or sent back to vendors.</p>\n","_postman_id":"16c6e92c-de62-4574-abe9-212a60c7666f"},{"name":"Shipments","item":[{"name":"Get All Shipments","id":"d48fed7e-7666-4be6-884a-9b99717f4213","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Shipments/XML?Page=0&PageSize=0&SortBy=0","description":"<p>This request will gather information for all shipments.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Shipments","XML"],"host":["api","iqreseller","com"],"query":[{"key":"Page","value":"0"},{"key":"PageSize","value":"0"},{"key":"SortBy","value":"0"}],"variable":[]}},"response":[],"_postman_id":"d48fed7e-7666-4be6-884a-9b99717f4213"},{"name":"Get Shipments by SO","id":"51801fc4-d715-404e-90e0-512a8cab2b81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Shipments/JSON?soid=2806","description":"<p>This request will get the information for shipments for a sales order where the sales order number is input as a paramenter</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Shipments","JSON"],"host":["api","iqreseller","com"],"query":[{"key":"soid","value":"2806"}],"variable":[]}},"response":[],"_postman_id":"51801fc4-d715-404e-90e0-512a8cab2b81"},{"name":"Get Shipments By Client PO Number","id":"97af6baa-eeb7-45e7-86d1-930da0171249","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Shipments/JSON?ClientPONumber=30903640","description":"<p>This request gathers info with the client PO number as the paramter and returns information about all of the shipments associated with it.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Shipments","JSON"],"host":["api","iqreseller","com"],"query":[{"key":"ClientPONumber","value":"30903640"}],"variable":[]}},"response":[],"_postman_id":"97af6baa-eeb7-45e7-86d1-930da0171249"},{"name":"Get Shipments by Warehouse","id":"0702a06b-807e-42db-97a8-5928a7f1909b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Shipments/JSON?warehouse=MAIN","urlObject":{"protocol":"https","path":["webapi.svc","Shipments","JSON"],"host":["api","iqreseller","com"],"query":[{"key":"warehouse","value":"MAIN"}],"variable":[]}},"response":[],"_postman_id":"0702a06b-807e-42db-97a8-5928a7f1909b"},{"name":"Get Shipments by Date Range","id":"d7cad774-3cd9-4463-967f-a3105d906cad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"},{"key":"From","value":"3/1/2022","type":"text"},{"key":"To","value":"3/31/2022","type":"text"},{"key":"Page","value":"1","type":"text"},{"key":"PageSize","value":"10","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Shipments/XML","description":"<p>Required Fields:</p>\n<p>1. From (Eg: 6/21/2015)<br />2. To (Eg: 6/21/2015)<br />Page (Default Value is 1)<br />PageSize (Default Value is 10)</p>\n<p>Optional Fields:</p>\n<p>1. To. If ignored, it brings all shipments from “From” date to current date)<br />2. IgnorePackages. If this flag is true, it doesn’t bring packages info. Default is false<br />3. IgnoreItems. If this flag is true, it doesn’t bring items info. Default is false</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Shipments","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d7cad774-3cd9-4463-967f-a3105d906cad"},{"name":"Get Shipments by Provider","id":"d164407d-cab9-481e-a261-706d82ad29a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Shipments/Generic/XML","description":"<p>Required Field:</p>\n<p>Provider (i.e. Shipping carrier such as UPS, FEDEX, etc)</p>\n<p>Optional Fields</p>\n<p>IgnorePackages - If this flag is true, it doesn't bring items info. Default is false.</p>\n<p>Ignore Items - If this flag is true, it doesn't bring items info. Default is false</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Shipments","Generic","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d164407d-cab9-481e-a261-706d82ad29a1"},{"name":"Update Generic Shipments (XML)","id":"a23a8b13-a469-4ded-8c40-06d9912d40b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<shipments xmlns=\"http://schemas.datacontract.org/2004/07/IQWebAPI\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\">\r\n    <shipment>\r\n        <accountnumber/>\r\n        <cod>false</cod>\r\n        <codamount>0.0000</codamount>\r\n        <currencycode/>\r\n        <declaredamount>0.0000</declaredamount>\r\n        <deliverydate/>\r\n        <deliverystatus/>\r\n        <fromaddress>\r\n            <address1>18338 Minnetonka Blvd</address1>\r\n            <address2>SUITE B</address2>\r\n            <address3/>\r\n            <city>Wayzata</city>\r\n            <companyname>IQ Reseller LLC</companyname>\r\n            <contactname>ACCOUNTS PAYABLE</contactname>\r\n            <countrycode>US</countrycode>\r\n            <email/>\r\n            <fax>952-613-8956</fax>\r\n            <phone>952-782-1245</phone>\r\n            <postalcode>55391-3332</postalcode>\r\n            <state>MN</state>\r\n        </fromaddress>\r\n        <genericshipping>false</genericshipping>\r\n        <items>\r\n            <item>\r\n                <conditioncode>-</conditioncode>\r\n                <description>3.8TB 12GB SSD</description>\r\n                <inventoryid>2714910</inventoryid>\r\n                <itemid>62881</itemid>\r\n                <itemnumber>X357A-R6</itemnumber>\r\n                <line>2</line>\r\n                <location>LOCKER 8</location>\r\n                <mfgr>NETAPP</mfgr>\r\n                <receivestatus>Received</receivestatus>\r\n                <serialnumber>BAD97E0A0C0T0KE</serialnumber>\r\n                <shipstatus>Scheduled</shipstatus>\r\n                <sodetailid>8692013</sodetailid>\r\n                <status>Reserved</status>\r\n            </item>\r\n        </items>\r\n        <notificationemail/>\r\n        <packages i:nil=\"true\"/>\r\n        <released>false</released>\r\n        <residential>false</residential>\r\n        <return>false</return>\r\n        <returnshipmentid>0</returnshipmentid>\r\n        <scheduledshipdate>7/13/2022 12:00:00 AM</scheduledshipdate>\r\n        <servicetype>Overnight</servicetype>\r\n        <shipdate>1/1/1900 12:00:00 AM</shipdate>\r\n        <shipmentid>666</shipmentid>\r\n        <shippaymenttype>Sender</shippaymenttype>\r\n        <shipped>false</shipped>\r\n        <shippername>UPS CUSTOM</shippername>\r\n        <shippingcharges>2.0000</shippingcharges>\r\n        <shippingnotification>false</shippingnotification>\r\n        <shipstatus>Scheduled</shipstatus>\r\n        <soid>252789</soid>\r\n        <toaddress>\r\n            <address1>6133 Nicollet Ave</address1>\r\n            <address2>SUITE 23</address2>\r\n            <address3/>\r\n            <city>Minneapolis</city>\r\n            <companyname>Mauer Enterprises, Inc</companyname>\r\n            <contactname>ACCOUNTS PAYABLE</contactname>\r\n            <countrycode>US</countrycode>\r\n            <email/>\r\n            <fax>952-963-3579</fax>\r\n            <phone>952-951-6666</phone>\r\n            <postalcode>55419-6666</postalcode>\r\n            <state>MN</state>\r\n        </toaddress>\r\n    </shipment>\r\n</shipments>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc//Shipments/Generic/XML","urlObject":{"protocol":"https","path":["webapi.svc","","Shipments","Generic","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a23a8b13-a469-4ded-8c40-06d9912d40b1"},{"name":"Update Generic Shipments (JSON)","id":"2aa1bc2f-1ad8-419a-a197-2a15ce4b9aea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<shipments xmlns=\"http://schemas.datacontract.org/2004/07/IQWebAPI\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\">\r\n    <shipment>\r\n        <accountnumber/>\r\n        <cod>false</cod>\r\n        <codamount>0.0000</codamount>\r\n        <currencycode/>\r\n        <declaredamount>0.0000</declaredamount>\r\n        <deliverydate/>\r\n        <deliverystatus/>\r\n        <fromaddress>\r\n            <address1>18338 Minnetonka Blvd</address1>\r\n            <address2>SUITE B</address2>\r\n            <address3/>\r\n            <city>Wayzata</city>\r\n            <companyname>IQ Reseller LLC</companyname>\r\n            <contactname>ACCOUNTS PAYABLE</contactname>\r\n            <countrycode>US</countrycode>\r\n            <email/>\r\n            <fax>952-613-8956</fax>\r\n            <phone>952-782-1245</phone>\r\n            <postalcode>55391-3332</postalcode>\r\n            <state>MN</state>\r\n        </fromaddress>\r\n        <genericshipping>false</genericshipping>\r\n        <items>\r\n            <item>\r\n                <conditioncode>-</conditioncode>\r\n                <description>3.8TB 12GB SSD</description>\r\n                <inventoryid>2714910</inventoryid>\r\n                <itemid>62881</itemid>\r\n                <itemnumber>X357A-R6</itemnumber>\r\n                <line>2</line>\r\n                <location>LOCKER 8</location>\r\n                <mfgr>NETAPP</mfgr>\r\n                <receivestatus>Received</receivestatus>\r\n                <serialnumber>BAD97E0A0C0T0KE</serialnumber>\r\n                <shipstatus>Scheduled</shipstatus>\r\n                <sodetailid>8692013</sodetailid>\r\n                <status>Reserved</status>\r\n            </item>\r\n        </items>\r\n        <notificationemail/>\r\n        <packages i:nil=\"true\"/>\r\n        <released>false</released>\r\n        <residential>false</residential>\r\n        <return>false</return>\r\n        <returnshipmentid>0</returnshipmentid>\r\n        <scheduledshipdate>7/13/2022 12:00:00 AM</scheduledshipdate>\r\n        <servicetype>Overnight</servicetype>\r\n        <shipdate>1/1/1900 12:00:00 AM</shipdate>\r\n        <shipmentid>666</shipmentid>\r\n        <shippaymenttype>Sender</shippaymenttype>\r\n        <shipped>false</shipped>\r\n        <shippername>UPS CUSTOM</shippername>\r\n        <shippingcharges>2.0000</shippingcharges>\r\n        <shippingnotification>false</shippingnotification>\r\n        <shipstatus>Scheduled</shipstatus>\r\n        <soid>252789</soid>\r\n        <toaddress>\r\n            <address1>6133 Nicollet Ave</address1>\r\n            <address2>SUITE 23</address2>\r\n            <address3/>\r\n            <city>Minneapolis</city>\r\n            <companyname>Mauer Enterprises, Inc</companyname>\r\n            <contactname>ACCOUNTS PAYABLE</contactname>\r\n            <countrycode>US</countrycode>\r\n            <email/>\r\n            <fax>952-963-3579</fax>\r\n            <phone>952-951-6666</phone>\r\n            <postalcode>55419-6666</postalcode>\r\n            <state>MN</state>\r\n        </toaddress>\r\n    </shipment>\r\n</shipments>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/Shipments/Generic/JSON","urlObject":{"protocol":"https","path":["webapi.svc","Shipments","Generic","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2aa1bc2f-1ad8-419a-a197-2a15ce4b9aea"},{"name":"Update Delivery details for the shipments (JSON) [POST] - Shipments/Delivery/JSON","id":"f7e00e40-d508-4d05-994b-95970a5e8257","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<shipments xmlns=\"http://schemas.datacontract.org/2004/07/IQWebAPI\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\">\r\n    <shipment>\r\n        <accountnumber/>\r\n        <cod>false</cod>\r\n        <codamount>0.0000</codamount>\r\n        <currencycode/>\r\n        <declaredamount>0.0000</declaredamount>\r\n        <deliverydate/>\r\n        <deliverystatus/>\r\n        <fromaddress>\r\n            <address1>18338 Minnetonka Blvd</address1>\r\n            <address2>SUITE B</address2>\r\n            <address3/>\r\n            <city>Wayzata</city>\r\n            <companyname>IQ Reseller LLC</companyname>\r\n            <contactname>ACCOUNTS PAYABLE</contactname>\r\n            <countrycode>US</countrycode>\r\n            <email/>\r\n            <fax>952-613-8956</fax>\r\n            <phone>952-782-1245</phone>\r\n            <postalcode>55391-3332</postalcode>\r\n            <state>MN</state>\r\n        </fromaddress>\r\n        <genericshipping>false</genericshipping>\r\n        <items>\r\n            <item>\r\n                <conditioncode>-</conditioncode>\r\n                <description>3.8TB 12GB SSD</description>\r\n                <inventoryid>2714910</inventoryid>\r\n                <itemid>62881</itemid>\r\n                <itemnumber>X357A-R6</itemnumber>\r\n                <line>2</line>\r\n                <location>LOCKER 8</location>\r\n                <mfgr>NETAPP</mfgr>\r\n                <receivestatus>Received</receivestatus>\r\n                <serialnumber>BAD97E0A0C0T0KE</serialnumber>\r\n                <shipstatus>Scheduled</shipstatus>\r\n                <sodetailid>8692013</sodetailid>\r\n                <status>Reserved</status>\r\n            </item>\r\n        </items>\r\n        <notificationemail/>\r\n        <packages i:nil=\"true\"/>\r\n        <released>false</released>\r\n        <residential>false</residential>\r\n        <return>false</return>\r\n        <returnshipmentid>0</returnshipmentid>\r\n        <scheduledshipdate>7/13/2022 12:00:00 AM</scheduledshipdate>\r\n        <servicetype>Overnight</servicetype>\r\n        <shipdate>1/1/1900 12:00:00 AM</shipdate>\r\n        <shipmentid>666</shipmentid>\r\n        <shippaymenttype>Sender</shippaymenttype>\r\n        <shipped>false</shipped>\r\n        <shippername>UPS CUSTOM</shippername>\r\n        <shippingcharges>2.0000</shippingcharges>\r\n        <shippingnotification>false</shippingnotification>\r\n        <shipstatus>Scheduled</shipstatus>\r\n        <soid>252789</soid>\r\n        <toaddress>\r\n            <address1>6133 Nicollet Ave</address1>\r\n            <address2>SUITE 23</address2>\r\n            <address3/>\r\n            <city>Minneapolis</city>\r\n            <companyname>Mauer Enterprises, Inc</companyname>\r\n            <contactname>ACCOUNTS PAYABLE</contactname>\r\n            <countrycode>US</countrycode>\r\n            <email/>\r\n            <fax>952-963-3579</fax>\r\n            <phone>952-951-6666</phone>\r\n            <postalcode>55419-6666</postalcode>\r\n            <state>MN</state>\r\n        </toaddress>\r\n    </shipment>\r\n</shipments>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/Shipments/Delivery/JSON","urlObject":{"protocol":"https","path":["webapi.svc","Shipments","Delivery","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f7e00e40-d508-4d05-994b-95970a5e8257"},{"name":"Create Generic Shipments (JSON)","id":"9e5e60eb-1c88-4677-8c95-32a7678fc004","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<shipments xmlns=\"http://schemas.datacontract.org/2004/07/IQWebAPI\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\">\r\n    <shipment>\r\n        <accountnumber/>\r\n        <cod>false</cod>\r\n        <codamount>0.0000</codamount>\r\n        <currencycode/>\r\n        <declaredamount>0.0000</declaredamount>\r\n        <deliverydate/>\r\n        <deliverystatus/>\r\n        <fromaddress>\r\n            <address1>18338 Minnetonka Blvd</address1>\r\n            <address2>SUITE B</address2>\r\n            <address3/>\r\n            <city>Wayzata</city>\r\n            <companyname>IQ Reseller LLC</companyname>\r\n            <contactname>ACCOUNTS PAYABLE</contactname>\r\n            <countrycode>US</countrycode>\r\n            <email/>\r\n            <fax>952-613-8956</fax>\r\n            <phone>952-782-1245</phone>\r\n            <postalcode>55391-3332</postalcode>\r\n            <state>MN</state>\r\n        </fromaddress>\r\n        <genericshipping>false</genericshipping>\r\n        <items>\r\n            <item>\r\n                <conditioncode>-</conditioncode>\r\n                <description>3.8TB 12GB SSD</description>\r\n                <inventoryid>2714910</inventoryid>\r\n                <itemid>62881</itemid>\r\n                <itemnumber>X357A-R6</itemnumber>\r\n                <line>2</line>\r\n                <location>LOCKER 8</location>\r\n                <mfgr>NETAPP</mfgr>\r\n                <receivestatus>Received</receivestatus>\r\n                <serialnumber>BAD97E0A0C0T0KE</serialnumber>\r\n                <shipstatus>Scheduled</shipstatus>\r\n                <sodetailid>8692013</sodetailid>\r\n                <status>Reserved</status>\r\n            </item>\r\n        </items>\r\n        <notificationemail/>\r\n        <packages i:nil=\"true\"/>\r\n        <released>false</released>\r\n        <residential>false</residential>\r\n        <return>false</return>\r\n        <returnshipmentid>0</returnshipmentid>\r\n        <scheduledshipdate>7/13/2022 12:00:00 AM</scheduledshipdate>\r\n        <servicetype>Overnight</servicetype>\r\n        <shipdate>1/1/1900 12:00:00 AM</shipdate>\r\n        <shipmentid>666</shipmentid>\r\n        <shippaymenttype>Sender</shippaymenttype>\r\n        <shipped>false</shipped>\r\n        <shippername>UPS CUSTOM</shippername>\r\n        <shippingcharges>2.0000</shippingcharges>\r\n        <shippingnotification>false</shippingnotification>\r\n        <shipstatus>Scheduled</shipstatus>\r\n        <soid>252789</soid>\r\n        <toaddress>\r\n            <address1>6133 Nicollet Ave</address1>\r\n            <address2>SUITE 23</address2>\r\n            <address3/>\r\n            <city>Minneapolis</city>\r\n            <companyname>Mauer Enterprises, Inc</companyname>\r\n            <contactname>ACCOUNTS PAYABLE</contactname>\r\n            <countrycode>US</countrycode>\r\n            <email/>\r\n            <fax>952-963-3579</fax>\r\n            <phone>952-951-6666</phone>\r\n            <postalcode>55419-6666</postalcode>\r\n            <state>MN</state>\r\n        </toaddress>\r\n    </shipment>\r\n</shipments>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/Shipments/Generic/JSON?option=1","urlObject":{"protocol":"https","path":["webapi.svc","Shipments","Generic","JSON"],"host":["api","iqreseller","com"],"query":[{"key":"option","value":"1"}],"variable":[]}},"response":[],"_postman_id":"9e5e60eb-1c88-4677-8c95-32a7678fc004"}],"id":"16007126-3a48-4704-a694-be8dae35985e","description":"<p>This folder contains endpoints used to <strong>retrieve shipment records</strong>. Shipment records track the delivery of inventory items to customers and include shipment identifiers, dates, and associated order references.</p>\n","_postman_id":"16007126-3a48-4704-a694-be8dae35985e"},{"name":"Shipping Accounts","item":[{"name":"Get All Shipping Accounts (XML)","id":"01419588-bbd5-46ca-9152-39a55a1fa5fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/Ship/XML/GetShippingAccounts","urlObject":{"protocol":"https","path":["webapi.svc","Ship","XML","GetShippingAccounts"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"01419588-bbd5-46ca-9152-39a55a1fa5fe"},{"name":"Get All Shipping Accounts (JSON)","id":"4f8aada9-1ea8-4861-9716-b922b4eaabf8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/Ship/JSON/GetShippingAccounts","urlObject":{"protocol":"https","path":["webapi.svc","Ship","JSON","GetShippingAccounts"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"4f8aada9-1ea8-4861-9716-b922b4eaabf8"},{"name":"Get Shipping Accounts By CVCode (XML)","id":"a8b3a7cc-eac5-41d9-bdfb-88f532f8ba63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/Ship/XML/GetShippingAccountsByCVCode","urlObject":{"protocol":"https","path":["webapi.svc","Ship","XML","GetShippingAccountsByCVCode"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a8b3a7cc-eac5-41d9-bdfb-88f532f8ba63"},{"name":"Get Shipping Accounts By CVCode (JSON)","id":"dbea1fc2-f596-40c3-8e99-91fdee83785d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/Ship/JSON/GetShippingAccountsByCVCode","urlObject":{"protocol":"https","path":["webapi.svc","Ship","JSON","GetShippingAccountsByCVCode"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"dbea1fc2-f596-40c3-8e99-91fdee83785d"}],"id":"2a4e683c-e5aa-48e4-9c91-060cac86384c","_postman_id":"2a4e683c-e5aa-48e4-9c91-060cac86384c","description":""},{"name":"Sales Orders (SO)","item":[{"name":"Get SO by SOid (JSON)","id":"45e01b0d-600b-4319-9fe7-d1a605cf9b40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/SO/JSON/GetSOBySOId?id=2795","urlObject":{"protocol":"https","path":["webapi.svc","SO","JSON","GetSOBySOId"],"host":["api","iqreseller","com"],"query":[{"key":"id","value":"2795"}],"variable":[]}},"response":[],"_postman_id":"45e01b0d-600b-4319-9fe7-d1a605cf9b40"},{"name":"Get SO by SOid (XML)","id":"ae34f106-dd06-4a45-8894-d065808ebcce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/SO/XML/GetSOBySOId?id=2795","description":"<p>This request will retrieve the information for the sales order number that is supplied in the parameter list</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","SO","XML","GetSOBySOId"],"host":["api","iqreseller","com"],"query":[{"key":"id","value":"2795"}],"variable":[]}},"response":[],"_postman_id":"ae34f106-dd06-4a45-8894-d065808ebcce"},{"name":"Get SO by Item Number XML","id":"e010822a-721f-4663-9820-dc07f2a8de5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/SO/XML/GetSOByItemNumber?itemnumber=00FC436&mfgr=HP","urlObject":{"protocol":"https","path":["webapi.svc","SO","XML","GetSOByItemNumber"],"host":["api","iqreseller","com"],"query":[{"key":"itemnumber","value":"00FC436"},{"key":"mfgr","value":"HP"}],"variable":[]}},"response":[],"_postman_id":"e010822a-721f-4663-9820-dc07f2a8de5c"},{"name":"Get Sos List (JSON)","id":"b5c29b8a-95de-4ae6-b8bb-1aa1caf9848a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/SO/JSON/GetSOs","urlObject":{"protocol":"https","path":["webapi.svc","SO","JSON","GetSOs"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b5c29b8a-95de-4ae6-b8bb-1aa1caf9848a"},{"name":"Get SOs Count","id":"c1af116c-0b6a-4136-853b-eb699f6d6c41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/SO/GetSOsCount","urlObject":{"protocol":"https","path":["webapi.svc","SO","GetSOsCount"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c1af116c-0b6a-4136-853b-eb699f6d6c41"},{"name":"Get all SO's not invoiced","id":"7534889d-ca92-4133-846b-5a7123d50a30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/","description":"<p>This request gets all of the information for all of the sales orders that have not yet been invoiced. You can also use a parameter (SOID) if you need the information for a particular sales order.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc",""],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7534889d-ca92-4133-846b-5a7123d50a30"},{"name":"Get SO Commercial Invoice (XML)","id":"1982ac1a-282d-4cc9-bda6-7f05654824eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/Reports/SO/CommercialInvoice/XML","urlObject":{"protocol":"https","path":["webapi.svc","Reports","SO","CommercialInvoice","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"1982ac1a-282d-4cc9-bda6-7f05654824eb"},{"name":"Get SO Commercial Invoice (JSON)","id":"789b33ff-1f6b-4fe7-8fc2-ab1df601c085","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/Reports/SO/CommercialInvoice/JSON","urlObject":{"protocol":"https","path":["webapi.svc","Reports","SO","CommercialInvoice","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"789b33ff-1f6b-4fe7-8fc2-ab1df601c085"},{"name":"Get SO by SPid XML","id":"3ac8be28-24fd-4138-90e0-30bbc29ebca5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/SO/XML/GetSOBySPId?id=18","urlObject":{"protocol":"https","path":["webapi.svc","SO","XML","GetSOBySPId"],"host":["api","iqreseller","com"],"query":[{"key":"id","value":"18"}],"variable":[]}},"response":[],"_postman_id":"3ac8be28-24fd-4138-90e0-30bbc29ebca5"},{"name":"Get SO by SPid JSON","id":"00a5a222-d4cb-4d51-a2ac-1d0ec6593010","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/SO/JSON/GetSOBySPId?id=18","urlObject":{"protocol":"https","path":["webapi.svc","SO","JSON","GetSOBySPId"],"host":["api","iqreseller","com"],"query":[{"key":"id","value":"18"}],"variable":[]}},"response":[],"_postman_id":"00a5a222-d4cb-4d51-a2ac-1d0ec6593010"},{"name":"Get SOs List XML","id":"c81b0f7a-35c8-48a9-ad43-4800228efe8f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/SO/XML/GetSOs?Page=0&PageSize=0&SortBy=0","description":"<p>This request gets a listing of records from the st table.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","SO","XML","GetSOs"],"host":["api","iqreseller","com"],"query":[{"key":"Page","value":"0"},{"key":"PageSize","value":"0"},{"key":"SortBy","value":"0"}],"variable":[]}},"response":[],"_postman_id":"c81b0f7a-35c8-48a9-ad43-4800228efe8f"},{"name":"Get SOs (Revised Version) XML","id":"2a9b61ac-eab4-43c0-9ffd-97c00c606eed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/SOs/XML?status=open","urlObject":{"protocol":"https","path":["webapi.svc","SOs","XML"],"host":["api","iqreseller","com"],"query":[{"disabled":true,"key":"soid","value":null},{"disabled":true,"key":"cvcode","value":null},{"disabled":true,"key":"spid","value":null},{"disabled":true,"key":"itemnumber","value":null},{"disabled":true,"key":"mfgr","value":null},{"disabled":true,"key":"startdate","value":null},{"disabled":true,"key":"enddate","value":null},{"disabled":true,"key":"updatedstartdate","value":null},{"disabled":true,"key":"updatedenddate","value":null},{"key":"status","value":"open"},{"disabled":true,"key":"page","value":null},{"disabled":true,"key":"pageSize","value":null},{"disabled":true,"key":"skiplines","value":null}],"variable":[]}},"response":[],"_postman_id":"2a9b61ac-eab4-43c0-9ffd-97c00c606eed"},{"name":"Get SOs (Revised Version) JSON","id":"7bb64dc8-b7d7-48b1-8f19-364211da351a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/SOs/JSON","urlObject":{"protocol":"https","path":["webapi.svc","SOs","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7bb64dc8-b7d7-48b1-8f19-364211da351a"},{"name":"Get SO By ItemNumber (JSON)","id":"ad049aee-4a6e-4e12-b93b-fbd8621270b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/SO/JSON/GetSOByItemNumber","urlObject":{"protocol":"https","path":["webapi.svc","SO","JSON","GetSOByItemNumber"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ad049aee-4a6e-4e12-b93b-fbd8621270b8"},{"name":"Get SO UDFs (Default 5 and 30 new UDFs) (JSON)","id":"27f04c01-122b-40b6-b3c7-40b7426fcf4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/SO/UDFs/JSON","urlObject":{"protocol":"https","path":["webapi.svc","SO","UDFs","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"27f04c01-122b-40b6-b3c7-40b7426fcf4a"},{"name":"Get SO Commercial Invoice PDF","id":"3dd30104-cb21-44d0-8931-4a74c892c7c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","description":"<p>Session Token</p>\n","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Reports/SO/CommercialInvoice/XML?SOID=2840&GroupBy=0&CountryofOrigin=United States&ShipperCVCode=IQReseller&ShipperContactOption=0&ConsigneeCVCode=EBAY&ConsigneeContactOption=0&ImporterCVCode=APEX&ImporterContactOption=0","urlObject":{"protocol":"https","path":["webapi.svc","Reports","SO","CommercialInvoice","XML"],"host":["api","iqreseller","com"],"query":[{"description":{"content":"<p>It is a mandatory parameter.  It takes IQR sale order id.</p>\n","type":"text/plain"},"key":"SOID","value":"2840"},{"description":{"content":"<p>This is an optional parameter used to group SO line items.\n0:  No grouping (default)\n1: Group by Itemnumber</p>\n","type":"text/plain"},"key":"GroupBy","value":"0"},{"description":{"content":"<p>The given country name will be filled on all SO line items’ countryoforgin field.  If omitted, it uses inventory’s country of origin when SO line-item status is reserved/invoiced, otherwise empty.\nNote: Country code cannot be used.</p>\n","type":"text/plain"},"key":"CountryofOrigin","value":"United States"},{"description":{"content":"<p>CVCode to fetch shipper address information.  This parameter must be used in conjunction with ShipperContact Option</p>\n","type":"text/plain"},"key":"ShipperCVCode","value":"IQReseller"},{"description":{"content":"<p> Must be one of the following values. This parameter must be used in conjunction with ShipperCVCode, if omitted, it uses the default value.\n0: ismaincontact (default)\n1: ismainshipto\n2: ismainremitto\n3: isbillto</p>\n","type":"text/plain"},"key":"ShipperContactOption","value":"0"},{"description":{"content":"<p>CVCode to fetch consignee information.  This parameter must be used in conjunction with the ConsigneeContactOption</p>\n","type":"text/plain"},"key":"ConsigneeCVCode","value":"EBAY"},{"description":{"content":"<p>Must be one of the following values. This parameter must be used in conjunction with ConsigneeCVCode, if omitted, it uses the default value.\n0: ismaincontact (default)\n1: ismainshipto\n2: ismainremitto\n3: isbillto</p>\n","type":"text/plain"},"key":"ConsigneeContactOption","value":"0"},{"description":{"content":"<p>CVCode to fetch importer address information. This parameter must be used in conjunction with ImporterContactOption</p>\n","type":"text/plain"},"key":"ImporterCVCode","value":"APEX"},{"description":{"content":"<p>Must be one of the following values. This parameter must be used in conjunction with ImporterCVCode, if omitted, it uses the default value.\n0: ismaincontact (default)\n1: ismainshipto\n2: ismainremitto\n3: isbillto</p>\n","type":"text/plain"},"key":"ImporterContactOption","value":"0"}],"variable":[]}},"response":[],"_postman_id":"3dd30104-cb21-44d0-8931-4a74c892c7c8"},{"name":"Change SO warehouse (XML)","id":"e03d9be8-3a75-49a5-bee6-2263fff3660d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<request>\r\n    <SOs>\r\n        <SO>\r\n            <stid>2806</stid>\r\n            <warehouse>MAIN</warehouse>\r\n        </SO>\r\n    </SOs>\r\n</request>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/SO/ChangeWarehouses/XML","urlObject":{"protocol":"https","path":["webapi.svc","SO","ChangeWarehouses","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e03d9be8-3a75-49a5-bee6-2263fff3660d"},{"name":"Change SO warehouse (JSON)","id":"b81726e7-e83e-47f9-a222-4da976639915","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<request>\r\n    <SOs>\r\n        <SO>\r\n            <stid>2806</stid>\r\n            <warehouse>MAIN</warehouse>\r\n        </SO>\r\n    </SOs>\r\n</request>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/SO/ChangeWarehouses/JSON","urlObject":{"protocol":"https","path":["webapi.svc","SO","ChangeWarehouses","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b81726e7-e83e-47f9-a222-4da976639915"},{"name":"Insert SO (JSON)","id":"d8fc76af-0d9c-4aab-a3f0-8c5a68c99709","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"clientid\": \"PARTSEARCH\",\r\n    \"clientponumber\": \"30905609                                          \",\r\n    \"commentstocustomer\": \"Vendor Order Details: - \",\r\n    \"locatedatcontactid\": \"0\",\r\n    \"currency\": \"USD\",\r\n    \"condition\": \"REF       \",\r\n    \"description\": \"Vendor Order No.:- 9428549\",\r\n    \"rep\": \"\",\r\n    \"internalcomment\": \"\",\r\n    \"addresses\": {\r\n        \"contact\": {\r\n            \"cvcode\": \"PARTSEARCH\",\r\n            \"companyname\": \"BRUCE FREEMAN                 \",\r\n            \"country\": \"United States\",\r\n            \"address1\": \"2501 N Blackwelder Ave        \",\r\n            \"address2\": \"                              \",\r\n            \"state\": \"OK\",\r\n            \"city\": \"Oklahoma City       \",\r\n            \"postalcode\": \"73106\",\r\n            \"email\": \"\",\r\n            \"contact\": \"BRUCE FREEMAN                 \",\r\n            \"phone1\": \"0000000000\"\r\n        },\r\n        \"shipfrom\": {\r\n            \"cvcode\": \"PARTPOINT\",\r\n            \"companyname\": \"Partpoint Inc\",\r\n            \"country\": \"United States\",\r\n            \"address1\": \"3250 QUENTIN STREET\",\r\n            \"address2\": \"SUITE 126\",\r\n            \"city\": \"AURORA\",\r\n            \"state\": \"CO\",\r\n            \"postalcode\": \"80011\",\r\n            \"contact\": \"Jim Polito\",\r\n            \"phone1\": \"0000000000\"\r\n        },\r\n        \"shipto\": {\r\n            \"cvcode\": \"PARTSEARCH\",\r\n            \"companyname\": \"BRUCE FREEMAN                 \",\r\n            \"country\": \"United States\",\r\n            \"address1\": \"2501 N Blackwelder Ave        \",\r\n            \"address2\": \"                              \",\r\n            \"city\": \"Oklahoma City       \",\r\n            \"state\": \"OK\",\r\n            \"postalcode\": \"73106\",\r\n            \"contact\": \"BRUCE FREEMAN                 \",\r\n            \"phone1\": \"0000000000\"\r\n        }\r\n    },\r\n    \"sodetails\": [\r\n        {\r\n            \"itemnumber\": \"0005962R\",\r\n            \"quantity\": \"1\",\r\n            \"unitprice\": \"28\",\r\n            \"mfgr\": \"HP      \",\r\n            \"location\": \"\"\r\n        },\r\n        {\r\n            \"itemnumber\": \"0005962R                         \",\r\n            \"quantity\": \"1\",\r\n            \"unitprice\": \"8.34\",\r\n            \"mfgr\": \"HP      \",\r\n            \"location\": \"\"\r\n        }\r\n    ]\r\n}"},"url":"https://api.iqreseller.com/webapi.svc/SO/JSON/InsertSOByJSON","description":"<p>This request is an example of creating a new SO with a JSON object.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","SO","JSON","InsertSOByJSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d8fc76af-0d9c-4aab-a3f0-8c5a68c99709"},{"name":"Insert SO  - Revised","id":"e4618f11-a139-44f3-8ead-808bff5c1f2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"clientid\": \"BAILEY\",\r\n\t\"clientponumber\": \"13124215\",\r\n\t\"rep\": \"BB\",\r\n\t\"contract\": \"false\",\r\n\t\"declaredvalue\": \"0\",\r\n\t\"downpayment\": \"0\",\r\n\t\"firsttransaction\": \"false\",\r\n\t\"foreignamount\": \"0\",\r\n\t\"freight\": \"0\",\r\n\t\"installcharge\": \"0\",\r\n\t\"latecharge\": \"0\",\r\n\t\"misccharge\": \"0\",\r\n\t\"newequipment\": \"false\",\r\n\t\"wearrangetransportation\": \"false\",\r\n\t\"wepayinstallation\": \"false\",\r\n\t\"wepaytransportation\": \"false\",\r\n\t\"invoicedistributionid\": \"0\",\r\n\t\"addresses\": {\r\n\t\t\"contact\": {\r\n\t\t\t\"cvcode\": \"TAXME\",\r\n\t\t\t\"companyname\": \"IQ reseller\",\r\n\t\t\t\"country\": \"united states\",\r\n\t\t\t\"address1\": \"Contact Address\",\r\n\t\t\t\"state\": \"MN\",\r\n\t\t\t\"city\": \"Minneapolis\",\r\n\t\t\t\"postalcode\": 55417,\r\n\t\t\t\"email\": \"mani@iqreseller.com\",\r\n\t\t\t\"contact\": \"Manivannan Ayyadurai\"\r\n\t\t},\r\n\t\t\"shipfrom\": {\r\n\t\t\t\"cvcode\": \"IQRESELLER\",\r\n\t\t\t\"companyname\": \"VSS\",\r\n\t\t\t\"country\": \"united states\",\r\n\t\t\t\"address1\": \"ShipFrom Address\"\r\n\t\t},\r\n\t\t\"shipto\": {\r\n\t\t\t\"cvcode\": \"BAILEY\",\r\n\t\t\t\"companyname\": \"TEST COMPANY\",\r\n\t\t\t\"country\": \"united states\",\r\n\t\t\t\"address1\": \"25206, 7780 McCallum Blvd.\",\r\n\t\t\t\"address2\": \"Dallas\",\r\n\t\t\t\"state\": \"TX\"\r\n\t\t},\r\n\t\t\"sodetails\": [{\r\n\t\t\t\t\"itemnumber\": \"005-048-811\",\r\n\t\t\t\t\"mfgr\": \"EMC\",\r\n\t\t\t\t\"estunitcost\": \"0\",\r\n\t\t\t\t\"donotprintline\": \"false\",\r\n\t\t\t\t\"quantity\": \"1\",\r\n\t\t\t\t\"unitprice\": \"10\",\r\n\t\t\t\t\"tax\": {\r\n\t\t\t\t\t\"istaxable\": \"true\",\r\n\t\t\t\t\t\"taxauthoritytaxable\": \"false\"\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"itemnumber\": \"5C10N71331\",\r\n\t\t\t\t\"mfgr\": \"LENOVO\",\r\n\t\t\t\t\"unitprice\": \"12.5\",\r\n\t\t\t\t\"quantity\": \"1\",\r\n\t\t\t\t\"soid\": \"2\",\r\n\t\t\t\t\"estunitcost\": \"0\",\r\n\t\t\t\t\"listprice\": \"5.5\",\r\n\t\t\t\t\"tax\": {\r\n\t\t\t\t\t\"istaxable\": \"false\",\r\n\t\t\t\t\t\"taxauthoritytaxable\": \"false\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t]\r\n\t}\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/SOs/JSON","description":"<p>This is the latest revision</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","SOs","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e4618f11-a139-44f3-8ead-808bff5c1f2f"},{"name":"SO Invoice","id":"eebae515-d84a-4d54-923e-8ac2a5c59853","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/SO/Invoice?soid=2806","urlObject":{"protocol":"https","path":["webapi.svc","SO","Invoice"],"host":["api","iqreseller","com"],"query":[{"key":"soid","value":"2806"}],"variable":[]}},"response":[],"_postman_id":"eebae515-d84a-4d54-923e-8ac2a5c59853"},{"name":"SO Reserve with InventoryID","id":"3ea5bed4-0178-48e4-af6a-89c24160d9f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/xml","type":"text"},{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<request>\n    <option>1</option>\n    <allowsubstitutes></allowsubstitutes>\n    <sos>\n        <so>\n            <soid>1813</soid>\n            <sodetail>\n                <soline>1</soline>\n                <inventoryids>\n                    <inventoryid>140551</inventoryid>\n                </inventoryids>\n            </sodetail>\n        </so>\n    </sos>\n</request>"},"url":"https://api.iqreseller.com/webapi.svc/SO/Reserve/XML","urlObject":{"protocol":"https","path":["webapi.svc","SO","Reserve","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3ea5bed4-0178-48e4-af6a-89c24160d9f3"},{"name":"SO Reserve with InventoryID JSON","id":"2415b8c0-9e36-4cef-b186-a2cebc993356","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/xml","type":"text"},{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"request\": {\n    \"option\": \"1\",\n    \"allowsubstitutes\": \"0\",\n    \"sos\": {\n      \"so\": {\n        \"soid\": \"1813\",\n        \"sodetail\": {\n          \"soline\": \"1\",\n          \"inventoryids\": {\n            \"inventoryid\": \"140551\"\n          }\n        }\n      }\n    }\n  }\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/SO/Reserve/JSON","urlObject":{"protocol":"https","path":["webapi.svc","SO","Reserve","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2415b8c0-9e36-4cef-b186-a2cebc993356"},{"name":"Insert SO (XML)","id":"55e2e17e-ca8c-434f-89b6-03409fa9fe1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/xml","type":"text"},{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<SOs>\n    <SO>\n        <SODetails>\n            <SODetail>\n                <condition>NEW</condition>\n                <contractcomment/>\n                <description>4.3GB IDE 3.5\" HDD</description>\n                <estforeignunitcost>100.0000</estforeignunitcost>\n                <estunitcost>100.0000</estunitcost>\n                <extendeddescription></extendeddescription>\n                <foreignlistprice>0</foreignlistprice>\n                <foreignunitprice>0.0000</foreignunitprice>\n                <hasstatetax>True</hasstatetax>\n                <internalcomment/>\n                <item>0005962R</item>\n                <line>1</line>\n                <listprice>0</listprice>\n                <location></location>\n                <mfgr>HP</mfgr>\n                <qty>10</qty>\n                <recadded>Dec 10, 2019</recadded>\n                <reference></reference>\n                <scheduledshipdate/>\n                <so>1</so>\n                <sodetailid>2</sodetailid>\n                <status>Open</status>\n                <tax1cat></tax1cat>\n                <tax1pct>0.000000</tax1pct>\n                <tax2cat></tax2cat>\n                <tax2pct>0.000000</tax2pct>\n                <tax3cat></tax3cat>\n                <tax3pct>0.000000</tax3pct>\n                <tax4cat></tax4cat>\n                <tax4pct>0.000000</tax4pct>\n                <taxable>false</taxable>\n                <taxauthtaxable>false</taxauthtaxable>\n                <unitprice>27.7869</unitprice>\n                <warehouse></warehouse>\n            </SODetail>\n            <SODetail>\n                <condition>NEW</condition>\n                <contractcomment/>\n                <description>5-Port Ethernet hub</description>\n                <estforeignunitcost>100.0000</estforeignunitcost>\n                <estunitcost>199.0000</estunitcost>\n                <extendeddescription></extendeddescription>\n                <foreignlistprice>0</foreignlistprice>\n                <foreignunitprice>0.0000</foreignunitprice>\n                <hasstatetax>True</hasstatetax>\n                <internalcomment/>\n                <item>GS105 v4</item>\n                <line>2</line>\n                <listprice>0</listprice>\n                <location></location>\n                <mfgr>NETGEAR</mfgr>\n                <qty>1</qty>\n                <recadded>DEC 10, 2019</recadded>\n                <reference>TEST</reference>\n                <so>1</so>\n                <sodetailid>2</sodetailid>\n                <status>Open</status>\n                <tax1cat></tax1cat>\n                <tax1pct>0.000000</tax1pct>\n                <tax2cat></tax2cat>\n                <tax2pct>0.000000</tax2pct>\n                <tax3cat></tax3cat>\n                <tax3pct>0.000000</tax3pct>\n                <tax4cat></tax4cat>\n                <tax4pct>0.000000</tax4pct>\n                <taxable>false</taxable>\n                <taxauthtaxable>false</taxauthtaxable>\n                <unitprice>459.67</unitprice>\n                <warehouse></warehouse>\n            </SODetail>\n        </SODetails>\n        <basecurrency>false</basecurrency>\n        <billtofax></billtofax>\n        <billtoname></billtoname>\n        <billtophone></billtophone>\n        <clientid>AMAZON</clientid>\n        <clientponumber>skippy1</clientponumber>\n        <commentstocustomer/>\n        <condition></condition>\n        <contactemail/>\n        <contactfax></contactfax>\n        <contactname></contactname>\n        <contactphone></contactphone>\n        <contract>false</contract>\n        <currency></currency>\n        <declaredvalue>0.0000</declaredvalue>\n        <deliverydate/>\n        <depriciation>0.0000</depriciation>\n        <description></description>\n        <downpayment>0.0000</downpayment>\n        <duedate/>\n        <foreignamount></foreignamount>\n        <foreignfreight>0</foreignfreight>\n        <foreigninstallcharge>0</foreigninstallcharge>\n        <foreignmisccharge>0</foreignmisccharge>\n        <foreignstatetax>0.0000</foreignstatetax>\n        <foreigntax1>0.0000</foreigntax1>\n        <foreigntax2>0.0000</foreigntax2>\n        <foreigntax3>0.0000</foreigntax3>\n        <foreigntax4>0.0000</foreigntax4>\n        <freightistaxable>false</freightistaxable>\n        <freighttaxpct>0.0000</freighttaxpct>\n        <freightused>false</freightused>\n        <installation>0</installation>\n        <installationistaxable>false</installationistaxable>\n        <installchargetaxrate>0.00000</installchargetaxrate>\n        <installchargeused>false</installchargeused>\n        <internalcomment>First sale for 2020</internalcomment>\n        <lastupdated></lastupdated>\n        <lastupdatedby>SR</lastupdatedby>\n        <lastupdatestamount>0.0000</lastupdatestamount>\n        <latecharge>0.0000</latecharge>\n        <locatedatcontactid>1</locatedatcontactid>\n        <locatedatemail/>\n        <locatedatfax></locatedatfax>\n        <locatedatname></locatedatname>\n        <locatedatphone></locatedatphone>\n        <misccharge>0</misccharge>\n        <miscchargesaretaxable>false</miscchargesaretaxable>\n        <miscchargetaxpct>0.0000</miscchargetaxpct>\n        <miscchargeused>false</miscchargeused>\n        <rate>1.000000</rate>\n        <rep>CB</rep>\n        <saledate>DEC 10, 2019</saledate>\n        <shipstatus></shipstatus>\n        <shiptocontactid>4</shiptocontactid>\n        <shiptoemail/>\n        <shiptofax></shiptofax>\n        <shiptoname></shiptoname>\n        <shiptophone></shiptophone>\n        <so>1</so>\n        <statetax>0.0000</statetax>\n        <statetaxpct>0.000000</statetaxpct>\n        <status>Open</status>\n        <tax1>0.0000</tax1>\n        <tax1auth></tax1auth>\n        <tax1authid>0</tax1authid>\n        <tax2>0.0000</tax2>\n        <tax2auth></tax2auth>\n        <tax2authid>0</tax2authid>\n        <tax3>0.0000</tax3>\n        <tax3auth></tax3auth>\n        <tax3authid>0</tax3authid>\n        <tax4>0.0000</tax4>\n        <tax4auth></tax4auth>\n        <tax4authid>0</tax4authid>\n        <taxable>false</taxable>\n        <taxablesales>0.0000</taxablesales>\n        <taxstate></taxstate>\n        <terms>CREDIT CARD</terms>\n        <total></total>\n        <userdefined1>Cliff Mauer</userdefined1>\n        <userdefined2>Minneapolis</userdefined2>\n        <userdefined3>North</userdefined3>\n        <userdefined4>South</userdefined4>\n        <userdefined5>West</userdefined5>\n    </SO>\n</SOs>"},"url":"https://api.iqreseller.com/webapi.svc/SO/XML/InsertSOByXML","description":"<p>This request will create a sales order</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","SO","XML","InsertSOByXML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"55e2e17e-ca8c-434f-89b6-03409fa9fe1e"},{"name":"Insert SO - Revised.  This will return the status and the inserted SO Id value (XML)","id":"59e83e0f-9f76-4ce8-8932-ef713acfde4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/SO/Insert/XML","urlObject":{"protocol":"https","path":["webapi.svc","SO","Insert","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"59e83e0f-9f76-4ce8-8932-ef713acfde4a"},{"name":"Insert SO - Revised.  This will return the status and the inserted SO Id value (JSON)","id":"f19145c6-eae0-4521-a91b-947002d5900b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/SO/Insert/JSON","urlObject":{"protocol":"https","path":["webapi.svc","SO","Insert","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f19145c6-eae0-4521-a91b-947002d5900b"},{"name":"Update SO UDFs (Revised) (JSON)","id":"512b565b-6f54-413a-98e6-baba33ff54b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/SO/UDFs/JSON","urlObject":{"protocol":"https","path":["webapi.svc","SO","UDFs","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"512b565b-6f54-413a-98e6-baba33ff54b6"},{"name":"Update SO UDFs (XML)","id":"a5b9190e-357c-4119-8bed-b9c369626045","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<sos>\r\n    <so>\r\n        <soid>1813</soid>\r\n        <userdefined1>TEST1</userdefined1>\r\n        <userdefined2>TEST2</userdefined2>\r\n        <userdefined3>TEST3</userdefined3>\r\n        <userdefined4>TEST4</userdefined4>\r\n        <userdefined5>TEST5</userdefined5>\r\n        <lastupdatedby>WEB</lastupdatedby>\r\n    </so>\r\n</sos>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/SO/UDFS/XML","urlObject":{"protocol":"https","path":["webapi.svc","SO","UDFS","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a5b9190e-357c-4119-8bed-b9c369626045"},{"name":"Update SO UDFs (JSON)","id":"f66e1e03-23ed-4abe-b5de-fee74cf42edb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<sos>\r\n    <so>\r\n        <soid>1813</soid>\r\n        <userdefined1>TEST1</userdefined1>\r\n        <userdefined2>TEST2</userdefined2>\r\n        <userdefined3>TEST3</userdefined3>\r\n        <userdefined4>TEST4</userdefined4>\r\n        <userdefined5>TEST5</userdefined5>\r\n        <lastupdatedby>WEB</lastupdatedby>\r\n    </so>\r\n</sos>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/SO/UDFs/JSON","urlObject":{"protocol":"https","path":["webapi.svc","SO","UDFs","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f66e1e03-23ed-4abe-b5de-fee74cf42edb"}],"id":"41159889-e3fd-4194-b326-2d780701c05a","description":"<p>This folder contains endpoints used to <strong>retrieve and manage sales order records</strong>. Sales orders represent transactions where inventory is sold to customers. These APIs allow users to query sales order information including order headers, statuses, and associated metadata.</p>\n","_postman_id":"41159889-e3fd-4194-b326-2d780701c05a"},{"name":"Sales Order Details","item":[{"name":"Get SO Detail by Id (XML)","id":"1860f1d6-84ad-4f0f-8c17-2b695399d717","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/SODetail/XML/GetSODetailById","urlObject":{"protocol":"https","path":["webapi.svc","SODetail","XML","GetSODetailById"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"1860f1d6-84ad-4f0f-8c17-2b695399d717"},{"name":"Get SO Detail By Id (JSON)","id":"efbdc2ae-864d-4b00-ab7e-daa1d548d24d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/SODetail/JSON/GetSODetailById","urlObject":{"protocol":"https","path":["webapi.svc","SODetail","JSON","GetSODetailById"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"efbdc2ae-864d-4b00-ab7e-daa1d548d24d"},{"name":"Get SO Details (XML)","id":"0b31fd41-02e4-42b9-93b1-50df39fcc16d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/SODetail/XML/GetSODetails?Page=0&PageSize=0&SortBy=0","description":"<p>This requests will get information about all of the sales order details from the stdetail table.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","SODetail","XML","GetSODetails"],"host":["api","iqreseller","com"],"query":[{"key":"Page","value":"0"},{"key":"PageSize","value":"0"},{"key":"SortBy","value":"0"}],"variable":[]}},"response":[],"_postman_id":"0b31fd41-02e4-42b9-93b1-50df39fcc16d"},{"name":"Get SO Details (JSON)","id":"71e80e89-8573-4fc3-bbe0-dd314e7d9973","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/SODetail/JSON/GetSODetails","description":"<p>This requests will get information about all of the sales order details from the stdetail table.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","SODetail","JSON","GetSODetails"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"71e80e89-8573-4fc3-bbe0-dd314e7d9973"},{"name":"Get SO Details by STid (XML)","id":"56c71135-9004-41de-a1a8-07de0aa56c51","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/SODetail/XML/GetSODetailsBySOId","urlObject":{"protocol":"https","path":["webapi.svc","SODetail","XML","GetSODetailsBySOId"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"56c71135-9004-41de-a1a8-07de0aa56c51"},{"name":"Get SO Details By STId (JSON)","id":"6de4d7a8-7db1-4fb6-ad35-1f90de8bf83d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/SODetail/JSON/GetSODetailsBySOId","urlObject":{"protocol":"https","path":["webapi.svc","SODetail","JSON","GetSODetailsBySOId"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6de4d7a8-7db1-4fb6-ad35-1f90de8bf83d"},{"name":"Get SO Details by ItemId (XML)","id":"98130f1c-e7bd-4a7f-b2c8-c85c650f1a1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/SODetail/XML/GetSODetailsByItemId","urlObject":{"protocol":"https","path":["webapi.svc","SODetail","XML","GetSODetailsByItemId"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"98130f1c-e7bd-4a7f-b2c8-c85c650f1a1f"},{"name":"Get SO Details By ItemId (JSON)","id":"993c0477-58dd-47e8-9972-2c62935faab9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/SODetail/JSON/GetSODetailsByItemId","urlObject":{"protocol":"https","path":["webapi.svc","SODetail","JSON","GetSODetailsByItemId"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"993c0477-58dd-47e8-9972-2c62935faab9"},{"name":"Get SO Details by Status (XML)","id":"a4eaed42-6698-4cca-9fb2-791e728e07ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/SODetail/XML/GetSODetailsByStatus","urlObject":{"protocol":"https","path":["webapi.svc","SODetail","XML","GetSODetailsByStatus"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a4eaed42-6698-4cca-9fb2-791e728e07ef"},{"name":"Get SO Details By Status (JSON)","id":"7fda3621-2a82-4fd5-b15a-9b40707e34e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/SODetail/JSON/GetSODetailsByStatus","urlObject":{"protocol":"https","path":["webapi.svc","SODetail","JSON","GetSODetailsByStatus"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7fda3621-2a82-4fd5-b15a-9b40707e34e8"},{"name":"Get SO Details count","id":"b547cafe-0fc1-4925-9183-20285d58dd10","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/SODetail/GetSODetailsCount","description":"<p>Gets the count of the rows that are in the stdetail table.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","SODetail","GetSODetailsCount"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b547cafe-0fc1-4925-9183-20285d58dd10"},{"name":"Get Reserved SO Details","id":"c5925944-1cbf-428f-8e93-d545064686de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/MAPP/SO/Details/Reserved/XML?SOId=0","description":"<p>This request gets a listing of the \"Reserved\" line items for the sales order that is specified in the parameters (SOId).</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","MAPP","SO","Details","Reserved","XML"],"host":["api","iqreseller","com"],"query":[{"description":{"content":"<p>The sales order number</p>\n","type":"text/plain"},"key":"SOId","value":"0"}],"variable":[]}},"response":[],"_postman_id":"c5925944-1cbf-428f-8e93-d545064686de"}],"id":"9f546bfc-7d7c-403a-8245-fb9d484fcb38","description":"<p>This folder contains endpoints used to <strong>retrieve line-item information for sales orders</strong>. These APIs provide detailed information about the individual products included in a sales order, including quantities, pricing, serial numbers, and item identifiers.</p>\n","_postman_id":"9f546bfc-7d7c-403a-8245-fb9d484fcb38"},{"name":"Sales Proposals (SP)","item":[{"name":"Get Sales Proposals (XML)","id":"e0495d73-e653-475d-b28a-90924f5976cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/SPs/XML","urlObject":{"protocol":"https","path":["webapi.svc","SPs","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e0495d73-e653-475d-b28a-90924f5976cd"},{"name":"Get Sales Proposals (JSON)","id":"a97a1103-90f2-4845-b145-0a498e8a0bad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/SPs/JSON","urlObject":{"protocol":"https","path":["webapi.svc","SPs","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a97a1103-90f2-4845-b145-0a498e8a0bad"},{"name":"Update Sales Proposal XML","id":"07629a3c-bdeb-4fb0-ad2d-e297b05d2528","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<sp>\r\n    <conditioncode>NEW</conditioncode>\r\n    <commentstocustomer>Contract Comments Testing</commentstocustomer>\r\n    <date>2025-06-13</date>\r\n    <promisedate>NULL</promisedate>\r\n    <daysvalid>10</daysvalid>\r\n    <description>Description Testing</description>\r\n    <freight>15.0</freight>\r\n    <installcharge>110.0</installcharge>\r\n    <internalcomments>Testing internalcomments</internalcomments>\r\n    <misccharge>115.0</misccharge>\r\n    <clientponumber>po123</clientponumber>\r\n    <probabilityfactor>50.0</probabilityfactor>\r\n    <rep>SR</rep>\r\n    <spid>1071</spid>\r\n    <terms></terms>\r\n    <hidelineitempricing>true</hidelineitempricing>\r\n    <userdefined1>PRINTER</userdefined1>\r\n    <userdefined2>B</userdefined2>\r\n    <userdefined3>UDF3</userdefined3>\r\n    <userdefined4>UDF4</userdefined4>\r\n    <userdefined5>UDF5</userdefined5>\r\n    <companymask></companymask>\r\n    <spdetails>\r\n        <spdetail>\r\n            <itemnumber>001P4712</itemnumber>\r\n            <mfgr>IBM</mfgr>\r\n            <ConditionCode>NEW</ConditionCode>\r\n            <commentstocustomer></commentstocustomer>\r\n            <description>Testing</description>\r\n            <estimatedunitcost>0</estimatedunitcost>\r\n            <internalcomments></internalcomments>\r\n            <location>CHE</location>\r\n            <qty>2</qty>\r\n            <extendeddescription></extendeddescription>\r\n            <unitprice>50</unitprice>\r\n            <warehouse></warehouse>\r\n            <listprice>0</listprice>\r\n            <salesdistribution>MATI</salesdistribution>\r\n            <tax>\r\n                <istaxable>true</istaxable>\r\n                <tax1cat>ALL</tax1cat>\r\n                <tax2cat></tax2cat>\r\n                <tax3cat>ALL2</tax3cat>\r\n                <tax4cat>ALL3</tax4cat>\r\n                <tax5cat>ALL</tax5cat>\r\n                <tax6cat>ALL1</tax6cat>\r\n                <taxauthoritytaxable>false</taxauthoritytaxable>\r\n            </tax>\r\n        </spdetail>\r\n        <spdetail>\r\n            <itemnumber>001P4712</itemnumber>\r\n            <mfgr>IBM</mfgr>\r\n            <ConditionCode>NEW</ConditionCode>\r\n            <commentstocustomer></commentstocustomer>\r\n            <description>Testing</description>\r\n            <estimatedunitcost>0</estimatedunitcost>\r\n            <internalcomments></internalcomments>\r\n            <location>CHE</location>\r\n            <qty>2</qty>            \r\n            <extendeddescription></extendeddescription>\r\n            <unitprice>50</unitprice>\r\n            <warehouse></warehouse>\r\n            <listprice>0</listprice>\r\n            <salesdistribution></salesdistribution>\r\n            <tax>\r\n                <istaxable>true</istaxable>\r\n                <tax1cat>ALL</tax1cat>\r\n                <tax2cat>ALL1</tax2cat>\r\n                <tax3cat>ALL2</tax3cat>\r\n                <tax4cat>ALL3</tax4cat>\r\n                <tax5cat>ALL</tax5cat>\r\n                <tax6cat>ALL</tax6cat>\r\n                <taxauthoritytaxable>true</taxauthoritytaxable>\r\n            </tax>\r\n        </spdetail>\r\n    </spdetails>\r\n</sp>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/SP/XML","urlObject":{"protocol":"https","path":["webapi.svc","SP","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"07629a3c-bdeb-4fb0-ad2d-e297b05d2528"},{"name":"Update Sales Proposal JSON","id":"fa07e7dc-42ff-4ba3-b5c1-8ce5f9674f4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"conditioncode\": \"NEW\",\r\n    \"commentstocustomer\": \"Contract Comments Testing\",\r\n    \"date\": \"2025-06-13\",\r\n    \"promisedate\": \"NULL\",\r\n    \"daysvalid\": \"10\",    \r\n    \"description\": \"Description Testing\",\r\n    \"freight\": \"15.0\",\r\n    \"installcharge\": \"110.0\",\r\n    \"internalcomments\": \"Testing internalcomments\",\r\n    \"misccharge\": \"115.0\",\r\n    \"clientponumber\": \"po123\",\r\n    \"probabilityfactor\": \"50.0\",\r\n    \"rep\": \"SR\",\r\n    \"spid\": \"1062\",\r\n    \"terms\": \"\",\r\n    \"hidelineitempricing\":\"true\",\r\n    \"userdefined1\": \"PRINTER\",\r\n    \"userdefined2\": \"B\",\r\n    \"userdefined3\": \"UDF3\",\r\n    \"userdefined4\": \"UDF4\",\r\n    \"userdefined5\": \"UDF5\",\r\n    \"companymask\": \"\",\r\n    \"spdetails\": [\r\n        {\r\n            \"itemnumber\": \"001P4712\",\r\n            \"mfgr\": \"IBM\",\r\n            \"ConditionCode\": \"NEW\",\r\n            \"commentstocustomer\": \"\",\r\n            \"description\": \"Testing\",\r\n            \"estimatedunitcost\": \"0\",\r\n            \"internalcomments\": \"\",            \r\n            \"location\": \"CHE\",\r\n            \"qty\": \"2\",            \r\n            \"extendeddescription\": \"\",\r\n            \"unitprice\": \"50\",\r\n            \"warehouse\": \"\",\r\n            \"listprice\": \"0\",\r\n            \"salesdistribution\": \"MATI\",\r\n            \"tax\": {\r\n                \"istaxable\": \"true\",\r\n                \"tax1cat\": \"ALL\",\r\n                \"tax2cat\": \"\",\r\n                \"tax3cat\": \"ALL2\",\r\n                \"tax4cat\": \"ALL3\",\r\n                \"tax5cat\": \"ALL\",\r\n                \"tax6cat\": \"ALL1\",\r\n                \"taxauthoritytaxable\": \"false\"\r\n            }\r\n        },\r\n        {\r\n            \"itemnumber\": \"001P4712\",\r\n            \"mfgr\": \"IBM\",\r\n            \"ConditionCode\": \"NEW\",\r\n            \"commentstocustomer\": \"\",\r\n            \"description\": \"Testing\",\r\n            \"estimatedunitcost\": \"0\",\r\n            \"internalcomments\": \"\",            \r\n            \"location\": \"CHE\",\r\n            \"qty\": \"2\",            \r\n            \"extendeddescription\": \"\",\r\n            \"unitprice\": \"50\",\r\n            \"warehouse\": \"\",\r\n            \"listprice\": \"0\",\r\n            \"salesdistribution\": \"\",\r\n            \"tax\": {\r\n                \"istaxable\": \"true\",\r\n                \"tax1cat\": \"ALL\",\r\n                \"tax2cat\": \"ALL1\",\r\n                \"tax3cat\": \"ALL2\",\r\n                \"tax4cat\": \"ALL3\",\r\n                \"tax5cat\": \"ALL\",\r\n                \"tax6cat\": \"ALL\",\r\n                \"taxauthoritytaxable\": \"true\"\r\n            }\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/SP/JSON","urlObject":{"protocol":"https","path":["webapi.svc","SP","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"fa07e7dc-42ff-4ba3-b5c1-8ce5f9674f4a"},{"name":"VOID Sales proposals (JSON)","id":"9f96ed67-b6ff-43b6-b37d-54fa7365f47b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"conditioncode\": \"NEW\",\r\n    \"commentstocustomer\": \"Contract Comments Testing\",\r\n    \"date\": \"2025-06-13\",\r\n    \"promisedate\": \"NULL\",\r\n    \"daysvalid\": \"10\",    \r\n    \"description\": \"Description Testing\",\r\n    \"freight\": \"15.0\",\r\n    \"installcharge\": \"110.0\",\r\n    \"internalcomments\": \"Testing internalcomments\",\r\n    \"misccharge\": \"115.0\",\r\n    \"clientponumber\": \"po123\",\r\n    \"probabilityfactor\": \"50.0\",\r\n    \"rep\": \"SR\",\r\n    \"spid\": \"1062\",\r\n    \"terms\": \"\",\r\n    \"hidelineitempricing\":\"true\",\r\n    \"userdefined1\": \"PRINTER\",\r\n    \"userdefined2\": \"B\",\r\n    \"userdefined3\": \"UDF3\",\r\n    \"userdefined4\": \"UDF4\",\r\n    \"userdefined5\": \"UDF5\",\r\n    \"companymask\": \"\",\r\n    \"spdetails\": [\r\n        {\r\n            \"itemnumber\": \"001P4712\",\r\n            \"mfgr\": \"IBM\",\r\n            \"ConditionCode\": \"NEW\",\r\n            \"commentstocustomer\": \"\",\r\n            \"description\": \"Testing\",\r\n            \"estimatedunitcost\": \"0\",\r\n            \"internalcomments\": \"\",            \r\n            \"location\": \"CHE\",\r\n            \"qty\": \"2\",            \r\n            \"extendeddescription\": \"\",\r\n            \"unitprice\": \"50\",\r\n            \"warehouse\": \"\",\r\n            \"listprice\": \"0\",\r\n            \"salesdistribution\": \"MATI\",\r\n            \"tax\": {\r\n                \"istaxable\": \"true\",\r\n                \"tax1cat\": \"ALL\",\r\n                \"tax2cat\": \"\",\r\n                \"tax3cat\": \"ALL2\",\r\n                \"tax4cat\": \"ALL3\",\r\n                \"tax5cat\": \"ALL\",\r\n                \"tax6cat\": \"ALL1\",\r\n                \"taxauthoritytaxable\": \"false\"\r\n            }\r\n        },\r\n        {\r\n            \"itemnumber\": \"001P4712\",\r\n            \"mfgr\": \"IBM\",\r\n            \"ConditionCode\": \"NEW\",\r\n            \"commentstocustomer\": \"\",\r\n            \"description\": \"Testing\",\r\n            \"estimatedunitcost\": \"0\",\r\n            \"internalcomments\": \"\",            \r\n            \"location\": \"CHE\",\r\n            \"qty\": \"2\",            \r\n            \"extendeddescription\": \"\",\r\n            \"unitprice\": \"50\",\r\n            \"warehouse\": \"\",\r\n            \"listprice\": \"0\",\r\n            \"salesdistribution\": \"\",\r\n            \"tax\": {\r\n                \"istaxable\": \"true\",\r\n                \"tax1cat\": \"ALL\",\r\n                \"tax2cat\": \"ALL1\",\r\n                \"tax3cat\": \"ALL2\",\r\n                \"tax4cat\": \"ALL3\",\r\n                \"tax5cat\": \"ALL\",\r\n                \"tax6cat\": \"ALL\",\r\n                \"taxauthoritytaxable\": \"true\"\r\n            }\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/SP/void/JSON","urlObject":{"protocol":"https","path":["webapi.svc","SP","void","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"9f96ed67-b6ff-43b6-b37d-54fa7365f47b"},{"name":"Insert Sales proposals (JSON)","id":"bf60ea31-cce5-4f05-b571-66c8e67d6384","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<sp>\r\n    <conditioncode>NEW</conditioncode>\r\n    <commentstocustomer>Contract Comments Testing</commentstocustomer>\r\n    <date>2025-06-13</date>\r\n    <promisedate>NULL</promisedate>\r\n    <daysvalid>10</daysvalid>\r\n    <description>Description Testing</description>\r\n    <freight>15.0</freight>\r\n    <installcharge>110.0</installcharge>\r\n    <internalcomments>Testing internalcomments</internalcomments>\r\n    <misccharge>115.0</misccharge>\r\n    <clientponumber>po123</clientponumber>\r\n    <probabilityfactor>50.0</probabilityfactor>\r\n    <rep>SR</rep>\r\n    <spid>1071</spid>\r\n    <terms></terms>\r\n    <hidelineitempricing>true</hidelineitempricing>\r\n    <userdefined1>PRINTER</userdefined1>\r\n    <userdefined2>B</userdefined2>\r\n    <userdefined3>UDF3</userdefined3>\r\n    <userdefined4>UDF4</userdefined4>\r\n    <userdefined5>UDF5</userdefined5>\r\n    <companymask></companymask>\r\n    <spdetails>\r\n        <spdetail>\r\n            <itemnumber>001P4712</itemnumber>\r\n            <mfgr>IBM</mfgr>\r\n            <ConditionCode>NEW</ConditionCode>\r\n            <commentstocustomer></commentstocustomer>\r\n            <description>Testing</description>\r\n            <estimatedunitcost>0</estimatedunitcost>\r\n            <internalcomments></internalcomments>\r\n            <location>CHE</location>\r\n            <qty>2</qty>\r\n            <extendeddescription></extendeddescription>\r\n            <unitprice>50</unitprice>\r\n            <warehouse></warehouse>\r\n            <listprice>0</listprice>\r\n            <salesdistribution>MATI</salesdistribution>\r\n            <tax>\r\n                <istaxable>true</istaxable>\r\n                <tax1cat>ALL</tax1cat>\r\n                <tax2cat></tax2cat>\r\n                <tax3cat>ALL2</tax3cat>\r\n                <tax4cat>ALL3</tax4cat>\r\n                <tax5cat>ALL</tax5cat>\r\n                <tax6cat>ALL1</tax6cat>\r\n                <taxauthoritytaxable>false</taxauthoritytaxable>\r\n            </tax>\r\n        </spdetail>\r\n        <spdetail>\r\n            <itemnumber>001P4712</itemnumber>\r\n            <mfgr>IBM</mfgr>\r\n            <ConditionCode>NEW</ConditionCode>\r\n            <commentstocustomer></commentstocustomer>\r\n            <description>Testing</description>\r\n            <estimatedunitcost>0</estimatedunitcost>\r\n            <internalcomments></internalcomments>\r\n            <location>CHE</location>\r\n            <qty>2</qty>            \r\n            <extendeddescription></extendeddescription>\r\n            <unitprice>50</unitprice>\r\n            <warehouse></warehouse>\r\n            <listprice>0</listprice>\r\n            <salesdistribution></salesdistribution>\r\n            <tax>\r\n                <istaxable>true</istaxable>\r\n                <tax1cat>ALL</tax1cat>\r\n                <tax2cat>ALL1</tax2cat>\r\n                <tax3cat>ALL2</tax3cat>\r\n                <tax4cat>ALL3</tax4cat>\r\n                <tax5cat>ALL</tax5cat>\r\n                <tax6cat>ALL</tax6cat>\r\n                <taxauthoritytaxable>true</taxauthoritytaxable>\r\n            </tax>\r\n        </spdetail>\r\n    </spdetails>\r\n</sp>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/SP/JSON","urlObject":{"protocol":"https","path":["webapi.svc","SP","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"bf60ea31-cce5-4f05-b571-66c8e67d6384"},{"name":"Void Sales Proposal XML JSON","id":"09f68a62-f3dd-4577-9e98-16e644db4242","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","description":"<p>session token</p>\n","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/SP/void/XML?spid&sessiondate","urlObject":{"protocol":"https","path":["webapi.svc","SP","void","XML"],"host":["api","iqreseller","com"],"query":[{"description":{"content":"<p>Required Parameter</p>\n","type":"text/plain"},"key":"spid","value":null},{"description":{"content":"<p>Optional Parameter</p>\n","type":"text/plain"},"key":"sessiondate","value":null}],"variable":[]}},"response":[],"_postman_id":"09f68a62-f3dd-4577-9e98-16e644db4242"},{"name":"Void Sales Proposal XML","id":"bd3b1a5a-e468-437a-96b3-dfffde4476f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","description":"<p>session token</p>\n","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/SP/void/XML?spid&sessiondate","urlObject":{"protocol":"https","path":["webapi.svc","SP","void","XML"],"host":["api","iqreseller","com"],"query":[{"description":{"content":"<p>Required Parameter</p>\n","type":"text/plain"},"key":"spid","value":null},{"description":{"content":"<p>Optional Parameter</p>\n","type":"text/plain"},"key":"sessiondate","value":null}],"variable":[]}},"response":[],"_postman_id":"bd3b1a5a-e468-437a-96b3-dfffde4476f7"},{"name":"Create SO from SP XML","id":"e91ac850-ceb2-4a80-bd93-d80f8787ec41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/SP/SO/XML?spid=90000&sessiondate","urlObject":{"protocol":"https","path":["webapi.svc","SP","SO","XML"],"host":["api","iqreseller","com"],"query":[{"description":{"content":"<p>Required Parameter</p>\n","type":"text/plain"},"key":"spid","value":"90000"},{"description":{"content":"<p>Optional Parameter</p>\n","type":"text/plain"},"key":"sessiondate","value":null}],"variable":[]}},"response":[],"_postman_id":"e91ac850-ceb2-4a80-bd93-d80f8787ec41"},{"name":"Create SO from SP (JSON)","id":"3060c91a-7097-49c0-bde3-cf13d2de7946","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/SP/SO/JSON","urlObject":{"protocol":"https","path":["webapi.svc","SP","SO","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3060c91a-7097-49c0-bde3-cf13d2de7946"},{"name":"Create Sales Proposal XML","id":"af062d68-9b1b-43b2-b15d-8d11531d8088","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<sp>\r\n    <date>2025-06-13</date>\r\n    <cvcode>Bailey</cvcode>\r\n    <clientponumber/>\r\n    <terms>NET 45</terms>\r\n    <conditioncode>NEW</conditioncode>\r\n    <rep>SSR</rep>\r\n    <currencycode>USD</currencycode>\r\n    <promisedate>NULL</promisedate>\r\n    <probabilityfactor>0.0</probabilityfactor>\r\n    <daysvalid>ss</daysvalid>\r\n    <companymask/>\r\n    <description>Description Testing</description>\r\n    <userdefined1>UDF1</userdefined1>\r\n    <userdefined2>UDF2</userdefined2>\r\n    <userdefined3>UDF3</userdefined3>\r\n    <userdefined4>UDF4</userdefined4>\r\n    <userdefined5>UDF5</userdefined5>\r\n    <hidelineitempricing>trueEE</hidelineitempricing>\r\n    <freight>10.0</freight>\r\n    <installcharge>0.0</installcharge>\r\n    <misccharge>0.0</misccharge>\r\n    <downpayment>0.0</downpayment>\r\n    <declaredvalue>10.0</declaredvalue>\r\n    <voidableafter>NULL</voidableafter>\r\n    <previousmaintainedby/>\r\n    <contract>false</contract>\r\n    <wepaytransport>true</wepaytransport>\r\n    <wearrangetransport>false</wearrangetransport>\r\n    <wepayinstallation>false</wepayinstallation>\r\n    <firsttransaction>Falseee</firsttransaction>\r\n    <newequipment>false</newequipment>\r\n    <internalcomments>Testing internalcomments</internalcomments>\r\n    <commentstocustomer>Contract Comments Testing</commentstocustomer>\r\n    <addresses>\r\n        <shipfrom>\r\n            <cvcode>KINGS</cvcode>\r\n            <companyname>IQ reseller</companyname>\r\n            <address1>Contact Address1</address1>\r\n            <address2>Contact Address2</address2>\r\n            <address3>Contact Address3</address3>\r\n            <city>Minneapolis</city>\r\n            <state>MN</state>\r\n            <postalcode>55417</postalcode>\r\n            <country>united states</country>\r\n            <fax>1234567890</fax>\r\n            <email>sivajothi@iqreseller.com</email>\r\n            <contact>Sivajothi</contact>\r\n            <mainremitto>false</mainremitto>\r\n            <mainshipto>false</mainshipto>\r\n            <mainbillto>false</mainbillto>\r\n            <maincontact>false</maincontact>\r\n        </shipfrom>\r\n        <shipto>\r\n            <cvcode>JOHN</cvcode>\r\n            <companyname>TEST COMPANY</companyname>\r\n            <address1>25206, 7780 McCallum Blvd.</address1>\r\n            <address2>Dallas</address2>\r\n            <address3>Dallas - TX</address3>\r\n            <city>Minneapolis</city>\r\n            <state>TX</state>\r\n            <postalcode>55417</postalcode>\r\n            <country>united states</country>\r\n            <fax>1234567890</fax>\r\n            <email>sivajothi@iqreseller.com</email>\r\n            <contact>Sivajothi</contact>\r\n            <mainremitto>false</mainremitto>\r\n            <mainshipto>false</mainshipto>\r\n            <mainbillto>false</mainbillto>\r\n            <maincontact>false</maincontact>\r\n        </shipto>\r\n    </addresses>\r\n    <tax>\r\n        <istaxable>true</istaxable>\r\n        <isfreighttaxable>true</isfreighttaxable>\r\n        <isinstalltaxable>true</isinstalltaxable>\r\n        <ismisctaxable>true</ismisctaxable>\r\n        <istaxoverride>false</istaxoverride>\r\n        <taxstate>MN</taxstate>\r\n        <statetaxrate>0</statetaxrate>\r\n        <tax1auth>Play</tax1auth>\r\n        <tax1>0</tax1>\r\n        <tax2auth>TA2</tax2auth>\r\n        <tax2>0</tax2>\r\n        <tax3auth>TA3</tax3auth>\r\n        <tax3>0</tax3>\r\n        <tax4auth>TA1-2.5%</tax4auth>\r\n        <tax4>0</tax4>\r\n        <tax5auth>Central</tax5auth>\r\n        <tax5>0</tax5>\r\n        <tax6auth>CBDT</tax6auth>\r\n        <tax6>0</tax6>\r\n    </tax>\r\n    <spdetails>\r\n        <spdetail>\r\n            <itemnumber>001P4712</itemnumber>\r\n            <mfgr>IBM</mfgr>\r\n            <commentstocustomer/>\r\n            <description>Testing</description>\r\n            <estimatedunitcost>0</estimatedunitcost>\r\n            <internalcomments/>\r\n            <location>CHE</location>\r\n            <qty>2</qty>\r\n            <extendeddescription/>\r\n            <unitprice>50</unitprice>\r\n            <warehouse/>\r\n            <listprice>0</listprice>\r\n            <salesdistribution/>\r\n            <tax>\r\n                <istaxable>true</istaxable>\r\n                <taxauthoritytaxable>false</taxauthoritytaxable>\r\n                <tax1cat>ALL</tax1cat>\r\n                <tax2cat>ALL</tax2cat>\r\n                <tax3cat>TA3</tax3cat>\r\n                <tax4cat>ALL4</tax4cat>\r\n                <tax5cat>ALL</tax5cat>\r\n                <tax6cat>ALL</tax6cat>\r\n            </tax>\r\n        </spdetail>\r\n        <spdetail>\r\n            <itemnumber>001P4712</itemnumber>\r\n            <mfgr>IBM</mfgr>\r\n            <commentstocustomer/>\r\n            <description>Testing</description>\r\n            <estimatedunitcost>0</estimatedunitcost>\r\n            <internalcomments/>\r\n            <location>CHE</location>\r\n            <qty>2</qty>\r\n            <extendeddescription/>\r\n            <unitprice>50</unitprice>\r\n            <warehouse/>\r\n            <listprice>0</listprice>\r\n            <salesdistribution>MATI</salesdistribution>\r\n            <tax>\r\n                <istaxable>true</istaxable>\r\n                <taxauthoritytaxable>false</taxauthoritytaxable>\r\n                <tax1cat>ALL</tax1cat>\r\n                <tax2cat>ALL</tax2cat>\r\n                <tax3cat>TA3</tax3cat>\r\n                <tax4cat>ALL4</tax4cat>\r\n                <tax5cat>ALL</tax5cat>\r\n                <tax6cat>AL1</tax6cat>\r\n            </tax>\r\n        </spdetail>\r\n    </spdetails>\r\n</sp>"},"url":"https://api.iqreseller.com/webapi.svc/SP/XML","urlObject":{"protocol":"https","path":["webapi.svc","SP","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"af062d68-9b1b-43b2-b15d-8d11531d8088"},{"name":"Create Sales Proposal JSON","id":"0457d289-3c40-4e40-a1ee-d3e4dca06e0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"conditioncode\": \"NEW\",\r\n    \"contract\": \"false\",\r\n    \"commentstocustomer\": \"new sealed original cisco with a 90 day warranty from vendor, smartnet eligible and remaining manufacturers warranty from cisco direct.\",\r\n    \"currencycode\": \"USD\",\r\n    \"cvcode\": \"Bailey\",\r\n    \"date\": \"2025-06-21\",\r\n    \"daysvalid\": \"10\",\r\n    \"declaredvalue\": \"10.0\",\r\n    \"promisedate\": \"2025-06-25\",\r\n    \"description\": \"Description Testing\",\r\n    \"downpayment\": \"4.0\",\r\n    \"freight\": \"10.0\",\r\n    \"installcharge\": \"5.0\",\r\n    \"internalcomments\": \"must include the correct us power cord. our po number must be included on the reference section of the fed ex shipping label or freight charges will be reversed\",\r\n    \"misccharge\": \"10.0\",\r\n    \"newequipment\": \"false\",\r\n    \"clientponumber\": \"PO-5432\",\r\n    \"previousmaintainedby\": \"\",\r\n    \"probabilityfactor\": \"65\",\r\n    \"rep\": \"SSR\",\r\n    \"terms\": \"0\",\r\n    \"userdefined1\": \"UDF1\",\r\n    \"userdefined2\": \"UDF2\",\r\n    \"userdefined3\": \"UDF3\",\r\n    \"userdefined4\": \"UDF4\",\r\n    \"userdefined5\": \"UDF5\",\r\n    \"voidableafter\": \"NULL\",\r\n    \"wearrangetransport\": \"false\",\r\n    \"wepayinstallation\": \"false\",\r\n    \"wepaytransport\": \"true\",\r\n    \"hidelineitempricing\": \"true\",\r\n    \"companymask\": \"\",\r\n    \"firsttransaction\": \"false\",\r\n    \"addresses\": {\r\n        \"shipfrom\": {\r\n            \"cvcode\": \"KINGS\",\r\n            \"companyname\": \"IQ reseller\",\r\n            \"country\": \"united states\",\r\n            \"address1\": \"Contact Address1\",\r\n            \"address2\": \"Contact Address2\",\r\n            \"address3\": \"Contact Address3\",\r\n            \"state\": \"MN\",\r\n            \"city\": \"Minneapolis\",\r\n            \"postalcode\": \"55417\",\r\n            \"contact\": \"Sivajothi\",\r\n            \"fax\": \"1234567890\",\r\n            \"email\": \"sivajothi@iqreseller.com\"\r\n        },\r\n        \"shipto\": {\r\n            \"cvcode\": \"JOHN\",\r\n            \"companyname\": \"TEST COMPANY\",\r\n            \"country\": \"united states\",\r\n            \"address1\": \"25206, 7780 McCallum Blvd.\",\r\n            \"address2\": \"Dallas\",\r\n            \"address3\": \"Dallas TX\",\r\n            \"state\": \"TX\",\r\n            \"city\": \"Minneapolis\",\r\n            \"postalcode\": \"55417\",\r\n            \"contact\": \"Sivajothi\",\r\n            \"fax\": \"1234567890\",\r\n            \"email\": \"sivajothi@iqreseller.com\"\r\n        }\r\n    },\r\n    \"tax\": {\r\n        \"istaxable\": \"true\",\r\n        \"isfreighttaxable\": \"true\",\r\n        \"isinstalltaxable\": \"true\",\r\n        \"ismisctaxable\": \"true\",\r\n        \"istaxoverride\": \"false\",\r\n        \"statetaxrate\": \"0\",\r\n        \"taxstate\": \"MN\",\r\n        \"tax1\": \"0\",\r\n        \"tax2\": \"0\",\r\n        \"tax3\": \"0\",\r\n        \"tax4\": \"0\",\r\n        \"tax5\": \"0\",\r\n        \"tax6\": \"0\",\r\n        \"tax1auth\": \"Play\",\r\n        \"tax2auth\": \"TA2\",\r\n        \"tax3auth\": \"TA3\",\r\n        \"tax4auth\": \"TA1-2.5%\",\r\n        \"tax5auth\": \"Central\",\r\n        \"tax6auth\": \"CBDT\"\r\n    },\r\n    \"spdetails\": [\r\n        {\r\n            \"itemnumber\": \"001P4712\",\r\n            \"mfgr\": \"IBM\",\r\n            \"ConditionCode\": \"NEW\",\r\n            \"commentstocustomer\": \"\",\r\n            \"description\": \"Testing\",\r\n            \"estimatedunitcost\": \"0\",\r\n            \"internalcomments\": \"\",\r\n            \"location\": \"CHE\",\r\n            \"qty\": \"2\",\r\n            \"extendeddescription\": \"\",\r\n            \"unitprice\": \"50\",\r\n            \"warehouse\": \"\",\r\n            \"listprice\": \"0\",\r\n            \"salesdistribution\": \"\",\r\n            \"tax\": {\r\n                \"istaxable\": \"true\",\r\n                \"tax1cat\": \"ALL\",\r\n                \"tax2cat\": \"ALL\",\r\n                \"tax3cat\": \"TA3\",\r\n                \"tax4cat\": \"ALL4\",\r\n                \"tax5cat\": \"ALL\",\r\n                \"tax6cat\": \"ALL\",\r\n                \"taxauthoritytaxable\": \"false\"\r\n            }\r\n        },\r\n        {\r\n            \"itemnumber\": \"001P4712\",\r\n            \"mfgr\": \"IBM\",\r\n            \"ConditionCode\": \"NEW\",\r\n            \"commentstocustomer\": \"\",\r\n            \"description\": \"Testing\",\r\n            \"estimatedunitcost\": \"0\",\r\n            \"internalcomments\": \"\",\r\n            \"location\": \"CHE\",\r\n            \"qty\": \"2\",\r\n            \"extendeddescription\": \"\",\r\n            \"unitprice\": \"50\",\r\n            \"warehouse\": \"\",\r\n            \"listprice\": \"0\",\r\n            \"salesdistribution\": \"MATI\",\r\n            \"tax\": {\r\n                \"istaxable\": \"true\",\r\n                \"tax1cat\": \"ALL\",\r\n                \"tax2cat\": \"ALL\",\r\n                \"tax3cat\": \"TA3\",\r\n                \"tax4cat\": \"ALL4\",\r\n                \"tax5cat\": \"ALL\",\r\n                \"tax6cat\": \"AL1\",\r\n                \"taxauthoritytaxable\": \"false\"\r\n            }\r\n        }\r\n    ]\r\n}"},"url":"https://api.iqreseller.com/webapi.svc/SP/XML","urlObject":{"protocol":"https","path":["webapi.svc","SP","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0457d289-3c40-4e40-a1ee-d3e4dca06e0d"}],"id":"38af673c-97f5-4435-b71c-4ed24da0e413","description":"<p>This folder contains endpoints used to <strong>retrieve sales proposal data</strong>. Sales proposals represent quotes or preliminary sales documents that may later convert into sales orders. These APIs allow users to retrieve proposal information and associated details.</p>\n","_postman_id":"38af673c-97f5-4435-b71c-4ed24da0e413"},{"name":"Terms","item":[{"name":"Get Terms by Page","id":"e660bb29-12a8-483b-800a-ce536201bb09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/","urlObject":{"protocol":"https","path":["webapi.svc",""],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e660bb29-12a8-483b-800a-ce536201bb09"},{"name":"Get Terms by Constraints","id":"758ad679-6b81-4313-9333-c4fe7f21b907","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/","urlObject":{"protocol":"https","path":["webapi.svc",""],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"758ad679-6b81-4313-9333-c4fe7f21b907"},{"name":"Get Terms Count","id":"b656b368-44ec-4776-afed-cc1c6f4da7b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Terms/GetTermsCount","description":"<p>Gets the total number of terms that exist in the database.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Terms","GetTermsCount"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b656b368-44ec-4776-afed-cc1c6f4da7b6"},{"name":"Insert Terms","id":"0a4a4bcc-4614-4708-94cd-461f29171708","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc/","urlObject":{"protocol":"https","path":["webapi.svc",""],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0a4a4bcc-4614-4708-94cd-461f29171708"}],"id":"aeb216d7-1e91-478f-b3ca-f2f34dc71a31","_postman_id":"aeb216d7-1e91-478f-b3ca-f2f34dc71a31","description":""},{"name":"Update Inventories","item":[{"name":"Insert/Update Inventory Attributes (Revised on v31 build)","id":"9baa7a8b-c967-4927-9a6b-f45165446b3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc","urlObject":{"protocol":"https","path":["webapi.svc"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"9baa7a8b-c967-4927-9a6b-f45165446b3e"},{"name":"Change Inventory Item Number","id":"f3a92ff1-0b89-4eae-a421-f751d45710ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.iqreseller.com/webapi.svc","urlObject":{"protocol":"https","path":["webapi.svc"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f3a92ff1-0b89-4eae-a421-f751d45710ed"},{"name":"Update Inventory weight using inventoryid (XML)","id":"f4be3a95-16c8-4282-adf2-b3f5e347cec1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<request>\r\n    <inventories>\r\n        <inventory>\r\n            <inventoryid>231073</inventoryid>\r\n                <weight>25</weight>\r\n            </inventory>\r\n    </inventories>\r\n</request>\r\n","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventory/XML/UpdateInventoryWeightById","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","XML","UpdateInventoryWeightById"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f4be3a95-16c8-4282-adf2-b3f5e347cec1"},{"name":"Update Inventory weight using inventoryid (JSON)","id":"f593b194-668e-4d48-a165-42caad53c0ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"inventories\": [\r\n        {\r\n            \"inventoryid\": \"231073\",\r\n            \"weight\": 5.00\r\n        }\r\n    ]\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventory/JSON/UpdateInventoryWeightById","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","JSON","UpdateInventoryWeightById"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f593b194-668e-4d48-a165-42caad53c0ea"},{"name":"Update Weight for inventory using itemnumber and mfgr XML","id":"bb491397-127e-4442-89cc-34dbf200d56d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<inventories>\r\n    <inventory>\r\n        <item>100100</item>\r\n        <mfgr>3COM</mfgr>\r\n        <weight>20</weight>\r\n    </inventory>\r\n</inventories>\r\n","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventory/XML/UpdateInventoryWeightByItemNumberAndMfgr","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","XML","UpdateInventoryWeightByItemNumberAndMfgr"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"bb491397-127e-4442-89cc-34dbf200d56d"},{"name":"Update Weight for inventory using itemnumber and mfgr JSON","id":"07006cad-3378-491e-ab00-f3d017cbd8fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"item\": \"001P4723\",\r\n        \"mfgr\": \"IBM\",\r\n        \"weight\": 6.00\r\n    }\r\n]\r\n\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventory/JSON/UpdateInventoryWeightByItemNumberAndMfgr","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","JSON","UpdateInventoryWeightByItemNumberAndMfgr"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"07006cad-3378-491e-ab00-f3d017cbd8fb"},{"name":"Update imageURL for the inventoryitems using inventoryid JSON","id":"028328f3-3e9a-4eac-993d-bdb2d65ae84c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"inventories\": [\r\n        {\r\n            \"inventoryid\": \"231074\",\r\n            \"imageurl\": \"https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQ0rLvt6GHJt0JcKGD9qXF3IzizicKjCDDtFh_P52HdZ2uexw7GuA\"\r\n        }\r\n    ]\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventory/JSON/UpdateInventoryImageUrlById","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","JSON","UpdateInventoryImageUrlById"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"028328f3-3e9a-4eac-993d-bdb2d65ae84c"},{"name":"Update ImageURL for the Inventory Items using Inventory Id (XML)","id":"857c9175-4fd4-4a79-9943-697f8bc78425","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"inventories\": [\r\n        {\r\n            \"inventoryid\": \"231074\",\r\n            \"imageurl\": \"https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQ0rLvt6GHJt0JcKGD9qXF3IzizicKjCDDtFh_P52HdZ2uexw7GuA\"\r\n        }\r\n    ]\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventory/XML/UpdateInventoryImageUrlById","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","XML","UpdateInventoryImageUrlById"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"857c9175-4fd4-4a79-9943-697f8bc78425"},{"name":"Update ImageURL for the Inventory Items using Item Number and Mfgr (XML)","id":"8e0faa78-7005-4d3b-801d-2a7679a0419c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"inventories\": [\r\n        {\r\n            \"inventoryid\": \"231074\",\r\n            \"imageurl\": \"https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQ0rLvt6GHJt0JcKGD9qXF3IzizicKjCDDtFh_P52HdZ2uexw7GuA\"\r\n        }\r\n    ]\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventory/Xml/UpdateInventoryImageUrlByItemAndMfgr","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","Xml","UpdateInventoryImageUrlByItemAndMfgr"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8e0faa78-7005-4d3b-801d-2a7679a0419c"},{"name":"Update ImageURL for the Inventory Items using Item Number and Mfgr (JSON)","id":"ff84043b-8f77-4abc-912b-906b9b626657","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"inventories\": [\r\n        {\r\n            \"inventoryid\": \"231074\",\r\n            \"imageurl\": \"https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQ0rLvt6GHJt0JcKGD9qXF3IzizicKjCDDtFh_P52HdZ2uexw7GuA\"\r\n        }\r\n    ]\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventory/JSON/UpdateInventoryImageUrlByItemAndMfgr","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","JSON","UpdateInventoryImageUrlByItemAndMfgr"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ff84043b-8f77-4abc-912b-906b9b626657"},{"name":"Change Inventory Location XML","id":"ecb44430-1660-4f84-a7a4-9277c5741a1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<request>                   \r\n    <option>4</option>\r\n    <oldlocation>NEW_LOC-AA818</oldlocation>\r\n    <newlocation>OLD_LOC-AA818</newlocation>\r\n    <updatehistory>0</updatehistory>\r\n</request>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventory/XML/RelocateInventories","description":"<p>This API endpoint will move the entire contents of one location to a new location. The user does not have to enter a new location into each individual inventory record.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","XML","RelocateInventories"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ecb44430-1660-4f84-a7a4-9277c5741a1a"},{"name":"Change Inventory Location JSON","id":"5e89f434-97ca-4f8e-b195-2c87e2ff7a1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"option\": \"4\",\r\n    \"oldlocation\": \"OLD_LOC-AA818\",\r\n    \"newlocation\": \"NEW_LOC-AA818\",\r\n    \"updatehistory\": \"0\"\r\n  }","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventory/JSON/RelocateInventories","description":"<p>This API endpoint will move the entire contents of one location to a new location. The user does not have to enter a new location into each individual inventory record.</p>\n<p>This endpoint also has 4 options:</p>\n<p>Option 1: Update using inventoryid</p>\n<p>Option 2: Update using Serial number</p>\n<p>Option 3: Update using Itemnumber/Mfgr</p>\n<p>Option 4: Update from old Location to new Location (This moves all of the inventories from the old to the new.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","JSON","RelocateInventories"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"5e89f434-97ca-4f8e-b195-2c87e2ff7a1e"},{"name":"Change Inventory Warehouse (JSON)","id":"62250669-9b29-4fa4-ab00-1e793419bba3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"option\": \"4\",\r\n    \"oldlocation\": \"OLD_LOC-AA818\",\r\n    \"newlocation\": \"NEW_LOC-AA818\",\r\n    \"updatehistory\": \"0\"\r\n  }","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventory/ChangeWarehouses/JSON","description":"<p>This API endpoint will move the entire contents of one location to a new location. The user does not have to enter a new location into each individual inventory record.</p>\n<p>This endpoint also has 4 options:</p>\n<p>Option 1: Update using inventoryid</p>\n<p>Option 2: Update using Serial number</p>\n<p>Option 3: Update using Itemnumber/Mfgr</p>\n<p>Option 4: Update from old Location to new Location (This moves all of the inventories from the old to the new.</p>\n","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","ChangeWarehouses","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"62250669-9b29-4fa4-ab00-1e793419bba3"},{"name":"Change inventory Conditioncode XML","id":"6da9ef65-05e5-440a-b0d4-c1abad76c2f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<request>                   \r\n    <option>4</option>\r\n    <oldconditioncode>JOHN</oldconditioncode>\r\n    <newconditioncode>CLIF</newconditioncode>\r\n    <updatehistory>0</updatehistory>\r\n</request>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventory/ChangeConditionCode/XML","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","ChangeConditionCode","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6da9ef65-05e5-440a-b0d4-c1abad76c2f7"},{"name":"Change inventory Conditioncode jSON","id":"a5e192bf-40f0-4a13-a867-e2788ad0efa5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"option\": \"4\",\r\n    \"oldconditioncode\": \"CLIF\",\r\n    \"newconditioncode\": \"JOHN\",\r\n    \"updatehistory\": \"0\"\r\n  }","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventory/ChangeConditionCode/JSON","description":"<p>Option 1:<br />Update using Inventoryid<br />Option 2:<br />Update using Serial number<br />Option 3:<br />Update using Itemnumber/Mfgr<br />Option 4:<br />Update from old Condition to new Condition</p>\n<h6 id=\"please-note-the-width-of-conditioncode-field-is-only-4-characters\"><strong>Please note: The width of conditioncode field is only 4 characters.</strong></h6>\n","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","ChangeConditionCode","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a5e192bf-40f0-4a13-a867-e2788ad0efa5"},{"name":"Change Inventory User Defined Fields XML","id":"f9920958-cd11-4872-ba5a-05eaa53011b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<request>                   \r\n    <option>1</option>\r\n     <inventories>\r\n        <inventory>\r\n            <inventoryid>231073</inventoryid>\r\n            <userdefined1>OLD_LOC-AA818</userdefined1>\r\n            <userdefined2>OLD_LOC-AA819</userdefined2>\r\n            <userdefined3>OLD_LOC-AA817</userdefined3>\r\n            <userdefined4>OLD_LOC-AA816</userdefined4>\r\n            <userdefined5>OLD_LOC-AA815</userdefined5>\r\n        </inventory>\r\n    </inventories>\r\n</request>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventory/ChangeUserDefinedFields/XML","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","ChangeUserDefinedFields","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f9920958-cd11-4872-ba5a-05eaa53011b5"},{"name":"Change Inventory User Defined Fields JSON","id":"b4932e63-5766-428d-94f6-30415cb9a7bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<request>                   \r\n    <option>1</option>\r\n     <inventories>\r\n        <inventory>\r\n            <inventoryid>231073</inventoryid>\r\n            <userdefined1>OLD_LOC-AA818</userdefined1>\r\n        </inventory>\r\n    </inventories>\r\n</request>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventory/ChangeUserDefinedFields/JSON","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","ChangeUserDefinedFields","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b4932e63-5766-428d-94f6-30415cb9a7bb"},{"name":"Update Inventory for the listed fields JSON","id":"c6e5d304-35bb-44c5-827c-1b773a461c6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"inventories\": [\r\n    {\r\n      \"inventoryid\": \"231073\",\r\n      \"itemnumber\": \"\",\r\n      \"mfgr\": \"\",\r\n      \"unitcost\": 0,\r\n      \"description\": \"\",\r\n      \"extendeddescription\": \"\",\r\n      \"conditioncode\": \"\",\r\n      \"location\": \"\",\r\n      \"warehouse\": \"\",\r\n      \"serialnumber\": \"\",\r\n      \"userdefined1\": \"\",\r\n      \"userdefined2\": \"\",\r\n      \"userdefined3\": \"\",\r\n      \"userdefined4\": \"\",\r\n      \"userdefined5\": \"\",\r\n      \"weight\": 6.00,\r\n      \"imageurl\": \"\",\r\n      \"rep\": \"\",\r\n      \"countrycode\": \"\",\r\n      \"comments\": \"\",\r\n      \"associateditemnumber\": \"\"\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventories/Update/JSON?inventoryid&mfgr&unitcost&description&extendeddescription&conditioncode&location&warehouse&serialnumber&userdefined1&userdefined2&userdefined3&userdefined4&userdefined5&weight&imageurl&rep&countrycode&comments&associateditemnumber","urlObject":{"protocol":"https","path":["webapi.svc","Inventories","Update","JSON"],"host":["api","iqreseller","com"],"query":[{"key":"inventoryid","value":null},{"key":"mfgr","value":null},{"key":"unitcost","value":null},{"key":"description","value":null},{"key":"extendeddescription","value":null},{"key":"conditioncode","value":null},{"key":"location","value":null},{"key":"warehouse","value":null},{"key":"serialnumber","value":null},{"key":"userdefined1","value":null},{"key":"userdefined2","value":null},{"key":"userdefined3","value":null},{"key":"userdefined4","value":null},{"key":"userdefined5","value":null},{"key":"weight","value":null},{"key":"imageurl","value":null},{"key":"rep","value":null},{"key":"countrycode","value":null},{"description":{"content":"<p>250 character max</p>\n","type":"text/plain"},"key":"comments","value":null},{"key":"associateditemnumber","value":null}],"variable":[]}},"response":[],"_postman_id":"c6e5d304-35bb-44c5-827c-1b773a461c6a"},{"name":"Update Inventory for the listed fields JSON Copy","id":"2d09af38-e815-4576-8ab0-db590e440eab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"},{"key":"inventoryid","value":"","type":"text"},{"key":"itemnumber","value":"","type":"text"},{"key":"mfgr","value":"","type":"text"},{"key":"unitcost","value":"","type":"text"},{"key":"description","value":"","type":"text"},{"key":"extendeddescription","value":"","type":"text"},{"key":"conditioncode","value":"","type":"text"},{"key":"location","value":"","type":"text"},{"key":"warehouse","value":"","type":"text"},{"key":"serialnumber","value":"","type":"text"},{"key":"userdefined1","value":"","type":"text"},{"key":"userdefined2","value":"","type":"text"},{"key":"userdefined3","value":"","type":"text"},{"key":"userdefined4","value":"","type":"text"},{"key":"userdefined5","value":"","type":"text"},{"key":"weight","value":"","type":"text"},{"key":"imageurl","value":"","type":"text"},{"key":"rep","value":"","type":"text"},{"key":"countrycode","value":"","type":"text"},{"key":"Comments","value":"","description":"<p>250 Character Limit</p>\n","type":"text"},{"key":"associateditemnumber","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"inventories\": [\r\n    {\r\n      \"inventoryid\": \"231073\",\r\n      \"itemnumber\": \"\",\r\n      \"mfgr\": \"\",\r\n      \"unitcost\": 0,\r\n      \"description\": \"\",\r\n      \"extendeddescription\": \"\",\r\n      \"conditioncode\": \"\",\r\n      \"location\": \"\",\r\n      \"warehouse\": \"\",\r\n      \"serialnumber\": \"\",\r\n      \"userdefined1\": \"\",\r\n      \"userdefined2\": \"\",\r\n      \"userdefined3\": \"\",\r\n      \"userdefined4\": \"\",\r\n      \"userdefined5\": \"\",\r\n      \"weight\": 6.00,\r\n      \"imageurl\": \"\",\r\n      \"rep\": \"\",\r\n      \"countrycode\": \"\",\r\n      \"comments\": \"\",\r\n      \"associateditemnumber\": \"\"\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventories/Update/JSON","urlObject":{"protocol":"https","path":["webapi.svc","Inventories","Update","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2d09af38-e815-4576-8ab0-db590e440eab"},{"name":"Insert Attachment","id":"8f0435db-11ef-4241-9222-1417aaf0ba75","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.iqreseller.com/webapi.svc/Inventory/Attachment?Inventoryid&Load input file","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","Attachment"],"host":["api","iqreseller","com"],"query":[{"key":"Inventoryid","value":null},{"key":"Load input file","value":null}],"variable":[]}},"response":[],"_postman_id":"8f0435db-11ef-4241-9222-1417aaf0ba75"},{"name":"Part Removal JSON","id":"48204945-e62c-4222-b559-77a914c5c136","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"inventories\": [\n\t\t{\n\t\t\t\"inventoryid\": \"367189\",\n\t\t\t\"unitcost\": \"2.1250\",\n\t\t\t\"additemsfrombom\": true,\n\t\t\t\"applybomitemstoall\": true,\n\t\t\t\"items\": [\n\t\t\t\t{\n\t\t\t\t\t\"itemnumber\": \"0011458\",\n\t\t\t\t\t\"mfgr\": \"SAMSUNG\",\n\t\t\t\t\t\"conditioncode\": \"new\",\n\t\t\t\t\t\"description\": \"Part Removal testing\",\n\t\t\t\t\t\"qty\": \"1\",\n\t\t\t\t\t\"serialnumber\": \"\",\n\t\t\t\t\t\"location\": \"\",\n\t\t\t\t\t\"warehouse\": \"\",\n\t\t\t\t\t\"unitcost\": \"2\",\n\t\t\t\t\t\"weight\": \"0.0\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"inventoryid\": \"367190\",\n\t\t\t\"unitcost\": \"6.8269\",\n\t\t\t\"additemsfrombom\": false,\n\t\t\t\"applybomitemstoall\": false,\n\t\t\t\"items\": [\n\t\t\t\t{\n\t\t\t\t\t\"itemnumber\": \"0011458\",\n\t\t\t\t\t\"mfgr\": \"SAMSUNG\",\n\t\t\t\t\t\"conditioncode\": \"new\",\n\t\t\t\t\t\"description\": \"Part Removal testing\",\n\t\t\t\t\t\"qty\": \"1\",\n\t\t\t\t\t\"serialnumber\": \"\",\n\t\t\t\t\t\"location\": \"\",\n\t\t\t\t\t\"warehouse\": \"\",\n\t\t\t\t\t\"unitcost\": \"1.5\",\n\t\t\t\t\t\"weight\": \"0.0\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t]\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventory/PartRemoval/JSON","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","PartRemoval","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"48204945-e62c-4222-b559-77a914c5c136"},{"name":"Part Removal XML","id":"afa814d9-2532-4951-8387-9ee2f5e19753","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"<partremoval>\n    <inventories>\n        <inventory>\n            <inventoryid>367106</inventoryid>\n            <unitcost>3.5</unitcost>                        \n            <additemsfrombom>false</additemsfrombom>\n            <applybomitemstoall>false</applybomitemstoall>\n            <items>\n                <item>\n                    <itemnumber>0011458</itemnumber>\n                    <mfgr>3com</mfgr>\n                    <conditioncode>NEW</conditioncode>\n                    <description>test</description>\n                    <qty>1</qty>\n                    <serialnumber>1234</serialnumber>\n                    <location />\n                    <warehouse />\n                    <unitcost>0.2</unitcost>                    \n                    <weight>0.0</weight>\n                </item>\n                <item>\n                    <itemnumber>0011458_1</itemnumber>\n                    <mfgr>dell</mfgr>\n                    <conditioncode>USED</conditioncode>\n                    <description>tests</description>\n                    <qty>1</qty>\n                    <serialnumber>1234s</serialnumber>\n                    <location />\n                    <warehouse />\n                    <unitcost>0.2</unitcost>\t\t\t\tFor non-Liquid Tech customers\n   <estimatedsaleprice>5</estimatedsaleprice>           \t\t\tFor Liquid Tech \n                    <weight>0.0</weight>\n                </item>\n            </items>\n        </inventory>\n        <inventory>\n            <inventoryid>366811</inventoryid>\n            <unitcost>0.0</unitcost>            \n            <additemsfrombom>false</additemsfrombom>\n            <applybomitemstoall>false</applybomitemstoall>\n            <items>\n                <item>\n                    <itemnumber>0011458</itemnumber>\n                    <mfgr>3com</mfgr>\n                    <conditioncode>NEW</conditioncode>\n                    <description>test</description>\n                    <qty>1</qty>\n                    <serialnumber>1234</serialnumber>\n                    <location />\n                    <warehouse />\n                    <unitcost>0.2</unitcost>                    \n                    <weight>0.0</weight>\n                </item>\n            </items>\n        </inventory>\n    </inventories>\n</partremoval>\n","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventory/PartRemoval/XML","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","PartRemoval","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"afa814d9-2532-4951-8387-9ee2f5e19753"},{"name":"Update Inventory for the listed fields","id":"68ebf8f2-b0e2-4fc5-a05b-8e6b5fc0792d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<request>\r\n    <inventories>\r\n        <inventory>\r\n            <itemnumber>ST2000DM001</itemnumber>\r\n            <mfgr>HP</mfgr>\r\n            <unitcost>39.95</unitcost>\r\n            <description>Sata Hard Drive</description>\r\n            <extendeddescription>This is the extended Description</extendeddescription>\r\n            <conditioncode>NEW</conditioncode>\r\n            <location>A1B1</location>\r\n            <warehouse>Main</warehouse>\r\n            <serialnumber>12345678</serialnumber>\r\n            <userdefined1>A</userdefined1>\r\n            <userdefined2>B</userdefined2>\r\n            <userdefined3>C</userdefined3>\r\n            <userdefined4>D</userdefined4>\r\n            <userdefined5>E</userdefined5>\r\n            <weight>1</weight>\r\n            <imageurl>www.msn.com</imageurl>\r\n            <rep>AA</rep>\r\n            <countrycode>US</countrycode>\r\n        </inventory>\r\n    </inventories>\r\n</request>","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventories/Update/XML?id=192604","urlObject":{"protocol":"https","path":["webapi.svc","Inventories","Update","XML"],"host":["api","iqreseller","com"],"query":[{"description":{"content":"<p>inventoryid</p>\n","type":"text/plain"},"key":"id","value":"192604"}],"variable":[]}},"response":[],"_postman_id":"68ebf8f2-b0e2-4fc5-a05b-8e6b5fc0792d"},{"name":"Change Inventory Item Number","id":"d4954ac1-61b9-4f89-8636-1028829ad6f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"request\": {\r\n      \"inventories\": [{\r\n         \"inventory\": {\r\n            \"inventoryid\": \"192605\",\r\n            \"itemnumber\": \"ST2000DM001\",\r\n            \"mfgr\": \"HP\"\r\n         }\r\n      }]\r\n   }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventory/ChangeItemNumberMFGR/JSON","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","ChangeItemNumberMFGR","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d4954ac1-61b9-4f89-8636-1028829ad6f8"},{"name":"Change Inventory Item Number","id":"edb486c0-4920-419a-9c3b-4b091d00a771","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"<request>\r\n    <inventories>\r\n        <inventory>\r\n            <inventoryid>192604</inventoryid>\r\n            <itemnumber>ST2000DM001</itemnumber>\r\n            <mfgr>HP</mfgr>\r\n        </inventory>\r\n    </inventories>\r\n</request>\r\n","options":{"raw":{"language":"xml"}}},"url":"https://api.iqreseller.com/webapi.svc/Inventory/ChangeItemNumberMFGR/XML","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","ChangeItemNumberMFGR","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"edb486c0-4920-419a-9c3b-4b091d00a771"},{"name":"Change Inventory Warehouse","id":"3f8af7cb-7b24-4189-abde-a6a2bc8ba035","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Inventory/ChangeWarehouses/XML","urlObject":{"protocol":"https","path":["webapi.svc","Inventory","ChangeWarehouses","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3f8af7cb-7b24-4189-abde-a6a2bc8ba035"}],"id":"016a2df9-3aed-4d36-abfd-fad5dc94b158","description":"<p>This folder contains endpoints used to <strong>update or modify inventory records</strong>. These APIs allow users to update fields such as warehouse location, condition code, user-defined fields, image URLs, item numbers, and other inventory attributes.</p>\n","_postman_id":"016a2df9-3aed-4d36-abfd-fad5dc94b158"},{"name":"Warehouse","item":[{"name":"Get Warehouses JSON","id":"8e0b82df-ca92-4911-8f9f-a65aa50de209","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.iqreseller.com/webapi.svc/Warehouse/GetWarehouses/JSON","description":"<h2 id=\"parameters\"><strong>Parameters:</strong></h2>\n<ul>\n<li>Code:</li>\n</ul>\n","urlObject":{"protocol":"https","path":["webapi.svc","Warehouse","GetWarehouses","JSON"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8e0b82df-ca92-4911-8f9f-a65aa50de209"},{"name":"Get Warehouses (XML)","id":"1fb8e30e-39d9-430d-ba87-3f26f3d9d452","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ==","type":"text"}],"url":"https://api.iqreseller.com/webapi.svc/Warehouse/GetWarehouses/XML","urlObject":{"protocol":"https","path":["webapi.svc","Warehouse","GetWarehouses","XML"],"host":["api","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"1fb8e30e-39d9-430d-ba87-3f26f3d9d452"}],"id":"e76faa0e-a324-402a-ab45-9ecdf033cd3d","_postman_id":"e76faa0e-a324-402a-ab45-9ecdf033cd3d","description":""},{"name":"Session / Authentication","item":[{"name":"Get Session Token","event":[{"listen":"test","script":{"id":"2fe06dc3-5e9c-43ac-8fe1-199d14665ed3","exec":["var jsonData = JSON.parse(responseBody);\r","pm.collectionVariables.set(\"iqr-session-token\",jsonData.Data);\r","console.log(pm.variables.get(\"iqr-session-token\"));\r","pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"04c7b2b9-21b6-45d8-8c04-e7ab4ca794c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"APIToken\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://signin.iqreseller.com/api/IntegrationAPI/Session","urlObject":{"protocol":"https","path":["api","IntegrationAPI","Session"],"host":["signin","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"04c7b2b9-21b6-45d8-8c04-e7ab4ca794c8"},{"name":"Delete Session","id":"b722d8f1-25e7-4de2-a311-8e36ab53fe28","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ=="}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://signin.iqreseller.com/api/IntegrationAPI/Session","urlObject":{"protocol":"https","path":["api","IntegrationAPI","Session"],"host":["signin","iqreseller","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b722d8f1-25e7-4de2-a311-8e36ab53fe28"},{"name":"New Request","id":"045ec3a4-4026-4b13-90a4-ff3014079711","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"045ec3a4-4026-4b13-90a4-ff3014079711"}],"id":"63e69d33-9c61-4568-97c0-945dae813844","description":"<p>This folder contains endpoints used to <strong>authenticate users and generate session tokens</strong> required for accessing protected API endpoints. These APIs establish secure sessions and must be called before accessing most system data.</p>\n","_postman_id":"63e69d33-9c61-4568-97c0-945dae813844"}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"a41b3613-85f9-48d0-a8ca-5159b3cde8cb"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"301d7860-3188-4d2f-92d6-5ded910b4960"}}],"variable":[{"key":"iqr-session-token","value":"WaewpNC5ur1YuDgm5DDRkusFzgnVDqy6nnjeBjW0QzefY444bz2XrQ=="}]}