{"info":{"_postman_id":"1e7d8f81-070d-49a6-bbc6-d070c1a7d1d4","name":"Quivers API (Test)","description":"<html><head></head><body><h4 id=\"note-the-quivers-api-and-this-documentation-is-not-yet-published-and-is-subject-to-change-at-any-time\">Note: The Quivers API and this documentation is not yet published, and is subject to change at any time.</h4>\n<p>This is the public-facing Quivers Web API. This API currently offers a limited set of tools which may be used to integrate with the Quivers platform (for example, giving you the ability to synchronize customer orders between your ERP or shopping environment while leveraging Quivers for authorized fulfillment through your retailers).</p>\n<p>The Quivers API is loosely based around REST, and can be interacted with over HTTP or Websockets. An HTTP request (<code>GET</code> or <code>POST</code>) can be used to access a resource. <code>GET</code> resources are an idempotent way to retrieve data, while <code>POST</code> resources may change data within our platform. The API supports CORS, so you may make requests against our API from a third-party system or from a non-Quivers domain.</p>\n<p>The Quivers API is available at <code>https://api.quivers.com</code> (for accessing our sandbox or test environment, <code>https://api.quiversdemo.com</code> or <code>https://api.quiverstest.com</code> are used). All requests should be made over the HTTPS protocol, or over a secure websocket connection (WSS).</p>\n<p>All API resources accept an <code>application/json</code> content-type (<a href=\"https://www.ietf.org/rfc/rfc4627.txt\">RFC 4627 JSON</a>). Generally, our resources will return a response as <code>application/json</code> as well, unless otherwise specified (some export resources may return <code>text/csv</code> type data).</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>Within the Quivers API there are public API resources which do not require any authentication to be accessed. Other resources will require that you pass along an HTTP <code>Authorization</code> header to authenticate as a given user or business. The content of the <code>Authorization</code> header should either be an <strong>API Key</strong> (formatted as <code>Apikey {guid}</code>) or a <strong>Auth Token</strong> (formatted as <code>Bearer {token}</code>). API keys can be created as a user or business and used to authenticate your requests. Auth Tokens can be generated by using the <code>auth/login</code> resource, and will be returned as the <code>Authorization</code> header on the response.</p>\n<p>Some resources do not require any authorization, but can benefit from the additional context (these are marked as being <strong>Public</strong>, but will still accept an <strong>Authorization</strong> header for the request).</p>\n<p>If you are connecting to the Quivers API over a websocket (see below for more details), you can authenticate using the <code>auth/login</code> method, which will authorize all future requests made on that socket connection until either the client has logged out, or the socket has closed.</p>\n<h1 id=\"return-data\">Return Data</h1>\n<p>Resources within the Quivers API will typically return a response structured in the following format, where <code>meta</code> refers to meta-data about the request, and <code>result</code> returns the data returned for this resource.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"meta\": { ... },\n    \"result\": { ... }\n}\n\n</code></pre><p>In the event that an error has occurred, the response will include an <code>error</code> property in place of the usual <code>result</code> property.</p>\n<h1 id=\"paging\">Paging</h1>\n<p>There are resources within the Quivers API which support returning paginated data. If the resource supports paging, you can use query parameters (or <code>get</code> properties on a websocket message) such as <code>currentPage</code> and <code>pageSize</code> to influence how much data you want returned in a single request, and at which position of the paging the data should come from.</p>\n<h1 id=\"caching\">Caching</h1>\n<p>There are resources within the Quivers API which support caching. If you pass a <code>max-age=#s</code> for the <code>Cache-Control</code> header (or use the <code>cache</code> property on a websocket message), the API will attempt to return cached data that is no older than what has been requested, otherwise fresh data will be returned. Resources which support caching have a limit to how old of data can be returned, measured in seconds.</p>\n<h1 id=\"websockets\">Websockets</h1>\n<p>The Quivers API also supports accessing resources via Websockets. To do so, you can create websocket connection against the API's domain (e.g. <code>wss://api.quivers.com</code>). You can then send JSON-formatted messages, which will trigger the Web API to send a response message back. </p>\n<p>The websocket connection can also be used to receive messages from the API in the case of an event or change in data that the websocket previously requested.</p>\n<p>Websocket messages sent to the API should be formatted in the following fashion: -</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"id\": \"A UUID which the client generates; this can be used to identify the response message as belonging to this request.\",\n    \"route\": \"The API resource to access, e.g. 'customerOrders/validate'\",\n    \"get\": { ... HTTP query parameters ... },\n    \"post\": { ... HTTP body content ... },\n    \"authorization\": \"HTTP Authorization header\",\n    \"compression\": \"Accepts a boolean, if TRUE, will return a GZIP response instead of raw JSON.\",\n    \"cache\": \"Accepts an integer of seconds for the max-age of the resource (cached data will be returned if it exists)\"\n}\n</code></pre><p>Once a message has been sent to the server, the server will return a response message to the client. The response message will share the same <code>id</code> as what was originally provided by the client's message. By matching this <code>id</code>, you can pair the response message to your original request message.</p>\n<h1 id=\"official-sdks\">Official SDKs</h1>\n<p>At this time we currently offer official SDKs for JavaScript (in the browser) and node.js.</p>\n<ul>\n<li><a href=\"https://www.npmjs.com/package/@quivers/browser\">Browser JavaScript</a></li>\n<li><a href=\"https://www.npmjs.com/package/@quivers/node\">node.js</a></li>\n</ul>\n<p>We do not currently have SDKs available in other languages. If you have developed your own package for interacting against the Quivers API, please reach out to us at <a href=\"mailto:development@quivers.com\">development@quivers.com</a>, so we can validate it and list it as an official community supported package.</p>\n<h1 id=\"support\">Support</h1>\n<p>For questions on how to interact with the Quivers API, you can reach out to our support team at <a href=\"mailto:support@quivers.com\">support@quivers.com</a>.</p>\n<h1 id=\"terms-of-use\">Terms of Use</h1>\n<ul>\n<li><a href=\"https://quiversprod.blob.core.windows.net/common/Quivers_MSA.pdf\">Master Services Agreement</a></li>\n<li><a href=\"https://quiversprod.blob.core.windows.net/common/PrivacyPolicy.pdf\">Privacy Policy</a></li>\n</ul>\n<h1 id=\"api-reference\">API Reference</h1>\n<ul>\n<li><a href=\"https://apidocs.quiverstest.com\">Test Docs</a></li>\n<li><a href=\"https://apidocs.quiversdemo.com\">Demo Docs</a></li>\n<li>Prod Docs -&gt; Not yet published.</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"},{"content":"Return Data","slug":"return-data"},{"content":"Paging","slug":"paging"},{"content":"Caching","slug":"caching"},{"content":"Websockets","slug":"websockets"},{"content":"Official SDKs","slug":"official-sdks"},{"content":"Support","slug":"support"},{"content":"Terms of Use","slug":"terms-of-use"},{"content":"API Reference","slug":"api-reference"}],"owner":"4128017","collectionId":"1e7d8f81-070d-49a6-bbc6-d070c1a7d1d4","publishedId":"UVeJKQVX","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"2671B3"},"publishDate":"2022-02-07T21:10:00.000Z"},"item":[{"name":"Alerts","item":[{"name":"Alerts - Get Menu Counts","id":"da2d608d-da73-4fc7-9765-64dd17da6ec1","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Alerts/GetMenuCounts?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code>, <code>SalesRep</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Returns a count of how many actionable items there are for a given view in the Admin Panel.</p>\n","urlObject":{"protocol":"https","path":["v1","Alerts","GetMenuCounts"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"da2d608d-da73-4fc7-9765-64dd17da6ec1"}],"id":"a83298c1-560e-4a6c-82b3-54d5baf10b7d","_postman_id":"a83298c1-560e-4a6c-82b3-54d5baf10b7d","description":""},{"name":"Auth","item":[{"name":"Auth - Login","id":"fce81ed3-c599-4c29-bc5a-7e9f40b05c16","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"$any\": [\n        {\n            \"email\": \"isemail_required\"\n        },\n        {\n            \"username\": \"isemail_required\"\n        }\n    ],\n    \"password\": \"string_required\",\n    \"domain\": \"string_optional\"\n}"},"url":"https://api.quiverstest.com/v1/Auth/Login?use2fa=true","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n</ul>\n<p>This is the default login method. If successful, the response will contain a Bearer Token in the Authorization header formatted as <code>Bearer {token}</code>, which can be used to authenticate future requests as this user.</p>\n","urlObject":{"protocol":"https","path":["v1","Auth","Login"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"use2fa","value":"true"}],"variable":[]}},"response":[],"_postman_id":"fce81ed3-c599-4c29-bc5a-7e9f40b05c16"},{"name":"Auth - Confirm Two-Factor Authentication","id":"979a7f23-4043-49d6-ae51-d356652e441b","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"token\": \"string_required\",\n    \"code\": \"string_required\",\n    \"rememberMe\": \"boolean_optional\"\n}"},"url":"https://api.quiverstest.com/v1/Auth/Confirm2FA","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n</ul>\n<p>If the 'Auth/Login' endpoint is called and 2FA is required to proceed, this endpoint can be used to confirm the 2FA code to complete the login process.</p>\n","urlObject":{"protocol":"https","path":["v1","Auth","Confirm2FA"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"979a7f23-4043-49d6-ae51-d356652e441b"}],"id":"3c8f9ffb-d221-45d3-9496-8948d7001365","_postman_id":"3c8f9ffb-d221-45d3-9496-8948d7001365","description":""},{"name":"Bulk Imports","item":[{"name":"Bulk Imports - Search","id":"b3c52542-1896-423f-998d-d8c9133943db","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/BulkImports/Search?business=&searchTerm=&pagesize=20&page=1&sort={}&type=&status=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Search across bulk imports for a given business.</p>\n","urlObject":{"protocol":"https","path":["v1","BulkImports","Search"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"20"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"type","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"status","value":""}],"variable":[]}},"response":[],"_postman_id":"b3c52542-1896-423f-998d-d8c9133943db"},{"name":"Bulk Imports - Get By Id","id":"47b77373-8095-4293-8737-45a854747657","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/BulkImports/GetById?business=&id=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Returns full details about a specific bulk import by id for a given business.</p>\n","urlObject":{"protocol":"https","path":["v1","BulkImports","GetById"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>number_required</p>\n","type":"text/plain"},"key":"id","value":""}],"variable":[]}},"response":[],"_postman_id":"47b77373-8095-4293-8737-45a854747657"},{"name":"Bulk Imports - Search Data","id":"36db7741-4b9f-4933-9900-35877342cca9","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/BulkImports/SearchData?business=&searchTerm=&pagesize=100&page=1&sort={}&bulkImportId=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Search across preview data for a given bulk import.</p>\n","urlObject":{"protocol":"https","path":["v1","BulkImports","SearchData"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"100"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"},{"description":{"content":"<p>number_required</p>\n","type":"text/plain"},"key":"bulkImportId","value":""}],"variable":[]}},"response":[],"_postman_id":"36db7741-4b9f-4933-9900-35877342cca9"},{"name":"Bulk Imports - Search Results","id":"56a3c761-dbfd-4f32-a59c-7ddacabaf2d9","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/BulkImports/SearchResults?business=&searchTerm=&pagesize=100&page=1&sort={}&bulkImportId=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Search across results data for a given bulk import.</p>\n","urlObject":{"protocol":"https","path":["v1","BulkImports","SearchResults"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"100"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"},{"description":{"content":"<p>number_required</p>\n","type":"text/plain"},"key":"bulkImportId","value":""}],"variable":[]}},"response":[],"_postman_id":"56a3c761-dbfd-4f32-a59c-7ddacabaf2d9"},{"name":"Bulk Imports - Get Mapping Options","id":"98123f64-7b95-47f3-9e7c-d7b339ec46cb","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/BulkImports/GetMappingOptions?business=&type=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Returns the available field mappings for a bulk import of a given type.</p>\n","urlObject":{"protocol":"https","path":["v1","BulkImports","GetMappingOptions"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"type","value":""}],"variable":[]}},"response":[],"_postman_id":"98123f64-7b95-47f3-9e7c-d7b339ec46cb"},{"name":"Bulk Imports - Create","id":"144b7d94-527d-4ff7-a547-c7bf5ff3920b","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"fileTitle\": \"string_required\",\n    \"type\": \"string_optional\",\n    \"rawData\": \"string_required\",\n    \"mappings\": \"*_optional\"\n}"},"url":"https://api.quiverstest.com/v1/BulkImports/Create?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Creates a new bulk data import for a given business.</p>\n","urlObject":{"protocol":"https","path":["v1","BulkImports","Create"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"144b7d94-527d-4ff7-a547-c7bf5ff3920b"},{"name":"Bulk Imports - Start","id":"ed4d4292-6a28-4435-a7d4-98238178886b","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/BulkImports/Start?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Starts a pending bulk import operation.</p>\n","urlObject":{"protocol":"https","path":["v1","BulkImports","Start"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"ed4d4292-6a28-4435-a7d4-98238178886b"},{"name":"Bulk Imports - Cancel","id":"862c91b2-b6ea-41f7-8498-1fc61bc36d42","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/BulkImports/Cancel?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Cancels a pending bulk import operation.</p>\n","urlObject":{"protocol":"https","path":["v1","BulkImports","Cancel"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"862c91b2-b6ea-41f7-8498-1fc61bc36d42"}],"id":"42f19532-d56f-48ca-b1b8-193cd2d1c097","_postman_id":"42f19532-d56f-48ca-b1b8-193cd2d1c097","description":""},{"name":"Business Orders","item":[{"name":"Business Orders - Generate","id":"a8b60e2c-b9dc-467c-9917-56f5f7da0b3e","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/BusinessOrders/Generate","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>QuiversAdmin</code></li>\n</ul>\n<p>Generates business orders (order availabilities) under the new process for newly placed orders.</p>\n","urlObject":{"protocol":"https","path":["v1","BusinessOrders","Generate"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a8b60e2c-b9dc-467c-9917-56f5f7da0b3e"},{"name":"Business Orders - Send To Partner","id":"664debd0-3fce-4d18-8109-3ecdf537906c","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"businessOrderRefId\": \"string_required\",\n    \"partnerRefId\": \"string_required\",\n    \"lineItemIds\": [\n        null\n    ],\n    \"hours\": \"number_optional\"\n}"},"url":"https://api.quiverstest.com/v1/BusinessOrders/SendToPartner?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Sends line items in a business order to a fulfiller. Will be assigned automatically if they have sufficient fresh inventory.</p>\n","urlObject":{"protocol":"https","path":["v1","BusinessOrders","SendToPartner"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"664debd0-3fce-4d18-8109-3ecdf537906c"},{"name":"Business Orders - Resend to Partners","id":"9e3d9f5d-0474-47d2-8d2e-eec9c62cfd3d","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"businessOrderRefId\": \"string_required\",\n    \"lineItemIds\": [\n        null\n    ]\n}"},"url":"https://api.quiverstest.com/v1/BusinessOrders/ResendToPartners?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Sends line items a business order back to all partners based on current order routing rules.</p>\n","urlObject":{"protocol":"https","path":["v1","BusinessOrders","ResendToPartners"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"9e3d9f5d-0474-47d2-8d2e-eec9c62cfd3d"}],"id":"29fa6600-7134-48a1-b9c4-48214b6a0509","_postman_id":"29fa6600-7134-48a1-b9c4-48214b6a0509","description":""},{"name":"Businesses","item":[{"name":"Get Business Business by RefId","id":"08526945-f6a3-4d67-a1ed-70fc0b013b73","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Businesses/GetDetails?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Up to 30s</code></li>\n</ul>\n<p>Returns details about a business by its RefId.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","GetDetails"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"08526945-f6a3-4d67-a1ed-70fc0b013b73"},{"name":"Update Business Details","id":"f945461e-0c29-44af-96d0-963cd9a9ae95","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"string_required\",\n    \"legalName\": \"string_optional\",\n    \"federalNumber\": \"string_required\",\n    \"pictureId\": \"number_optional\",\n    \"description\": \"string_optional\",\n    \"website\": \"string_optional\",\n    \"industryIds\": [\n        {\n            \"required\": false\n        }\n    ],\n    \"bccEmail\": \"string_optional\",\n    \"address\": {\n        \"firstname\": \"string_optional\",\n        \"lastname\": \"string_optional\",\n        \"email\": \"string_optional\",\n        \"company\": \"string_optional\",\n        \"phoneNumber\": \"string_optional\",\n        \"line1\": \"string_required\",\n        \"line2\": \"string_optional\",\n        \"city\": \"string_required\",\n        \"postCode\": \"string_optional\",\n        \"primary\": \"boolean_optional\",\n        \"coordinates\": {\n            \"latitude\": \"number_optional\",\n            \"longitude\": \"number_optional\"\n        },\n        \"createdOnUtc\": \"date_optional\",\n        \"updatedOnUtc\": \"date_optional\",\n        \"alwaysCollectLocalTax\": \"boolean_optional\",\n        \"$any\": [\n            {\n                \"countryId\": \"number_required\",\n                \"regionId\": \"number_required\"\n            },\n            {\n                \"country\": \"string_required\",\n                \"region\": \"string_required\"\n            }\n        ]\n    },\n    \"support\": {\n        \"email\": \"string_optional\",\n        \"phoneNumber\": \"string_optional\"\n    },\n    \"settings\": {\n        \"visibleToNetwork\": \"boolean_optional (default: true)\",\n        \"require2FA\": \"boolean_optional\",\n        \"universalCart\": \"boolean_optional (default: true)\",\n        \"autoClaimEnabled\": \"boolean_optional (default: true)\"\n    },\n    \"ffl\": {\n        \"licenseNumber\": \"string_optional\",\n        \"expiryDateUtc\": \"date_optional\",\n        \"lookupResponse\": \"*_optional\"\n    }\n}"},"url":"https://api.quiverstest.com/v1/Businesses/UpdateDetails?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Updates the details of an existing business.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","UpdateDetails"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"f945461e-0c29-44af-96d0-963cd9a9ae95"},{"name":"Update Business Details","id":"641956bc-4565-4569-a1b5-ce5bf3f84cc4","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"require2FA\": \"boolean_required\"\n}"},"url":"https://api.quiverstest.com/v1/Businesses/UpdateRequire2FA?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Updates the details of an existing business.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","UpdateRequire2FA"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"641956bc-4565-4569-a1b5-ce5bf3f84cc4"},{"name":"[Deprecated] Get Retailer Partners","id":"310b91a8-52b1-48ee-bcd6-5c4971b13bf7","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Businesses/SearchBrands?business=&searchTerm=&connectionStatuses=&industries=&hasInventory=&includeHasInventory=&countryId=&stateId=&pagesize=100&page=1","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>[Deprecated - see 'SearchMerchants'] Gets current or potential partners for a retailer</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","SearchBrands"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>undefined_optional</p>\n","type":"text/plain"},"key":"connectionStatuses","value":""},{"description":{"content":"<p>undefined_optional</p>\n","type":"text/plain"},"key":"industries","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"hasInventory","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"includeHasInventory","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"countryId","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"stateId","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"100"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"}],"variable":[]}},"response":[],"_postman_id":"310b91a8-52b1-48ee-bcd6-5c4971b13bf7"},{"name":"Search Merchants","id":"df700e8e-28a3-44c1-bb50-10f5bba56ce0","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Businesses/SearchMerchants?business=&searchTerm=&pagesize=20&page=1&status=&rank=&inventory=0&industry=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Searches across merchant-type businesses on the platform.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","SearchMerchants"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"20"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"status","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"rank","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"inventory","value":"0"},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"industry","value":""}],"variable":[]}},"response":[],"_postman_id":"df700e8e-28a3-44c1-bb50-10f5bba56ce0"},{"name":"[Deprecated] Get Brand Partners","id":"af844df2-5be1-46f4-8d83-a810f24ac96c","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Businesses/SearchRetailers?business=&searchTerm=&connectionStatuses=&claimingPolicyIds=&claimingPolicyId=&claimingRestrictionIds=&dealerLocatorIds=&shipFromStoreEnabled=&inStorePickupEnabled=&curbsidePickupEnabled=&whitegloveEnabled=&dealerLocatorEnabled=&intendedForFulfillment=&intendedForDealerLocator=&industries=&hasInventory=&includeHasInventory=&countryId=&stateId=&claimed=&pagesize=100&page=1","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>[Deprecated - see 'SearchFulfillers'] Gets current or potential partners for a brand</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","SearchRetailers"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>undefined_optional</p>\n","type":"text/plain"},"key":"connectionStatuses","value":""},{"description":{"content":"<p>undefined_optional</p>\n","type":"text/plain"},"key":"claimingPolicyIds","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"claimingPolicyId","value":""},{"description":{"content":"<p>undefined_optional</p>\n","type":"text/plain"},"key":"claimingRestrictionIds","value":""},{"description":{"content":"<p>undefined_optional</p>\n","type":"text/plain"},"key":"dealerLocatorIds","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"shipFromStoreEnabled","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"inStorePickupEnabled","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"curbsidePickupEnabled","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"whitegloveEnabled","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"dealerLocatorEnabled","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"intendedForFulfillment","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"intendedForDealerLocator","value":""},{"description":{"content":"<p>undefined_optional</p>\n","type":"text/plain"},"key":"industries","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"hasInventory","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"includeHasInventory","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"countryId","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"stateId","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"claimed","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"100"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"}],"variable":[]}},"response":[],"_postman_id":"af844df2-5be1-46f4-8d83-a810f24ac96c"},{"name":"Search Fulfillers","id":"3692d116-5c04-4415-bdf1-644d0cade855","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Businesses/SearchFulfillers?business=&searchTerm=&pagesize=100&page=1&sort={}&status=&rank=&fulfillment=&inventory=0&industry=&claimingPolicyId=&claimingRegionId=&dealerLocatorId=&includeUsers=false&fflValid=&location=&unconfigured=&claimed=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code>, <code>SalesRep</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Searches across fulfiller-type businesses on the platform.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","SearchFulfillers"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"100"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"status","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"rank","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"fulfillment","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"inventory","value":"0"},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"industry","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"claimingPolicyId","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"claimingRegionId","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"dealerLocatorId","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"includeUsers","value":"false"},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"fflValid","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"location","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"unconfigured","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"claimed","value":""}],"variable":[]}},"response":[],"_postman_id":"3692d116-5c04-4415-bdf1-644d0cade855"},{"name":"Search Fulfillers for Assignment","id":"82d517a7-4fa6-4269-b2ec-4fb93331a241","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Businesses/SearchFulfillersForAssignment?business=&orderProductVariantIds=&searchTerm=&pagesize=20&page=1&sort={}","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code>, <code>SalesRep</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Searches fulfiller-type businesses that would be eligible for auto-assignment for given PVs.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","SearchFulfillersForAssignment"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>undefined_optional</p>\n","type":"text/plain"},"key":"orderProductVariantIds","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"20"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"}],"variable":[]}},"response":[],"_postman_id":"82d517a7-4fa6-4269-b2ec-4fb93331a241"},{"name":"Search By Store Number","id":"4015f799-4857-4065-ab56-df3ec4fe6f68","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Businesses/SearchByStoreNumber?business=&storeNumber=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Searches across fulfiller-type businesses on the platform.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","SearchByStoreNumber"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"storeNumber","value":""}],"variable":[]}},"response":[],"_postman_id":"4015f799-4857-4065-ab56-df3ec4fe6f68"},{"name":"Businesses - Get Connected Businesses","id":"0f081821-2c18-4391-860c-1f5ffdd07153","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Businesses/GetConnectedBusinesses?business=&claimed=&searchTerm=&pagesize=&page=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code>, <code>SalesRep</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Light-weight fetch for the Name and RefIds of all connected businesses for this business.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","GetConnectedBusinesses"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"claimed","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":""}],"variable":[]}},"response":[],"_postman_id":"0f081821-2c18-4391-860c-1f5ffdd07153"},{"name":"Businesses - Get All","id":"40bc68b9-5cd7-453e-9b6a-115eaabeb878","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Businesses/GetAll?type=&includeUnclaimed=false&includeInactive=true&address=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Light-weight fetch for the Name and RefIds of all businesses for this business. Optionally filtered by type.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","GetAll"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"type","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"includeUnclaimed","value":"false"},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"includeInactive","value":"true"},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"address","value":""}],"variable":[]}},"response":[],"_postman_id":"40bc68b9-5cd7-453e-9b6a-115eaabeb878"},{"name":"Business - Search Merchant Filter Counts","id":"2f4087c5-6150-45b2-9107-94c4c84a499c","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Businesses/SearchMerchantCounts?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Returns the count information for all of the various business search filters, when searching merchants.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","SearchMerchantCounts"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"2f4087c5-6150-45b2-9107-94c4c84a499c"},{"name":"Business - Search Fulfiller Filter Counts","id":"61d86e51-7a20-4769-a570-a66ae821c8f8","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Businesses/SearchFulfillerCounts?business=&status=&rank=&fulfillment=&inventory=0&industry=&claimingPolicyId=&claimingRegionId=&dealerLocatorId=&includeUsers=false&fflValid=&location=&unconfigured=&claimed=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code>, <code>SalesRep</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Returns the count information for all of the various business search filters, when searching fulfillers.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","SearchFulfillerCounts"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"status","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"rank","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"fulfillment","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"inventory","value":"0"},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"industry","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"claimingPolicyId","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"claimingRegionId","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"dealerLocatorId","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"includeUsers","value":"false"},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"fflValid","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"location","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"unconfigured","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"claimed","value":""}],"variable":[]}},"response":[],"_postman_id":"61d86e51-7a20-4769-a570-a66ae821c8f8"},{"name":"Create Business","id":"9365b36a-8a28-4aad-a4fc-f0b21cf8ae22","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"string_required\",\n    \"type\": \"string_required\",\n    \"federalNumber\": \"string_required\",\n    \"pictureId\": \"number_optional\",\n    \"description\": \"string_optional\",\n    \"website\": \"string_optional\",\n    \"industry\": \"string_required\",\n    \"pointOfSaleSystemRefId\": \"string_optional\",\n    \"address\": {\n        \"firstname\": \"string_optional\",\n        \"lastname\": \"string_optional\",\n        \"email\": \"string_optional\",\n        \"company\": \"string_optional\",\n        \"phoneNumber\": \"string_optional\",\n        \"line1\": \"string_required\",\n        \"line2\": \"string_optional\",\n        \"city\": \"string_required\",\n        \"postCode\": \"string_optional\",\n        \"primary\": \"boolean_optional\",\n        \"coordinates\": {\n            \"latitude\": \"number_optional\",\n            \"longitude\": \"number_optional\"\n        },\n        \"createdOnUtc\": \"date_optional\",\n        \"updatedOnUtc\": \"date_optional\",\n        \"alwaysCollectLocalTax\": \"boolean_optional\",\n        \"$any\": [\n            {\n                \"countryId\": \"number_required\",\n                \"regionId\": \"number_required\"\n            },\n            {\n                \"country\": \"string_required\",\n                \"region\": \"string_required\"\n            }\n        ]\n    },\n    \"timezone\": \"string_optional (default: \\\"America/Los_Angeles\\\")\",\n    \"support\": {\n        \"email\": \"string_optional\",\n        \"phoneNumber\": \"string_optional\"\n    },\n    \"ffl\": {\n        \"licenseNumber\": \"string_optional\",\n        \"expiryDateUtc\": \"date_optional\",\n        \"lookupResponse\": \"*_optional\"\n    },\n    \"interestedInSharingOrders\": \"boolean_optional (default: true)\",\n    \"interestedInAmbassadors\": \"boolean_optional (default: true)\",\n    \"interestedInFulfillment\": \"boolean_optional (default: true)\"\n}"},"url":"https://api.quiverstest.com/v1/Businesses/Create?notify=true","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n</ul>\n<p>Creates a new brand or retailer business on the platform.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","Create"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"notify","value":"true"}],"variable":[]}},"response":[],"_postman_id":"9365b36a-8a28-4aad-a4fc-f0b21cf8ae22"},{"name":"Claim Business","id":"2c770279-1f00-4fdd-8e6a-940fbc2f83ca","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"string_required\",\n    \"refId\": \"string_required\",\n    \"federalNumber\": \"string_required\",\n    \"pictureId\": \"number_optional\",\n    \"description\": \"string_optional\",\n    \"website\": \"string_optional\",\n    \"industry\": \"string_required\",\n    \"pointOfSaleSystemRefId\": \"string_optional\",\n    \"address\": {\n        \"firstname\": \"string_optional\",\n        \"lastname\": \"string_optional\",\n        \"email\": \"string_optional\",\n        \"company\": \"string_optional\",\n        \"phoneNumber\": \"string_optional\",\n        \"line1\": \"string_required\",\n        \"line2\": \"string_optional\",\n        \"city\": \"string_required\",\n        \"postCode\": \"string_optional\",\n        \"primary\": \"boolean_optional\",\n        \"coordinates\": {\n            \"latitude\": \"number_optional\",\n            \"longitude\": \"number_optional\"\n        },\n        \"createdOnUtc\": \"date_optional\",\n        \"updatedOnUtc\": \"date_optional\",\n        \"alwaysCollectLocalTax\": \"boolean_optional\",\n        \"$any\": [\n            {\n                \"countryId\": \"number_required\",\n                \"regionId\": \"number_required\"\n            },\n            {\n                \"country\": \"string_required\",\n                \"region\": \"string_required\"\n            }\n        ]\n    },\n    \"support\": {\n        \"email\": \"string_optional\",\n        \"phoneNumber\": \"string_optional\"\n    }\n}"},"url":"https://api.quiverstest.com/v1/Businesses/Claim?notify=true","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n</ul>\n<p>Claims an unclaimed business that already exists on the platform but has no users.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","Claim"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"notify","value":"true"}],"variable":[]}},"response":[],"_postman_id":"2c770279-1f00-4fdd-8e6a-940fbc2f83ca"},{"name":"Add Claimable User Emails","id":"f0b30d02-75dc-4429-8983-9c5ba4a78485","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"fulfillerRefId\": \"string_required\",\n    \"emails\": [\n        null\n    ]\n}"},"url":"https://api.quiverstest.com/v1/Businesses/AddClaimableUserEmails?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Adds the provided emails to the list of emails that can claim this business</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","AddClaimableUserEmails"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"f0b30d02-75dc-4429-8983-9c5ba4a78485"},{"name":"Create Retailers","id":"ccd1e392-80a1-4d09-aa0d-b3eae88e08ca","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"businesses\": [\n        {\n            \"name\": \"string_required\",\n            \"description\": \"string_optional\",\n            \"industry\": \"string_optional\",\n            \"website\": \"string_optional\",\n            \"address\": {\n                \"firstname\": \"string_optional\",\n                \"lastname\": \"string_optional\",\n                \"email\": \"string_optional\",\n                \"company\": \"string_optional\",\n                \"phoneNumber\": \"string_optional\",\n                \"line1\": \"string_required\",\n                \"line2\": \"string_optional\",\n                \"city\": \"string_required\",\n                \"postCode\": \"string_optional\",\n                \"countryId\": \"number_optional\",\n                \"regionId\": \"number_optional\",\n                \"primary\": \"boolean_optional\",\n                \"coordinates\": {\n                    \"latitude\": \"number_optional\",\n                    \"longitude\": \"number_optional\"\n                },\n                \"createdOnUtc\": \"date_optional\",\n                \"updatedOnUtc\": \"date_optional\",\n                \"alwaysCollectLocalTax\": \"boolean_optional\",\n                \"country\": \"string_optional\",\n                \"region\": \"string_optional\"\n            },\n            \"userEmails\": [\n                {\n                    \"required\": true\n                }\n            ],\n            \"intendedForFulfillment\": \"boolean_optional\",\n            \"intendedForDealerLocator\": \"boolean_optional\",\n            \"intendedForAmbassadorPrograms\": \"boolean_optional\",\n            \"storeNumber\": \"string_optional\",\n            \"claimingRegions\": [\n                {\n                    \"required\": false\n                }\n            ],\n            \"claimingPolicies\": [\n                {\n                    \"required\": false\n                }\n            ]\n        }\n    ]\n}"},"url":"https://api.quiverstest.com/v1/Businesses/CreateRetailers?notify=true&business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Bulk creates retailers in the platform as a brand. Retailers will be automatically connected to the brand; duplicates will be ignored.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","CreateRetailers"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"notify","value":"true"},{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"ccd1e392-80a1-4d09-aa0d-b3eae88e08ca"},{"name":"Business Onboarding Tracker","id":"ece42ee3-3dc7-42c2-a92d-609ef91eaad1","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Businesses/OnboardingTracker?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Returns the task list and progress for new business onboarding, for a given business.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","OnboardingTracker"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"ece42ee3-3dc7-42c2-a92d-609ef91eaad1"},{"name":"Update Business Onboarding Task","id":"afb3612b-dfde-4c6a-83a9-a0bbf952e5c9","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"task\": \"string_required\",\n    \"complete\": \"boolean_required\"\n}"},"url":"https://api.quiverstest.com/v1/Businesses/UpdateOnboardingTask?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Updates the status of a business onboarding task to complete or incomplete.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","UpdateOnboardingTask"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"afb3612b-dfde-4c6a-83a9-a0bbf952e5c9"},{"name":"Get Fulfillment Preferences","id":"c383b4b1-d6bd-4021-b69a-b888d0eae3cb","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Businesses/GetFulfillmentPreferences?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code>, <code>SalesRep</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Gets the fulfillment &amp; industry preferences for a retailer.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","GetFulfillmentPreferences"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"c383b4b1-d6bd-4021-b69a-b888d0eae3cb"},{"name":"Set Fulfillment Preferences","id":"1a4e4cf2-c451-4169-a1ae-34c668ec23b8","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"shipFromStore\": \"boolean_required\",\n    \"inStorePickup\": \"boolean_required\",\n    \"curbsidePickup\": \"boolean_required\",\n    \"dealerLocator\": \"boolean_required\",\n    \"shipToStore\": \"boolean_required\",\n    \"whiteglove\": \"boolean_required\",\n    \"reserveOnlineBuyInStore\": \"boolean_required\",\n    \"primaryIndustry\": \"string_optional\",\n    \"industries\": [\n        {\n            \"required\": true\n        }\n    ]\n}"},"url":"https://api.quiverstest.com/v1/Businesses/SetFulfillmentPreferences?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Sets the fulfillment &amp; industry preferences for a retailer during the onboarding experience.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","SetFulfillmentPreferences"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"1a4e4cf2-c451-4169-a1ae-34c668ec23b8"},{"name":"Set Preferred Inventory Management System","id":"dad299d4-60e0-4c4e-aa30-1b1c4217cf32","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"systemName\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/Businesses/SetPreferredInventoryManagementSystem?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Sets the preferred inventory management system for a retailer during the onboarding experience.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","SetPreferredInventoryManagementSystem"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"dad299d4-60e0-4c4e-aa30-1b1c4217cf32"},{"name":"Set Parent Company RefId","id":"a836e375-0a98-47ce-9183-7009fb2a7a52","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"parentCompanyRefId\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/Businesses/SetParentCompanyRefId?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Sets the parent company relationship for two businesses.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","SetParentCompanyRefId"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"a836e375-0a98-47ce-9183-7009fb2a7a52"},{"name":"Complete Introduction Survey","id":"614b90a5-0357-4df7-a01e-0c2f6c3d2337","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Businesses/CompleteIntroductionSurvey?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Marks the introduction survey for a business complete, so it will not be prompted again.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","CompleteIntroductionSurvey"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"614b90a5-0357-4df7-a01e-0c2f6c3d2337"},{"name":"Create Subscription","id":"1db697c0-dd54-4ef9-81ab-fe6d34adfb9f","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Businesses/Subscriptions/Portal?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Returns the details of the subscription for this business.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","Subscriptions","Portal"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"1db697c0-dd54-4ef9-81ab-fe6d34adfb9f"},{"name":"Get Subscription","id":"2a0b57f2-3381-4652-ba5b-61224f96e115","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Businesses/Subscriptions/Get?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Gets the details of a stripe customer's subscription.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","Subscriptions","Get"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"2a0b57f2-3381-4652-ba5b-61224f96e115"},{"name":"Create Subscription","id":"79943610-98e6-4c5c-9469-a003418d993e","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"string_required\",\n    \"source\": \"string_optional\"\n}"},"url":"https://api.quiverstest.com/v1/Businesses/Subscriptions/Create?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n</ul>\n<p>Creates a subscription for a business. This should be called when a business is created (eventually, the subscription creation will be baked into the business creation).</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","Subscriptions","Create"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"79943610-98e6-4c5c-9469-a003418d993e"},{"name":"Update Subscription","id":"675d0d50-dd12-4814-99fb-63908f5679c6","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/Businesses/Subscriptions/Update?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Updates the email address of the subscription associated for this business.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","Subscriptions","Update"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"675d0d50-dd12-4814-99fb-63908f5679c6"},{"name":"Assign Subscription","id":"c2d95277-bbbf-4148-8ea8-a19650fdc27d","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/Businesses/Subscriptions/Assign","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n</ul>\n<p>Assigns a subscription using a stripe checkout session id</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","Subscriptions","Assign"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c2d95277-bbbf-4148-8ea8-a19650fdc27d"},{"name":"Get Operating Hours For A Business","id":"7a3193c8-96c8-46b2-872a-ee0826651656","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Businesses/Operatinghours/Get?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Gets the operating hours for a business.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","Operatinghours","Get"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"7a3193c8-96c8-46b2-872a-ee0826651656"},{"name":"Update Operating Hours","id":"9c29ed2d-f18a-4e90-9d9f-479361530e1c","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"hours\": [\n        {\n            \"dayId\": \"number_required\",\n            \"openingTime\": \"number_required\",\n            \"closingTime\": \"number_required\"\n        }\n    ]\n}"},"url":"https://api.quiverstest.com/v1/Businesses/Operatinghours/Update?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Updates the operating hours for a business.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","Operatinghours","Update"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"9c29ed2d-f18a-4e90-9d9f-479361530e1c"},{"name":"Businesses - Get Cash Reward Ledger","id":"194a3846-f9ff-4d58-aea3-3d6bf190b328","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Businesses/CashRewards/GetLedger?business=&currency=&refresh=true","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Returns the cash reward ledger for a given business.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","CashRewards","GetLedger"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"currency","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"refresh","value":"true"}],"variable":[]}},"response":[],"_postman_id":"194a3846-f9ff-4d58-aea3-3d6bf190b328"},{"name":"Businesses - Get Cash Reward Ledger","id":"98895c03-8055-41ef-b82b-86469e8ece15","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"number_required\",\n    \"currency\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/Businesses/CashRewards/CreateTopup?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Returns the cash reward ledger for a given business.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","CashRewards","CreateTopup"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"98895c03-8055-41ef-b82b-86469e8ece15"},{"name":"Businesses - Cash Rewards - Set Warning Threshold","id":"df27b38f-3591-4fdd-a1de-5638797791c0","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"currency\": \"string_required\",\n    \"amount\": \"number_optional\"\n}"},"url":"https://api.quiverstest.com/v1/Businesses/CashRewards/SetWarningThreshold?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Set the threshold where a business receieve a low cash reward balance warning notification.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","CashRewards","SetWarningThreshold"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"df27b38f-3591-4fdd-a1de-5638797791c0"},{"name":"Businesses - Add Many to Claiming Policy","id":"2854bb68-3d19-49fd-9e6b-b50cc8e85463","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"claimingPolicyId\": \"number_required\",\n    \"retailerRefIds\": [\n        {\n            \"required\": true\n        }\n    ]\n}"},"url":"https://api.quiverstest.com/v1/Businesses/AddManyToClaimingPolicy?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Associate many Retailers to a Brand's existing Claiming Policy.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","AddManyToClaimingPolicy"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"2854bb68-3d19-49fd-9e6b-b50cc8e85463"},{"name":"Businesses - Add All to Claiming Policy","id":"2653de19-7f0c-4f05-9e29-2d8c8d707403","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"claimingPolicyId\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/Businesses/AddAllToClaimingPolicy?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Associate all eligible Retailers to a Brand's existing Claiming Policy.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","AddAllToClaimingPolicy"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"2653de19-7f0c-4f05-9e29-2d8c8d707403"},{"name":"Businesses - Update Always Collect Local Tax","id":"bb744f10-a151-49ba-b80c-68fa492d5478","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Businesses/UpdateAlwaysCollectLocalTax?business=&alwaysCollectLocalTax=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Set all nexus addresses to always collect local tax or not for their state</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","UpdateAlwaysCollectLocalTax"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>boolean_required</p>\n","type":"text/plain"},"key":"alwaysCollectLocalTax","value":""}],"variable":[]}},"response":[],"_postman_id":"bb744f10-a151-49ba-b80c-68fa492d5478"},{"name":"Businesses - Disable Invite Marketing Emails","id":"d99e8567-ab86-4516-9d2e-0f5c0c2831bd","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Businesses/DisableInviteMarketingEmails?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n</ul>\n<p>Disables the new order notification that goes out to an unclaimed business</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","DisableInviteMarketingEmails"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"d99e8567-ab86-4516-9d2e-0f5c0c2831bd"},{"name":"Businesses - Invite Fulfillers","id":"3874185c-d03e-4590-bdb7-112cac14d577","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"toEmails\": [\n        {\n            \"required\": false\n        }\n    ],\n    \"message\": \"string_optional\",\n    \"isPreviewOnly\": \"boolean_optional\"\n}"},"url":"https://api.quiverstest.com/v1/Businesses/InviteFulfillers?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Invite one or more email addresses to become Fulfiller(s) on Quivers.</p>\n","urlObject":{"protocol":"https","path":["v1","Businesses","InviteFulfillers"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"3874185c-d03e-4590-bdb7-112cac14d577"}],"id":"bdb34b9f-a3e7-487a-bb15-e895a52bd372","_postman_id":"bdb34b9f-a3e7-487a-bb15-e895a52bd372","description":""},{"name":"Carts","item":[{"name":"Carts - Assign User","id":"229fdbe1-7d47-458c-9881-0af903666d5f","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"token\": \"string_required\",\n    \"email\": \"string_required\",\n    \"firstname\": \"string_required\",\n    \"lastname\": \"string_required\",\n    \"domain\": \"string_optional\",\n    \"storefrontId\": \"string_optional\"\n}"},"url":"https://api.quiverstest.com/v1/Carts/AssignUser","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n</ul>\n<p>Creates or assigns a user to a cart based on their email address.</p>\n","urlObject":{"protocol":"https","path":["v1","Carts","AssignUser"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"229fdbe1-7d47-458c-9881-0af903666d5f"}],"id":"f290d2c8-3ab5-44a9-97a5-f2803c3e8027","_postman_id":"f290d2c8-3ab5-44a9-97a5-f2803c3e8027","description":""},{"name":"Catalog","item":[{"name":"Catalog - Search","id":"1d9de36b-8910-4051-8a6d-aae16ec45a9a","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Catalog/Search?business=&searchTerm=&pagesize=20&page=1&sort={}&productCollectionId=&folderId=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Searches across product catalog items belonging to a business.</p>\n","urlObject":{"protocol":"https","path":["v1","Catalog","Search"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"20"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"productCollectionId","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"folderId","value":""}],"variable":[]}},"response":[],"_postman_id":"1d9de36b-8910-4051-8a6d-aae16ec45a9a"},{"name":"Catalog - Get Tree","id":"30995899-ba7f-449e-80e9-dc8d8cad6273","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Catalog/GetTree?business=&type=&mapId=&excludeProducts=false","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Gets a complete catalog tree of all folders and products for this merchant.</p>\n","urlObject":{"protocol":"https","path":["v1","Catalog","GetTree"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"type","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"mapId","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"excludeProducts","value":"false"}],"variable":[]}},"response":[],"_postman_id":"30995899-ba7f-449e-80e9-dc8d8cad6273"},{"name":"Catalog - Sync Prices","id":"e5abbcb7-0d1b-4043-aef5-c1e6b5fb94cf","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"prices\": [\n        {\n            \"row\": \"number_optional\",\n            \"searchTerm\": \"string_required\",\n            \"priceTypeId\": \"number_required\",\n            \"price\": \"number_required\",\n            \"specialPrice\": \"number_optional\",\n            \"specialPriceStartDateUtc\": \"date_optional\",\n            \"specialPriceEndDateUtc\": \"date_optional\"\n        }\n    ]\n}"},"url":"https://api.quiverstest.com/v1/Catalog/SyncPrices?business=&strict=false","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n</ul>\n<p>Accepts a bulk amount of prices to sync for a given seller's catalog.</p>\n","urlObject":{"protocol":"https","path":["v1","Catalog","SyncPrices"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"strict","value":"false"}],"variable":[]}},"response":[],"_postman_id":"e5abbcb7-0d1b-4043-aef5-c1e6b5fb94cf"}],"id":"c22f8759-3f01-46f4-89cf-7e418aa22c00","_postman_id":"c22f8759-3f01-46f4-89cf-7e418aa22c00","description":""},{"name":"Claiming Policies","item":[{"name":"Search Claiming Policies","id":"4b32d9cd-ace6-4577-b415-f706f3327040","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/claimingPolicies/search?business=&searchTerm=&pagesize=20&page=1&sort={}","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Searches across claiming policies belonging to your business.</p>\n","urlObject":{"protocol":"https","path":["v1","claimingPolicies","search"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"20"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"}],"variable":[]}},"response":[],"_postman_id":"4b32d9cd-ace6-4577-b415-f706f3327040"},{"name":"Get Claiming Policy","id":"46ddb4eb-8075-45cd-8898-b059737741ea","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/claimingPolicies/getById?business=&legacyId=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Returns a single claiming policy by id.</p>\n","urlObject":{"protocol":"https","path":["v1","claimingPolicies","getById"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"legacyId","value":""}],"variable":[]}},"response":[],"_postman_id":"46ddb4eb-8075-45cd-8898-b059737741ea"},{"name":"Create Claiming Policy","id":"190b8a78-c0dc-467a-8982-63a100de941f","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"string_required\",\n    \"description\": \"string_optional\",\n    \"marketplaceIds\": [\n        null\n    ],\n    \"productIds\": [\n        null\n    ],\n    \"commissions\": [\n        {\n            \"name\": \"string_required\",\n            \"typeId\": \"number_required\",\n            \"rate\": \"number_required\",\n            \"flatFee\": \"number_optional\"\n        }\n    ],\n    \"flags\": {\n        \"favored\": \"boolean_optional\",\n        \"expedited\": \"boolean_optional\",\n        \"anySource\": \"boolean_optional\"\n    }\n}"},"url":"https://api.quiverstest.com/v1/claimingPolicies/create?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Creates a new claiming policy for your business.</p>\n","urlObject":{"protocol":"https","path":["v1","claimingPolicies","create"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"190b8a78-c0dc-467a-8982-63a100de941f"},{"name":"Update Claiming Policy","id":"7ada7598-90d3-4e94-a419-1c3424ed62a3","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"string_required\",\n    \"description\": \"string_optional\",\n    \"marketplaceIds\": [\n        null\n    ],\n    \"productIds\": [\n        null\n    ],\n    \"commissions\": [\n        {\n            \"name\": \"string_required\",\n            \"typeId\": \"number_required\",\n            \"rate\": \"number_required\",\n            \"flatFee\": \"number_optional\"\n        }\n    ],\n    \"flags\": {\n        \"favored\": \"boolean_optional\",\n        \"expedited\": \"boolean_optional\",\n        \"anySource\": \"boolean_optional\"\n    },\n    \"legacyId\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/claimingPolicies/update?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Updates an existing claiming policy for your business.</p>\n","urlObject":{"protocol":"https","path":["v1","claimingPolicies","update"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"7ada7598-90d3-4e94-a419-1c3424ed62a3"},{"name":"Delete Claiming Policy","id":"8ed07775-ab77-47d2-b26d-f48058e842bb","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"legacyId\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/claimingPolicies/delete?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Deletes a specified claiming policy belonging to your business. Any retailers who have this claiming policy assigned will no longer have this claiming policy.</p>\n","urlObject":{"protocol":"https","path":["v1","claimingPolicies","delete"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"8ed07775-ab77-47d2-b26d-f48058e842bb"}],"id":"cd4bfcdf-969e-4695-9459-66d9a0edb72f","_postman_id":"cd4bfcdf-969e-4695-9459-66d9a0edb72f","description":""},{"name":"Claiming Regions","item":[{"name":"Search Claiming Regions (Light)","id":"f21cec2c-54f9-416a-84e5-a0bbe142f498","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/ClaimingRegions/SearchLight?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Returns basic information about which claiming regions belong to a business.</p>\n","urlObject":{"protocol":"https","path":["v1","ClaimingRegions","SearchLight"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"f21cec2c-54f9-416a-84e5-a0bbe142f498"},{"name":"Create Claiming Region","id":"0295102a-db83-4de6-96e1-75427ae03667","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"string_required\",\n    \"countryIds\": [\n        {\n            \"required\": false\n        }\n    ],\n    \"stateIds\": [\n        {\n            \"required\": false\n        }\n    ],\n    \"counties\": [\n        {\n            \"name\": \"string_optional\",\n            \"color\": \"string_optional\"\n        }\n    ],\n    \"zipcodes\": [\n        {\n            \"code\": \"string_optional\",\n            \"color\": \"string_optional\"\n        }\n    ],\n    \"geoFences\": [\n        {\n            \"name\": \"string_required\",\n            \"geoCoordinates\": [\n                {\n                    \"lat\": \"number_optional\",\n                    \"lng\": \"number_optional\",\n                    \"displayOrder\": \"number_optional\"\n                }\n            ],\n            \"typeId\": \"number_required\",\n            \"color\": \"string_optional\"\n        }\n    ],\n    \"geoType\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/ClaimingRegions/Create?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Creates a new claiming region</p>\n","urlObject":{"protocol":"https","path":["v1","ClaimingRegions","Create"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"0295102a-db83-4de6-96e1-75427ae03667"},{"name":"Update Claiming Region","id":"f2e8064a-2cb5-4e39-a3e8-1a18222a5b96","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\",\n    \"name\": \"string_required\",\n    \"countryIds\": [\n        {\n            \"required\": false\n        }\n    ],\n    \"stateIds\": [\n        {\n            \"required\": false\n        }\n    ],\n    \"counties\": [\n        {\n            \"name\": \"string_optional\",\n            \"color\": \"string_optional\"\n        }\n    ],\n    \"zipcodes\": [\n        {\n            \"code\": \"string_optional\",\n            \"color\": \"string_optional\"\n        }\n    ],\n    \"geoFences\": [\n        {\n            \"id\": \"number_optional\",\n            \"name\": \"string_required\",\n            \"geoCoordinates\": [\n                {\n                    \"lat\": \"number_optional\",\n                    \"lng\": \"number_optional\",\n                    \"displayOrder\": \"number_optional\"\n                }\n            ],\n            \"typeId\": \"number_required\",\n            \"color\": \"string_optional\"\n        }\n    ],\n    \"geoType\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/ClaimingRegions/Update?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Updates an existing claiming region</p>\n","urlObject":{"protocol":"https","path":["v1","ClaimingRegions","Update"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"f2e8064a-2cb5-4e39-a3e8-1a18222a5b96"},{"name":"Delete Claiming Region","id":"66e5f93c-204e-4f88-ba31-c1aec5d41552","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/ClaimingRegions/Delete?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Delete a claiming region</p>\n","urlObject":{"protocol":"https","path":["v1","ClaimingRegions","Delete"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"66e5f93c-204e-4f88-ba31-c1aec5d41552"}],"id":"c7a69a61-c7a5-4956-84f7-4e32b5a421e9","_postman_id":"c7a69a61-c7a5-4956-84f7-4e32b5a421e9","description":""},{"name":"Cloud Files","item":[{"name":"CloudFiles - Get by ID","id":"5a283ab5-b47d-492c-a8b5-155fa2c5e508","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/CloudFiles/GetById?business=&id=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Get information regarding a could file by its ID.</p>\n","urlObject":{"protocol":"https","path":["v1","CloudFiles","GetById"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"id","value":""}],"variable":[]}},"response":[],"_postman_id":"5a283ab5-b47d-492c-a8b5-155fa2c5e508"}],"id":"8f0072b8-e7f3-4ef5-aae9-43faaf1e24a3","_postman_id":"8f0072b8-e7f3-4ef5-aae9-43faaf1e24a3","description":""},{"name":"Connections","item":[{"name":"Request Business Connection","id":"56d84501-edb2-4754-b559-bfedd56e180f","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"toBusinessRefId\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/Connections/Request?business=&notify=true","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Sends a request to another business to connect.</p>\n","urlObject":{"protocol":"https","path":["v1","Connections","Request"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"notify","value":"true"}],"variable":[]}},"response":[],"_postman_id":"56d84501-edb2-4754-b559-bfedd56e180f"},{"name":"Connections - Count By Status","id":"52144b23-86e3-457e-bb46-c18b94b50305","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Connections/CountByStatus?business=&claimingPolicyIds=&countryId=&stateId=&intendedForFulfillment=&intendedForDealerLocator=&searchTerm=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Get a count of each type of connection by status for this business</p>\n","urlObject":{"protocol":"https","path":["v1","Connections","CountByStatus"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>undefined_optional</p>\n","type":"text/plain"},"key":"claimingPolicyIds","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"countryId","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"stateId","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"intendedForFulfillment","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"intendedForDealerLocator","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""}],"variable":[]}},"response":[],"_postman_id":"52144b23-86e3-457e-bb46-c18b94b50305"},{"name":"Connections - Set Store Number","id":"d7dcf0d7-e7e1-4828-96d4-653f605ed8d2","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"businessRefId\": \"string_required\",\n    \"storeNumber\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/Connections/SetStoreNumber?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>SalesRep</code></li>\n</ul>\n<p>Allows a brand to set a store number for a retailer they are connected with.</p>\n","urlObject":{"protocol":"https","path":["v1","Connections","SetStoreNumber"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"d7dcf0d7-e7e1-4828-96d4-653f605ed8d2"},{"name":"Connections - Set Wholesale Storefront","id":"831a224a-dff2-4ecb-9fe1-fc385b8e0d74","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"businessRefId\": \"string_required\",\n    \"storefrontId\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/Connections/SetWholesaleStorefront?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Allows a brand to set a wholesale storefront for a retailer they are connected with.</p>\n","urlObject":{"protocol":"https","path":["v1","Connections","SetWholesaleStorefront"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"831a224a-dff2-4ecb-9fe1-fc385b8e0d74"},{"name":"Connections - Bulk Connection Request","id":"d347a502-276e-4ade-b234-0bf0bd31f183","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Connections/RequestAll?business=&notify=true","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Bulk requests a connection to all available brands as a retailer, or all available retailers as a brand.</p>\n","urlObject":{"protocol":"https","path":["v1","Connections","RequestAll"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"notify","value":"true"}],"variable":[]}},"response":[],"_postman_id":"d347a502-276e-4ade-b234-0bf0bd31f183"},{"name":"Connections - Bulk Edit","id":"e36fd6c3-a8e7-412d-bcd6-533bf3c78ab6","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"selectedFulfillerRefIds\": [\n        null\n    ],\n    \"claimingPolicies\": \"*_optional\",\n    \"claimingRegions\": \"*_optional\",\n    \"dealerLocators\": \"*_optional\"\n}"},"url":"https://api.quiverstest.com/v1/Connections/BulkEdit?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Bulk edit connection claiming policies, claiming region, and dealer locators as a brand.</p>\n","urlObject":{"protocol":"https","path":["v1","Connections","BulkEdit"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"e36fd6c3-a8e7-412d-bcd6-533bf3c78ab6"}],"id":"1f6e8132-ad8d-48de-ad96-ec8dc910fb9a","_postman_id":"1f6e8132-ad8d-48de-ad96-ec8dc910fb9a","description":""},{"name":"Consumer Groups","item":[{"name":"Consumer Groups - Search","id":"03361c07-77c4-47f8-a133-85307ab12e29","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/ConsumerGroups/Search?business=&searchTerm=&pagesize=20&page=1&sort={}&archived=&consumerId=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Searches across all consumer groups belonding to a business.</p>\n","urlObject":{"protocol":"https","path":["v1","ConsumerGroups","Search"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"20"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"archived","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"consumerId","value":""}],"variable":[]}},"response":[],"_postman_id":"03361c07-77c4-47f8-a133-85307ab12e29"},{"name":"Consumer Groups - Search Light","id":"7a2806cd-b082-4b43-ab93-26e9747d262b","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/ConsumerGroups/SearchLight?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Searches across all consumer groups belonding to a business, this method returns minimal detail so it is possible to fetcha summary of all consumer groups quickly.</p>\n","urlObject":{"protocol":"https","path":["v1","ConsumerGroups","SearchLight"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"7a2806cd-b082-4b43-ab93-26e9747d262b"},{"name":"Consumer Groups - Get By Id","id":"d919205b-c1a3-481c-a09a-54f887816883","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/ConsumerGroups/GetById?business=&id=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Returns more detailed information about a specific consumer group belonging to a business.</p>\n","urlObject":{"protocol":"https","path":["v1","ConsumerGroups","GetById"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"id","value":""}],"variable":[]}},"response":[],"_postman_id":"d919205b-c1a3-481c-a09a-54f887816883"},{"name":"Consumer Groups - Get Classifications for Business","id":"f60db38c-d8bf-47aa-8e7c-4e52df0d8cb0","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/ConsumerGroups/Classifications?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Returns all the Consumer Groups Classifications for a given Business.</p>\n","urlObject":{"protocol":"https","path":["v1","ConsumerGroups","Classifications"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"f60db38c-d8bf-47aa-8e7c-4e52df0d8cb0"},{"name":"Consumer Groups - Create","id":"6a71cb3b-d2f8-40c4-9e9a-6c0c065caf7f","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"string_required\",\n    \"classification\": \"string_optional\",\n    \"description\": \"string_optional\",\n    \"pictureId\": \"number_optional\"\n}"},"url":"https://api.quiverstest.com/v1/ConsumerGroups/Create?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Creates a new consumer group for a business.</p>\n","urlObject":{"protocol":"https","path":["v1","ConsumerGroups","Create"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"6a71cb3b-d2f8-40c4-9e9a-6c0c065caf7f"},{"name":"Consumer Groups - Update","id":"aa90ca5c-d297-4387-9d12-a39b6585bb39","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\",\n    \"name\": \"string_required\",\n    \"classification\": \"string_optional\",\n    \"description\": \"string_optional\",\n    \"pictureId\": \"number_optional\",\n    \"priceTypes\": \"*_optional (default: [])\"\n}"},"url":"https://api.quiverstest.com/v1/ConsumerGroups/Update?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Updates details about an existing consumer group for a business.</p>\n","urlObject":{"protocol":"https","path":["v1","ConsumerGroups","Update"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"aa90ca5c-d297-4387-9d12-a39b6585bb39"},{"name":"Consumer Groups - Add Consumers","id":"9231df2c-8579-4427-9878-0fc49227bd5f","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\",\n    \"consumerIds\": [\n        null\n    ]\n}"},"url":"https://api.quiverstest.com/v1/ConsumerGroups/AddConsumers?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Adds pre-existing consumers to an existing consumer group.</p>\n","urlObject":{"protocol":"https","path":["v1","ConsumerGroups","AddConsumers"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"9231df2c-8579-4427-9878-0fc49227bd5f"},{"name":"Consumer Groups - Add All Consumers","id":"0697e40a-8628-498a-933b-9a459e619937","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/ConsumerGroups/AddAllConsumers?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Associates all existing consumers to this consumer group.</p>\n","urlObject":{"protocol":"https","path":["v1","ConsumerGroups","AddAllConsumers"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"0697e40a-8628-498a-933b-9a459e619937"},{"name":"Consumer Groups - Remove Consumers","id":"5f4c4769-8b9c-4a68-a3a1-8af4e48e1426","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\",\n    \"consumerIds\": [\n        null\n    ]\n}"},"url":"https://api.quiverstest.com/v1/ConsumerGroups/RemoveConsumers?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>SalesRep</code></li>\n</ul>\n<p>Removes pre-existing consumers from an existing consumer group.</p>\n","urlObject":{"protocol":"https","path":["v1","ConsumerGroups","RemoveConsumers"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"5f4c4769-8b9c-4a68-a3a1-8af4e48e1426"},{"name":"Consumer Groups - Remove All Consumers","id":"431f876c-6dca-4fbf-9e95-7cc96c2a90bf","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/ConsumerGroups/RemoveAllConsumers?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Removes all consumers from being associated with this consumer group.</p>\n","urlObject":{"protocol":"https","path":["v1","ConsumerGroups","RemoveAllConsumers"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"431f876c-6dca-4fbf-9e95-7cc96c2a90bf"},{"name":"Consumer Groups - Clone","id":"5dcaa8e9-cbdd-45bc-b258-c0d14a64893f","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\",\n    \"name\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/ConsumerGroups/Clone?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Clones an existing consumer group. The cloned consumer group will have all the same consumers associated to it.</p>\n","urlObject":{"protocol":"https","path":["v1","ConsumerGroups","Clone"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"5dcaa8e9-cbdd-45bc-b258-c0d14a64893f"},{"name":"Consumer Groups - Archive","id":"452416cf-1439-4ef8-8b02-3e4c47896e8e","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/ConsumerGroups/Archive?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Archives a consumer group. Archived consumer groups are removed from any associated storefronts.</p>\n","urlObject":{"protocol":"https","path":["v1","ConsumerGroups","Archive"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"452416cf-1439-4ef8-8b02-3e4c47896e8e"},{"name":"Consumer Groups - Unarchive","id":"d8e23c1c-9489-461a-ba7a-d03d1734b87e","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/ConsumerGroups/Unarchive?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Reverses the archival of a consumer group. This will not re-instate any previously associated storefronts.</p>\n","urlObject":{"protocol":"https","path":["v1","ConsumerGroups","Unarchive"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"d8e23c1c-9489-461a-ba7a-d03d1734b87e"},{"name":"Consumer Groups - Delete","id":"d6d8cb42-5cdd-4fcb-924d-03898a453888","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/ConsumerGroups/Delete?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Permanently deletes a consumer group from a business. Only archived consumer groups can be deleted.</p>\n","urlObject":{"protocol":"https","path":["v1","ConsumerGroups","Delete"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"d6d8cb42-5cdd-4fcb-924d-03898a453888"},{"name":"Consumer Groups - Archive All","id":"64dc0c0e-afb8-4a94-8868-2b0cb65e746e","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/ConsumerGroups/ArchiveAll?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Archives all Consumer Groups for a Business. Will delete any Storefront associations.</p>\n","urlObject":{"protocol":"https","path":["v1","ConsumerGroups","ArchiveAll"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"64dc0c0e-afb8-4a94-8868-2b0cb65e746e"},{"name":"Consumer Groups - Unarchive All","id":"49cf6721-9930-4d32-a931-3970b0c05f6e","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/ConsumerGroups/UnarchiveAll?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Unarchives all Consumer Groups for a Business.</p>\n","urlObject":{"protocol":"https","path":["v1","ConsumerGroups","UnarchiveAll"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"49cf6721-9930-4d32-a931-3970b0c05f6e"}],"id":"54b3d561-265c-4937-a9ba-c9c021b5f9d9","_postman_id":"54b3d561-265c-4937-a9ba-c9c021b5f9d9","description":""},{"name":"Consumers","item":[{"name":"Consumers - Search","id":"4fcccaa3-a3e7-497e-90d0-d2ae271095d5","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Consumers/Search?business=&searchTerm=&pagesize=20&page=1&sort={}&hasConsumerGroups=&consumerGroupId=&marketable=&feedbackScoreOperator=&feedbackScoreValue=&salesVolumeOperator=&salesVolumeValue=&createdDateOperator=&createdDateValue=&updatedDateOperator=&updatedDateValue=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Searches across all consumers belonging to a business.</p>\n","urlObject":{"protocol":"https","path":["v1","Consumers","Search"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"20"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"hasConsumerGroups","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"consumerGroupId","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"marketable","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"feedbackScoreOperator","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"feedbackScoreValue","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"salesVolumeOperator","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"salesVolumeValue","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"createdDateOperator","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"createdDateValue","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"updatedDateOperator","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"updatedDateValue","value":""}],"variable":[]}},"response":[],"_postman_id":"4fcccaa3-a3e7-497e-90d0-d2ae271095d5"},{"name":"Consumers - Search Light","id":"59b787ad-8691-4d9c-acaa-7efd5f9c1bc8","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Consumers/SearchLight?business=&consumerGroupId=&pagesize=100&page=1&sort={}","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>lightweight search across all consumers belonging to a business. Use Consumers Search for more data.</p>\n","urlObject":{"protocol":"https","path":["v1","Consumers","SearchLight"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"consumerGroupId","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"100"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"}],"variable":[]}},"response":[],"_postman_id":"59b787ad-8691-4d9c-acaa-7efd5f9c1bc8"},{"name":"Consumers - Stats","id":"3652fea8-de5a-4926-9128-399345a077f9","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Consumers/Stats?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Up to 300s</code></li>\n</ul>\n<p>Returns high-level statistic counts regarding consumers for a business.</p>\n","urlObject":{"protocol":"https","path":["v1","Consumers","Stats"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"3652fea8-de5a-4926-9128-399345a077f9"},{"name":"Consumers - Get By Id","id":"d8cc36a7-9f6d-45ea-aac4-06636fed08f7","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Consumers/GetById?business=&id=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Returns more detailed information about a specific consumer belonging to a business.</p>\n","urlObject":{"protocol":"https","path":["v1","Consumers","GetById"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>number_required</p>\n","type":"text/plain"},"key":"id","value":""}],"variable":[]}},"response":[],"_postman_id":"d8cc36a7-9f6d-45ea-aac4-06636fed08f7"},{"name":"Consumers - Create","id":"729ea028-b579-4f90-952c-000297451556","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"firstname\": \"string_required\",\n    \"lastname\": \"string_required\",\n    \"email\": \"string_required\",\n    \"phoneNumber\": \"string_optional\",\n    \"pictureId\": \"number_optional\",\n    \"marketable\": \"boolean_optional (default: true)\",\n    \"consumerGroupIds\": [\n        null\n    ]\n}"},"url":"https://api.quiverstest.com/v1/Consumers/Create?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Creates a new consumer for a business.</p>\n","urlObject":{"protocol":"https","path":["v1","Consumers","Create"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"729ea028-b579-4f90-952c-000297451556"},{"name":"Consumers - Update","id":"3fef2280-12f9-4be3-9899-62fe13a8838a","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\",\n    \"firstname\": \"string_required\",\n    \"lastname\": \"string_required\",\n    \"email\": \"string_required\",\n    \"phoneNumber\": \"string_optional\",\n    \"pictureId\": \"number_optional\",\n    \"marketable\": \"boolean_optional\"\n}"},"url":"https://api.quiverstest.com/v1/Consumers/Update?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Updates details about an existing consumer for a business.</p>\n","urlObject":{"protocol":"https","path":["v1","Consumers","Update"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"3fef2280-12f9-4be3-9899-62fe13a8838a"},{"name":"Consumers - Delete","id":"4921a92a-90d1-49b3-b177-84495d5e358e","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/Consumers/Delete?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Deletes a consumer from a business.</p>\n","urlObject":{"protocol":"https","path":["v1","Consumers","Delete"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"4921a92a-90d1-49b3-b177-84495d5e358e"},{"name":"Consumers - Add Note","id":"9c7bf75e-2028-4048-aa10-de878024c202","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"note\": \"string_required\",\n    \"consumerId\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/Consumers/AddNote?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Creates a note on the profile of a consumer as the currently authenticated user.</p>\n","urlObject":{"protocol":"https","path":["v1","Consumers","AddNote"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"9c7bf75e-2028-4048-aa10-de878024c202"},{"name":"Consumers - Edit Note","id":"266e07ea-2679-47d8-9b3f-424ee35d7cb1","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\",\n    \"note\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/Consumers/EditNote?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Edits a note you have previously created for a consumer's profile. Can only be perfomed by the user who created the note.</p>\n","urlObject":{"protocol":"https","path":["v1","Consumers","EditNote"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"266e07ea-2679-47d8-9b3f-424ee35d7cb1"},{"name":"Consumers - Remove Note","id":"ea4f78bc-0ca3-4a53-9144-f803af834398","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/Consumers/RemoveNote?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Removes a previously created note from a consumer's profile.</p>\n","urlObject":{"protocol":"https","path":["v1","Consumers","RemoveNote"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"ea4f78bc-0ca3-4a53-9144-f803af834398"},{"name":"Consumers - Import","id":"879b5a9f-5b46-4858-88ac-f0140eaa57f4","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"consumers\": [\n        {\n            \"firstname\": \"string_required\",\n            \"lastname\": \"string_required\",\n            \"email\": \"string_required\",\n            \"phoneNumber\": \"string_optional\",\n            \"marketable\": \"boolean_optional\",\n            \"consumerGroupIds\": [\n                null\n            ]\n        }\n    ]\n}"},"url":"https://api.quiverstest.com/v1/Consumers/Import?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Imports a list of many consumers to create for a business, and which consumer groups they should belong to. Will not create duplicate consumers. Returns the number of successful &amp; failed results.</p>\n","urlObject":{"protocol":"https","path":["v1","Consumers","Import"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"879b5a9f-5b46-4858-88ac-f0140eaa57f4"}],"id":"cce650ed-794a-4e4d-a40e-ac2a42c2ef57","_postman_id":"cce650ed-794a-4e4d-a40e-ac2a42c2ef57","description":""},{"name":"Countries","item":[{"name":"Get Countries","id":"1e80245c-0997-440b-ac75-09a87dd0b95d","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/countries","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Up to 86400s</code></li>\n</ul>\n<p>Returns a list of all countries and their state/province regions supported within Quivers.</p>\n","urlObject":{"protocol":"https","path":["v1","countries"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"1e80245c-0997-440b-ac75-09a87dd0b95d"}],"id":"f0061913-5944-4c06-9444-cfaa9b6b2988","_postman_id":"f0061913-5944-4c06-9444-cfaa9b6b2988","description":""},{"name":"Cultures","item":[{"name":"Get Cultures","id":"3b62f25d-791e-40dd-8283-633fb0b63535","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/cultures","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Up to 86400s</code></li>\n</ul>\n<p>Returns a list of all cultures supported within Quivers.</p>\n","urlObject":{"protocol":"https","path":["v1","cultures"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3b62f25d-791e-40dd-8283-633fb0b63535"}],"id":"a9307a3b-03b7-4a59-b6bb-399ddf28529d","_postman_id":"a9307a3b-03b7-4a59-b6bb-399ddf28529d","description":""},{"name":"Currencies","item":[{"name":"Get Currencies","id":"0ba31acc-bb8d-4a3c-af51-a6ff4a7b2218","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/currencies","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Up to 86400s</code></li>\n</ul>\n<p>Returns a list of all currencies supported within Quivers.</p>\n","urlObject":{"protocol":"https","path":["v1","currencies"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0ba31acc-bb8d-4a3c-af51-a6ff4a7b2218"}],"id":"141baeda-018b-4c12-9205-fedc5f082fad","_postman_id":"141baeda-018b-4c12-9205-fedc5f082fad","description":""},{"name":"Customer Orders","item":[{"name":"Get Customer Order Timeline","id":"1bf3deb6-0750-4ff7-856e-62ca76f34f96","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/CustomerOrders/Timeline?business=&orderRefId=&businessOrderRefId=&filterId=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Up to 60s</code></li>\n</ul>\n<p>Returns a timeline of events, notes, etc. for a given order.</p>\n","urlObject":{"protocol":"https","path":["v1","CustomerOrders","Timeline"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"orderRefId","value":""},{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"businessOrderRefId","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"filterId","value":""}],"variable":[]}},"response":[],"_postman_id":"1bf3deb6-0750-4ff7-856e-62ca76f34f96"},{"name":"Get Customer Order Item Routing Timeline","id":"0e538fdb-f945-4c07-84ba-65e7f9a45a0f","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/CustomerOrders/OrderItemRoutingTimeline?business=&orderProductVariantId=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Up to 60s</code></li>\n</ul>\n<p>Returns the timeline for how we did order routing for a given order item.</p>\n","urlObject":{"protocol":"https","path":["v1","CustomerOrders","OrderItemRoutingTimeline"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>number_required</p>\n","type":"text/plain"},"key":"orderProductVariantId","value":""}],"variable":[]}},"response":[],"_postman_id":"0e538fdb-f945-4c07-84ba-65e7f9a45a0f"},{"name":"Get Customer Order By Id","id":"97067162-bc81-4904-8896-40045c8630b3","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/CustomerOrders/ById?business=&orderId=&includeOrderProductVariants=&includeReturnRequests=&includeShipments=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Up to 60s</code></li>\n</ul>\n<p>Returns basic information for an order</p>\n","urlObject":{"protocol":"https","path":["v1","CustomerOrders","ById"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>number_required</p>\n","type":"text/plain"},"key":"orderId","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"includeOrderProductVariants","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"includeReturnRequests","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"includeShipments","value":""}],"variable":[]}},"response":[],"_postman_id":"97067162-bc81-4904-8896-40045c8630b3"},{"name":"Validate Customer Order","id":"fe6b7684-5378-406d-9ff9-7cc7b2ef5195","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"marketplaceId\": \"string_required\",\n    \"customer\": {\n        \"firstname\": \"string_optional\",\n        \"lastname\": \"string_optional\",\n        \"email\": \"string_optional\"\n    },\n    \"shippingAddress\": {\n        \"firstname\": \"string_optional\",\n        \"lastname\": \"string_optional\",\n        \"email\": \"string_optional\",\n        \"company\": \"string_optional\",\n        \"phoneNumber\": \"string_optional\",\n        \"line1\": \"string_required\",\n        \"line2\": \"string_optional\",\n        \"city\": \"string_required\",\n        \"postCode\": \"string_optional\",\n        \"primary\": \"boolean_optional\",\n        \"coordinates\": {\n            \"latitude\": \"number_optional\",\n            \"longitude\": \"number_optional\"\n        },\n        \"createdOnUtc\": \"date_optional\",\n        \"updatedOnUtc\": \"date_optional\",\n        \"alwaysCollectLocalTax\": \"boolean_optional\",\n        \"$any\": [\n            {\n                \"countryId\": \"number_required\",\n                \"regionId\": \"number_required\"\n            },\n            {\n                \"country\": \"string_required\",\n                \"region\": \"string_required\"\n            }\n        ]\n    },\n    \"$any\": [\n        {\n            \"cartId\": \"string_required\",\n            \"deliveryMethod\": \"string_required\"\n        },\n        {\n            \"items\": [\n                {\n                    \"holdStatusId\": \"number_optional\",\n                    \"holdReleaseCustomerExpectationDateUtc\": \"number_optional\",\n                    \"brandExclusive\": \"boolean_optional\",\n                    \"shipToStore\": \"boolean_optional\",\n                    \"allowReturns\": \"boolean_optional\",\n                    \"product\": {\n                        \"id\": \"number_required\",\n                        \"name\": \"string_optional\",\n                        \"refId\": \"string_optional\",\n                        \"taxCode\": \"string_optional\",\n                        \"isDigitalProduct\": \"boolean_optional\",\n                        \"variant\": {\n                            \"id\": \"number_required\",\n                            \"name\": \"string_optional\",\n                            \"refId\": \"string_optional\",\n                            \"sku\": \"string_optional\",\n                            \"upc\": \"string_optional\",\n                            \"gtin\": \"string_optional\",\n                            \"basePrice\": \"number_optional\",\n                            \"options\": [\n                                {\n                                    \"id\": \"number_optional\",\n                                    \"name\": \"string_optional\",\n                                    \"value\": {\n                                        \"id\": \"number_optional\",\n                                        \"name\": \"string_optional\",\n                                        \"additionalPrice\": \"number_optional\"\n                                    }\n                                }\n                            ],\n                            \"pictureUrl\": \"string_optional\"\n                        }\n                    },\n                    \"shipping\": {\n                        \"isExpedited\": \"boolean_optional\",\n                        \"estimatedDateUtc\": \"date_optional\",\n                        \"estimatedDateUpperBoundUtc\": \"date_optional\",\n                        \"preferredCarrier\": \"string_optional\",\n                        \"customerPickedFulfillerRefId\": \"string_optional\",\n                        \"bopis\": {\n                            \"instorePickupBusinessRefId\": \"string_optional\",\n                            \"customerPickedFulfillerRefId\": \"string_optional\",\n                            \"isCurbside\": \"boolean_optional\",\n                            \"isRobis\": \"boolean_optional\"\n                        }\n                    },\n                    \"quantity\": \"number_required\",\n                    \"pricing\": {\n                        \"unitPrice\": \"number_required\",\n                        \"salePrice\": \"number_optional\",\n                        \"customFees\": [\n                            {\n                                \"name\": \"string_required\",\n                                \"description\": \"string_optional\",\n                                \"amount\": \"number_optional\",\n                                \"rate\": \"number_optional\",\n                                \"taxable\": \"boolean_optional\",\n                                \"includedInSubtotal\": \"boolean_required\"\n                            }\n                        ],\n                        \"shippingFees\": [\n                            {\n                                \"name\": \"string_required\",\n                                \"description\": \"string_optional\",\n                                \"amount\": \"number_optional\",\n                                \"rate\": \"number_optional\",\n                                \"taxable\": \"boolean_optional\"\n                            }\n                        ],\n                        \"discounts\": [\n                            {\n                                \"code\": \"string_optional\",\n                                \"name\": \"string_required\",\n                                \"description\": \"string_optional\",\n                                \"amount\": \"number_optional\",\n                                \"rate\": \"number_optional\",\n                                \"discountId\": \"number_optional\"\n                            }\n                        ],\n                        \"taxes\": [\n                            {\n                                \"name\": \"string_required\",\n                                \"description\": \"string_optional\",\n                                \"amount\": \"number_optional\",\n                                \"rate\": \"number_optional\",\n                                \"includedInSubtotal\": \"boolean_required\"\n                            }\n                        ],\n                        \"marketplaceRemittedTaxAmount\": \"number_optional\"\n                    },\n                    \"customFields\": [\n                        {\n                            \"name\": \"string_required\",\n                            \"value\": \"string_required\"\n                        }\n                    ]\n                }\n            ]\n        }\n    ]\n}"},"url":"https://api.quiverstest.com/v1/customerOrders/validate?includeFulfillers=false&calculateTaxes=true","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n</ul>\n<p>Validates a customer order before it is created. Returns details about auto-assignment for claiming, shipping rates, taxes, if an item can be purchased, etc.</p>\n","urlObject":{"protocol":"https","path":["v1","customerOrders","validate"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"includeFulfillers","value":"false"},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"calculateTaxes","value":"true"}],"variable":[]}},"response":[],"_postman_id":"fe6b7684-5378-406d-9ff9-7cc7b2ef5195"},{"name":"Create Customer Order","id":"5bdf52ed-8e8d-40bd-899f-3af384b48c70","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"customer\": {\n        \"firstname\": \"string_optional\",\n        \"lastname\": \"string_optional\",\n        \"email\": \"string_optional\"\n    },\n    \"billingAddress\": {\n        \"firstname\": \"string_optional\",\n        \"lastname\": \"string_optional\",\n        \"email\": \"string_optional\",\n        \"company\": \"string_optional\",\n        \"phoneNumber\": \"string_optional\",\n        \"line1\": \"string_required\",\n        \"line2\": \"string_optional\",\n        \"city\": \"string_required\",\n        \"postCode\": \"string_optional\",\n        \"primary\": \"boolean_optional\",\n        \"coordinates\": {\n            \"latitude\": \"number_optional\",\n            \"longitude\": \"number_optional\"\n        },\n        \"createdOnUtc\": \"date_optional\",\n        \"updatedOnUtc\": \"date_optional\",\n        \"alwaysCollectLocalTax\": \"boolean_optional\",\n        \"$any\": [\n            {\n                \"countryId\": \"number_required\",\n                \"regionId\": \"number_required\"\n            },\n            {\n                \"country\": \"string_required\",\n                \"region\": \"string_required\"\n            }\n        ]\n    },\n    \"payment\": \"string_optional\",\n    \"affiliateId\": \"string_optional\",\n    \"inboundRefId\": \"string_optional\",\n    \"checkoutNote\": \"string_optional\",\n    \"createdOnUtc\": \"date_optional\",\n    \"url\": \"string_optional\",\n    \"sourceEcommercePluginOrderCreatedOnUtc\": \"date_optional\",\n    \"preferredCarrierId\": \"number_optional\",\n    \"cultureId\": \"string_optional\",\n    \"customFields\": [\n        {\n            \"name\": \"string_optional\",\n            \"value\": \"string_optional\"\n        }\n    ],\n    \"marketplaceId\": \"string_required\",\n    \"shippingAddress\": {\n        \"firstname\": \"string_optional\",\n        \"lastname\": \"string_optional\",\n        \"email\": \"string_optional\",\n        \"company\": \"string_optional\",\n        \"phoneNumber\": \"string_optional\",\n        \"line1\": \"string_required\",\n        \"line2\": \"string_optional\",\n        \"city\": \"string_required\",\n        \"postCode\": \"string_optional\",\n        \"primary\": \"boolean_optional\",\n        \"coordinates\": {\n            \"latitude\": \"number_optional\",\n            \"longitude\": \"number_optional\"\n        },\n        \"createdOnUtc\": \"date_optional\",\n        \"updatedOnUtc\": \"date_optional\",\n        \"alwaysCollectLocalTax\": \"boolean_optional\",\n        \"$any\": [\n            {\n                \"countryId\": \"number_required\",\n                \"regionId\": \"number_required\"\n            },\n            {\n                \"country\": \"string_required\",\n                \"region\": \"string_required\"\n            }\n        ]\n    },\n    \"$any\": [\n        {\n            \"cartId\": \"string_required\",\n            \"deliveryMethod\": \"string_required\"\n        },\n        {\n            \"items\": [\n                {\n                    \"holdStatusId\": \"number_optional\",\n                    \"holdReleaseCustomerExpectationDateUtc\": \"number_optional\",\n                    \"brandExclusive\": \"boolean_optional\",\n                    \"shipToStore\": \"boolean_optional\",\n                    \"allowReturns\": \"boolean_optional\",\n                    \"product\": {\n                        \"id\": \"number_required\",\n                        \"name\": \"string_optional\",\n                        \"refId\": \"string_optional\",\n                        \"taxCode\": \"string_optional\",\n                        \"isDigitalProduct\": \"boolean_optional\",\n                        \"variant\": {\n                            \"id\": \"number_required\",\n                            \"name\": \"string_optional\",\n                            \"refId\": \"string_optional\",\n                            \"sku\": \"string_optional\",\n                            \"upc\": \"string_optional\",\n                            \"gtin\": \"string_optional\",\n                            \"basePrice\": \"number_optional\",\n                            \"options\": [\n                                {\n                                    \"id\": \"number_optional\",\n                                    \"name\": \"string_optional\",\n                                    \"value\": {\n                                        \"id\": \"number_optional\",\n                                        \"name\": \"string_optional\",\n                                        \"additionalPrice\": \"number_optional\"\n                                    }\n                                }\n                            ],\n                            \"pictureUrl\": \"string_optional\"\n                        }\n                    },\n                    \"shipping\": {\n                        \"isExpedited\": \"boolean_optional\",\n                        \"estimatedDateUtc\": \"date_optional\",\n                        \"estimatedDateUpperBoundUtc\": \"date_optional\",\n                        \"preferredCarrier\": \"string_optional\",\n                        \"customerPickedFulfillerRefId\": \"string_optional\",\n                        \"bopis\": {\n                            \"instorePickupBusinessRefId\": \"string_optional\",\n                            \"customerPickedFulfillerRefId\": \"string_optional\",\n                            \"isCurbside\": \"boolean_optional\",\n                            \"isRobis\": \"boolean_optional\"\n                        }\n                    },\n                    \"quantity\": \"number_required\",\n                    \"pricing\": {\n                        \"unitPrice\": \"number_required\",\n                        \"salePrice\": \"number_optional\",\n                        \"customFees\": [\n                            {\n                                \"name\": \"string_required\",\n                                \"description\": \"string_optional\",\n                                \"amount\": \"number_optional\",\n                                \"rate\": \"number_optional\",\n                                \"taxable\": \"boolean_optional\",\n                                \"includedInSubtotal\": \"boolean_required\"\n                            }\n                        ],\n                        \"shippingFees\": [\n                            {\n                                \"name\": \"string_required\",\n                                \"description\": \"string_optional\",\n                                \"amount\": \"number_optional\",\n                                \"rate\": \"number_optional\",\n                                \"taxable\": \"boolean_optional\"\n                            }\n                        ],\n                        \"discounts\": [\n                            {\n                                \"code\": \"string_optional\",\n                                \"name\": \"string_required\",\n                                \"description\": \"string_optional\",\n                                \"amount\": \"number_optional\",\n                                \"rate\": \"number_optional\",\n                                \"discountId\": \"number_optional\"\n                            }\n                        ],\n                        \"taxes\": [\n                            {\n                                \"name\": \"string_required\",\n                                \"description\": \"string_optional\",\n                                \"amount\": \"number_optional\",\n                                \"rate\": \"number_optional\",\n                                \"includedInSubtotal\": \"boolean_required\"\n                            }\n                        ],\n                        \"marketplaceRemittedTaxAmount\": \"number_optional\"\n                    },\n                    \"customFields\": [\n                        {\n                            \"name\": \"string_required\",\n                            \"value\": \"string_required\"\n                        }\n                    ]\n                }\n            ]\n        }\n    ]\n}"},"url":"https://api.quiverstest.com/v1/customerOrders/create?notify=true&notifyType=&muteNotifications=false&stackLineItems=false&calculateTaxes=true&marketingOptIn=false&enforceTaxableShipping=false&ipAddress=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n</ul>\n<p>Creates a customer order for a business on Quivers.</p>\n","urlObject":{"protocol":"https","path":["v1","customerOrders","create"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"notify","value":"true"},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"notifyType","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"muteNotifications","value":"false"},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"stackLineItems","value":"false"},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"calculateTaxes","value":"true"},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"marketingOptIn","value":"false"},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"enforceTaxableShipping","value":"false"},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"ipAddress","value":""}],"variable":[]}},"response":[],"_postman_id":"5bdf52ed-8e8d-40bd-899f-3af384b48c70"},{"name":"Update Address","id":"ad663d73-104f-4c4f-90ec-899f687f021d","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"orderRefId\": \"string_required\",\n    \"addressType\": \"string_required\",\n    \"address\": {\n        \"firstname\": \"string_optional\",\n        \"lastname\": \"string_optional\",\n        \"email\": \"string_optional\",\n        \"company\": \"string_optional\",\n        \"phoneNumber\": \"string_optional\",\n        \"line1\": \"string_required\",\n        \"line2\": \"string_optional\",\n        \"city\": \"string_required\",\n        \"postCode\": \"string_optional\",\n        \"primary\": \"boolean_optional\",\n        \"coordinates\": {\n            \"latitude\": \"number_optional\",\n            \"longitude\": \"number_optional\"\n        },\n        \"createdOnUtc\": \"date_optional\",\n        \"updatedOnUtc\": \"date_optional\",\n        \"alwaysCollectLocalTax\": \"boolean_optional\",\n        \"$any\": [\n            {\n                \"countryId\": \"number_required\",\n                \"regionId\": \"number_required\"\n            },\n            {\n                \"country\": \"string_required\",\n                \"region\": \"string_required\"\n            }\n        ]\n    }\n}"},"url":"https://api.quiverstest.com/v1/CustomerOrders/UpdateAddress?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>This creates a new address and adds it to an order</p>\n","urlObject":{"protocol":"https","path":["v1","CustomerOrders","UpdateAddress"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"ad663d73-104f-4c4f-90ec-899f687f021d"}],"id":"26c98b6c-4993-4d36-9b5a-d39c18ece797","_postman_id":"26c98b6c-4993-4d36-9b5a-d39c18ece797","description":""},{"name":"Customer Surveys","item":[{"name":"Customer Surveys - Get By Shipment Id","id":"caed839d-fab5-4ff5-a682-d6275942b0bb","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/CustomerSurveys/GetByShipmentId?shipmentId=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Returns customer surveys submitted for a given shipment.</p>\n","urlObject":{"protocol":"https","path":["v1","CustomerSurveys","GetByShipmentId"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>number_required</p>\n","type":"text/plain"},"key":"shipmentId","value":""}],"variable":[]}},"response":[],"_postman_id":"caed839d-fab5-4ff5-a682-d6275942b0bb"},{"name":"Customer Surveys - Get By Fulfiller","id":"4e895db3-8b28-4b56-9ebe-81bb6d45fc9b","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/CustomerSurveys/GetByFulfiller?business=&fulfillerRefId=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Return customer surveys for items fulfilled by a given fulfiller business.</p>\n","urlObject":{"protocol":"https","path":["v1","CustomerSurveys","GetByFulfiller"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"fulfillerRefId","value":""}],"variable":[]}},"response":[],"_postman_id":"4e895db3-8b28-4b56-9ebe-81bb6d45fc9b"},{"name":"Customer Surveys - Submit","id":"d3b8b8ac-38f8-4a56-bcb8-0d9d04dd08d0","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"speed\": \"number_required\",\n    \"difficulty\": \"number_required\",\n    \"nps\": \"number_required\",\n    \"comments\": \"string_optional\"\n}"},"url":"https://api.quiverstest.com/v1/CustomerSurveys/Submit?orderRefId=&shipmentId=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n</ul>\n<p>Submits a customer survey for a given order's shipment.</p>\n","urlObject":{"protocol":"https","path":["v1","CustomerSurveys","Submit"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"orderRefId","value":""},{"description":{"content":"<p>number_required</p>\n","type":"text/plain"},"key":"shipmentId","value":""}],"variable":[]}},"response":[],"_postman_id":"d3b8b8ac-38f8-4a56-bcb8-0d9d04dd08d0"}],"id":"7bb0cd25-5d7f-4419-b7c1-2d41c9d21ebe","_postman_id":"7bb0cd25-5d7f-4419-b7c1-2d41c9d21ebe","description":""},{"name":"Dashboard","item":[{"name":"Dashboard - Get Order Composition","id":"7dcdd1af-ccae-40ea-bdd3-b3f04109fde0","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Dashboard/GetUserActionItems","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Up to 3600s</code></li>\n</ul>\n<p>Returns data about the action items across all of the logged in user's businesses.</p>\n","urlObject":{"protocol":"https","path":["v1","Dashboard","GetUserActionItems"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7dcdd1af-ccae-40ea-bdd3-b3f04109fde0"}],"id":"b89de1ea-c587-4787-83e4-cb0cbbaccb58","_postman_id":"b89de1ea-c587-4787-83e4-cb0cbbaccb58","description":""},{"name":"Dealer Locators","item":[{"name":"Dealer Locators - Search","id":"21c564d8-4b63-41d7-850c-629809da4fe4","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/DealerLocators/Search?business=&searchTerm=&pagesize=20&page=1&sort={}","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Up to 300s</code></li>\n</ul>\n<p>Searchs across all non-deleted dealer locators that exist for this business.</p>\n","urlObject":{"protocol":"https","path":["v1","DealerLocators","Search"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"20"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"}],"variable":[]}},"response":[],"_postman_id":"21c564d8-4b63-41d7-850c-629809da4fe4"},{"name":"Dealer Locators - Get By Id","id":"3e7130b7-dff3-48e7-bb22-e5428c7f1c23","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/DealerLocators/GetById?id=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Return a specific dealer locator by its id.</p>\n","urlObject":{"protocol":"https","path":["v1","DealerLocators","GetById"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"id","value":""}],"variable":[]}},"response":[],"_postman_id":"3e7130b7-dff3-48e7-bb22-e5428c7f1c23"},{"name":"Dealer Locators - Get Dealers","id":"f64b8eac-bc2c-4d0f-8ed8-95ae9059a989","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/DealerLocators/GetDealers?id=&searchTerm=&latLow=&latHigh=&longLow=&longHigh=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Returns the dealers for a dealer locator.</p>\n","urlObject":{"protocol":"https","path":["v1","DealerLocators","GetDealers"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"id","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"latLow","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"latHigh","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"longLow","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"longHigh","value":""}],"variable":[]}},"response":[],"_postman_id":"f64b8eac-bc2c-4d0f-8ed8-95ae9059a989"},{"name":"Dealer Locators - Create","id":"42906fc0-9456-40fc-af02-f0b3e7c24a1c","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"string_required\",\n    \"culture\": \"string_optional (default: \\\"en-US\\\")\",\n    \"googleAnalyticsCode\": \"string_optional\",\n    \"customCSS\": \"string_optional\",\n    \"enableDarkMode\": \"boolean_optional\",\n    \"mapPinPictureId\": \"number_optional\",\n    \"googleMapsOptionsJSON\": \"*\",\n    \"storefrontId\": \"string_optional\",\n    \"autoEnrollment\": \"boolean_optional\",\n    \"dealers\": [\n        {\n            \"businessRefId\": \"string_required\",\n            \"labels\": [\n                null\n            ]\n        }\n    ]\n}"},"url":"https://api.quiverstest.com/v1/DealerLocators/Create?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Creates a new dealer locator for a business.</p>\n","urlObject":{"protocol":"https","path":["v1","DealerLocators","Create"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"42906fc0-9456-40fc-af02-f0b3e7c24a1c"},{"name":"Dealer Locators - Update","id":"96349770-af67-4ae9-a84e-578080cc9dda","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\",\n    \"name\": \"string_required\",\n    \"culture\": \"string_optional (default: \\\"en-US\\\")\",\n    \"googleAnalyticsCode\": \"string_optional\",\n    \"customCSS\": \"string_optional\",\n    \"enableDarkMode\": \"boolean_optional\",\n    \"mapPinPictureId\": \"number_optional\",\n    \"googleMapsOptionsJSON\": \"*\",\n    \"storefrontId\": \"string_optional\",\n    \"autoEnrollment\": \"boolean_optional\",\n    \"dealers\": [\n        {\n            \"businessRefId\": \"string_optional\",\n            \"businessName\": \"string_optional\",\n            \"labels\": [\n                null\n            ]\n        }\n    ]\n}"},"url":"https://api.quiverstest.com/v1/DealerLocators/Update?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Updates an existing dealer locator for a business.</p>\n","urlObject":{"protocol":"https","path":["v1","DealerLocators","Update"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"96349770-af67-4ae9-a84e-578080cc9dda"},{"name":"Dealer Locators - Enable All Dealers","id":"359bfb4e-4a10-4af6-985e-3b4cb8a7d410","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\",\n    \"labels\": [\n        null\n    ]\n}"},"url":"https://api.quiverstest.com/v1/DealerLocators/EnableAllDealers?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Enables all available connected dealers for a dealer locator.</p>\n","urlObject":{"protocol":"https","path":["v1","DealerLocators","EnableAllDealers"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"359bfb4e-4a10-4af6-985e-3b4cb8a7d410"},{"name":"Dealer Locators - Add Dealer","id":"5203167d-1845-4367-a302-7034e58ffc08","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"dealerLocatorId\": \"string_required\",\n    \"connectionId\": \"string_required\",\n    \"labels\": [\n        null\n    ]\n}"},"url":"https://api.quiverstest.com/v1/DealerLocators/AddDealer?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Adds a dealer to a dealer locator</p>\n","urlObject":{"protocol":"https","path":["v1","DealerLocators","AddDealer"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"5203167d-1845-4367-a302-7034e58ffc08"},{"name":"Dealer Locators - Remove Dealer","id":"1587fd1a-f966-45c5-9f23-71bd3748e30d","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"dealerLocatorId\": \"string_required\",\n    \"connectionId\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/DealerLocators/RemoveDealer?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Removes a dealer from a dealer locator</p>\n","urlObject":{"protocol":"https","path":["v1","DealerLocators","RemoveDealer"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"1587fd1a-f966-45c5-9f23-71bd3748e30d"},{"name":"Dealer Locators - Delete","id":"6c4c686b-2967-4ed9-a58d-db1305b35d6f","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/DealerLocators/Delete?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Deletes an existing dealer locator.</p>\n","urlObject":{"protocol":"https","path":["v1","DealerLocators","Delete"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"6c4c686b-2967-4ed9-a58d-db1305b35d6f"}],"id":"2aeadc4b-74a8-4075-b798-4ba2ca40bb11","_postman_id":"2aeadc4b-74a8-4075-b798-4ba2ca40bb11","description":""},{"name":"Dealers","item":[{"name":"Dealers - Search","id":"6690bb2f-8631-4ef7-9b24-8b994f6714fe","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Dealers/Search?business=&searchTerm=&pagesize=20&page=1&sort={}","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Up to 300s</code></li>\n</ul>\n<p>Search Dealers for a Brand.</p>\n","urlObject":{"protocol":"https","path":["v1","Dealers","Search"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"20"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"}],"variable":[]}},"response":[],"_postman_id":"6690bb2f-8631-4ef7-9b24-8b994f6714fe"},{"name":"Dealers - Create","id":"22c13483-d3c8-4870-9c3a-5d61b8fd5162","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"string_required\",\n    \"storeNumber\": \"string_optional\",\n    \"representativeEmails\": [\n        {\n            \"required\": false\n        }\n    ],\n    \"address\": {\n        \"line1\": \"string_required\",\n        \"line2\": \"string_optional\",\n        \"city\": \"string_required\",\n        \"regionId\": \"number_optional\",\n        \"region\": \"string_optional\",\n        \"countryId\": \"number_optional\",\n        \"country\": \"string_optional\",\n        \"postCode\": \"string_optional\",\n        \"coordinates\": {\n            \"latitude\": \"number_optional\",\n            \"longitude\": \"number_optional\"\n        }\n    }\n}"},"url":"https://api.quiverstest.com/v1/Dealers/Create?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Create a Dealer for a Brand.</p>\n","urlObject":{"protocol":"https","path":["v1","Dealers","Create"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"22c13483-d3c8-4870-9c3a-5d61b8fd5162"},{"name":"Dealers - Import","id":"c58f68a1-42f0-452e-95cd-3e187b6c1170","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"dealers\": [\n        {\n            \"name\": \"string_required\",\n            \"storeNumber\": \"string_optional\",\n            \"retailerRefId\": \"string_optional\",\n            \"representativeEmails\": [\n                {\n                    \"required\": false\n                }\n            ],\n            \"address\": {\n                \"line1\": \"string_required\",\n                \"line2\": \"string_optional\",\n                \"city\": \"string_required\",\n                \"regionId\": \"number_optional\",\n                \"region\": \"string_optional\",\n                \"countryId\": \"number_optional\",\n                \"country\": \"string_optional\",\n                \"postCode\": \"string_optional\",\n                \"coordinates\": {\n                    \"latitude\": \"number_optional\",\n                    \"longitude\": \"number_optional\"\n                }\n            }\n        }\n    ]\n}"},"url":"https://api.quiverstest.com/v1/Dealers/Import?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Import many Dealers for a Brand.</p>\n","urlObject":{"protocol":"https","path":["v1","Dealers","Import"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"c58f68a1-42f0-452e-95cd-3e187b6c1170"},{"name":"Dealers - Update","id":"a1603f90-7b14-49db-b232-ae612120ca95","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\",\n    \"name\": \"string_required\",\n    \"storeNumber\": \"string_optional\",\n    \"representativeEmails\": [\n        {\n            \"required\": false\n        }\n    ],\n    \"retailerRefId\": \"string_optional\",\n    \"address\": {\n        \"line1\": \"string_required\",\n        \"line2\": \"string_optional\",\n        \"city\": \"string_required\",\n        \"regionId\": \"number_optional\",\n        \"region\": \"string_optional\",\n        \"countryId\": \"number_optional\",\n        \"country\": \"string_optional\",\n        \"postCode\": \"string_optional\",\n        \"coordinates\": {\n            \"latitude\": \"number_optional\",\n            \"longitude\": \"number_optional\"\n        }\n    }\n}"},"url":"https://api.quiverstest.com/v1/Dealers/Update?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Update a Dealer for a Brand.</p>\n","urlObject":{"protocol":"https","path":["v1","Dealers","Update"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"a1603f90-7b14-49db-b232-ae612120ca95"},{"name":"Dealers - Delete","id":"93d2da4f-6875-4679-917f-42daeaf36150","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/Dealers/Delete?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Delete a Dealer for a Brand.</p>\n","urlObject":{"protocol":"https","path":["v1","Dealers","Delete"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"93d2da4f-6875-4679-917f-42daeaf36150"},{"name":"Dealers - Delete All","id":"38ea5658-727e-4db9-b54e-26e457e59106","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Dealers/DeleteAll?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Delete all Dealers for a Brand.</p>\n","urlObject":{"protocol":"https","path":["v1","Dealers","DeleteAll"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"38ea5658-727e-4db9-b54e-26e457e59106"}],"id":"43be4fb6-22a4-405f-bbaa-ad04a715a071","_postman_id":"43be4fb6-22a4-405f-bbaa-ad04a715a071","description":""},{"name":"Enum","item":[{"name":"Entry Codes - Search Packs","id":"ff067856-4c94-4394-b60b-45853787260f","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/EntryCodes/SearchPacks?business=&searchTerm=&pagesize=20&page=1&sort={}","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Searchs across entry code packs for a business.</p>\n","urlObject":{"protocol":"https","path":["v1","EntryCodes","SearchPacks"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"20"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"}],"variable":[]}},"response":[],"_postman_id":"ff067856-4c94-4394-b60b-45853787260f"},{"name":"Entry Codes - Search Codes","id":"b068d100-65c5-49fc-b5a9-fec83834cdad","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/EntryCodes/SearchCodes?business=&packId=&searchTerm=&pagesize=20&page=1&sort={}","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Searchs across entry codes for given pack for a business.</p>\n","urlObject":{"protocol":"https","path":["v1","EntryCodes","SearchCodes"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>number_required</p>\n","type":"text/plain"},"key":"packId","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"20"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"}],"variable":[]}},"response":[],"_postman_id":"b068d100-65c5-49fc-b5a9-fec83834cdad"},{"name":"Entry Codes - Create Pack","id":"a60eb60d-7569-4770-aa0c-da7cb498f39d","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"consumerGroupId\": \"string_required\",\n    \"name\": \"string_optional\",\n    \"codeUsageLimit\": \"number_optional\",\n    \"caseSensitiveCodes\": \"boolean_optional\",\n    \"typeId\": \"number_optional (default: 10)\",\n    \"regExCode\": \"string_optional\",\n    \"validFromUtc\": \"date_optional\",\n    \"validToUtc\": \"date_optional\"\n}"},"url":"https://api.quiverstest.com/v1/EntryCodes/CreatePack?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Creates an entry code pack for a consumer group.</p>\n","urlObject":{"protocol":"https","path":["v1","EntryCodes","CreatePack"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"a60eb60d-7569-4770-aa0c-da7cb498f39d"},{"name":"Entry Codes - Update Pack","id":"7093c25d-4aae-4cd3-9164-ef27843e34dc","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\",\n    \"consumerGroupId\": \"string_required\",\n    \"name\": \"string_optional\",\n    \"codeUsageLimit\": \"number_optional\",\n    \"caseSensitiveCodes\": \"boolean_optional\",\n    \"typeId\": \"number_optional (default: 10)\",\n    \"regExCode\": \"string_optional\",\n    \"validFromUtc\": \"date_optional\",\n    \"validToUtc\": \"date_optional\"\n}"},"url":"https://api.quiverstest.com/v1/EntryCodes/UpdatePack?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Creates an entry code pack for a consumer group.</p>\n","urlObject":{"protocol":"https","path":["v1","EntryCodes","UpdatePack"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"7093c25d-4aae-4cd3-9164-ef27843e34dc"},{"name":"Entry Codes - Delete Pack","id":"20f14654-c000-4777-b778-9f7c4ea582de","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/EntryCodes/DeletePack?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Deletes an entry code pack from a consumer group.</p>\n","urlObject":{"protocol":"https","path":["v1","EntryCodes","DeletePack"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"20f14654-c000-4777-b778-9f7c4ea582de"},{"name":"Entry Codes - Add Codes","id":"3758228e-4c45-4b3f-b1b2-ca8573464a7b","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"entryCodePackId\": \"number_required\",\n    \"codes\": [\n        null\n    ]\n}"},"url":"https://api.quiverstest.com/v1/EntryCodes/AddCodes?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Adds (upserts) entry codes to an entry code pack.</p>\n","urlObject":{"protocol":"https","path":["v1","EntryCodes","AddCodes"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"3758228e-4c45-4b3f-b1b2-ca8573464a7b"},{"name":"Entry Codes - Remove Codes","id":"f84b5e8f-b77f-49ee-803b-ab4708be5f40","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"entryCodePackId\": \"number_required\",\n    \"codes\": [\n        null\n    ]\n}"},"url":"https://api.quiverstest.com/v1/EntryCodes/RemoveCodes?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Removes entry codes from an entry code pack.</p>\n","urlObject":{"protocol":"https","path":["v1","EntryCodes","RemoveCodes"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"f84b5e8f-b77f-49ee-803b-ab4708be5f40"},{"name":"Entry Codes - Remove All Codes","id":"1180b868-0c7c-4d2e-997a-2945817e782a","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"entryCodePackId\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/EntryCodes/RemoveAllCodes?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Removes all entry codes from an entry code pack.</p>\n","urlObject":{"protocol":"https","path":["v1","EntryCodes","RemoveAllCodes"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"1180b868-0c7c-4d2e-997a-2945817e782a"},{"name":"Get ENUMs","id":"09649154-0854-4a31-928d-1de2cc26d252","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/enums","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Up to 86400s</code></li>\n</ul>\n<p>Returns a list of all ENUM key/value pairs within Quivers.</p>\n","urlObject":{"protocol":"https","path":["v1","enums"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"09649154-0854-4a31-928d-1de2cc26d252"}],"id":"4fa66833-f70d-4e84-84ad-2797ae8c21e9","_postman_id":"4fa66833-f70d-4e84-84ad-2797ae8c21e9","description":""},{"name":"Events","item":[{"name":"Raise Event","id":"aa2ad623-4374-46bb-87e2-91acd7441d58","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"string_optional\",\n    \"eventTypeId\": \"number_required\",\n    \"data\": \"*\",\n    \"target\": {\n        \"typeId\": \"number_optional\",\n        \"value\": \"string_optional\"\n    },\n    \"culture\": \"string_optional\",\n    \"sourceBusinessRefId\": \"string_optional\"\n}"},"url":"https://api.quiverstest.com/v1/events/raise?notify=true&await=false","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>QuiversAdmin</code></li>\n</ul>\n<p>Raises an event within Quivers, which will subsequently notify all relevant users through the appropriate channels.</p>\n","urlObject":{"protocol":"https","path":["v1","events","raise"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"notify","value":"true"},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"await","value":"false"}],"variable":[]}},"response":[],"_postman_id":"aa2ad623-4374-46bb-87e2-91acd7441d58"}],"id":"ec3fb6b1-5879-4e15-83be-790fe9254a7b","_postman_id":"ec3fb6b1-5879-4e15-83be-790fe9254a7b","description":""},{"name":"Fulfillment Fee Policies","item":[{"name":"Get FulfillmentFeePolicy","id":"385d2f49-bfc1-4064-87ee-1b0e4e01e6bc","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/fulfillmentFeePolicies/search?business=&searchTerm=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Gets a fulfillment fee policy and all its rules</p>\n","urlObject":{"protocol":"https","path":["v1","fulfillmentFeePolicies","search"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""}],"variable":[]}},"response":[],"_postman_id":"385d2f49-bfc1-4064-87ee-1b0e4e01e6bc"},{"name":"Update A FulfillmentFeePolicy","id":"3b4c20e2-1b3c-4290-943c-1626987e6205","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\",\n    \"name\": \"string_optional\",\n    \"enableAllRules\": \"boolean_required\",\n    \"rules\": [\n        {\n            \"id\": \"string_optional\",\n            \"name\": \"string_required\",\n            \"rate\": \"number_required\",\n            \"storefrontId\": \"string_optional\",\n            \"fulfillmentMethodId\": \"number_optional\",\n            \"paymentMethodId\": \"string_optional\",\n            \"retailerRefId\": \"string_optional\",\n            \"appliesForSubsidiaries\": \"boolean_optional\",\n            \"shipToStore\": \"boolean_optional\"\n        }\n    ]\n}"},"url":"https://api.quiverstest.com/v1/fulfillmentFeePolicies/update?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Updates a fulfillment fee policy</p>\n","urlObject":{"protocol":"https","path":["v1","fulfillmentFeePolicies","update"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"3b4c20e2-1b3c-4290-943c-1626987e6205"}],"id":"9a964bf5-ca39-4c51-8553-0203807ccbf5","_postman_id":"9a964bf5-ca39-4c51-8553-0203807ccbf5","description":""},{"name":"Geolocation","item":[{"name":"Geolcation - Get Location","id":"82213199-8c43-49c9-bf56-915a5f81123a","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/geolocation/getLocation?latitude=&longitude=&postCode=&ipAddress=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Accepts zip/postal code, coordinates, or IP Address to return geoglocation data.</p>\n","urlObject":{"protocol":"https","path":["v1","geolocation","getLocation"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"latitude","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"longitude","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"postCode","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"ipAddress","value":""}],"variable":[]}},"response":[],"_postman_id":"82213199-8c43-49c9-bf56-915a5f81123a"},{"name":"Geolcation - Get Zip/Postal Code By Coordinates","id":"cbc94417-0a30-4d35-9340-51e5a4638a74","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/geolocation/getPostalCodeByCoordinates?latitude=&longitude=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Accepts a latitude/longitude pair and returns the zip/potal code those coordinates map to.</p>\n","urlObject":{"protocol":"https","path":["v1","geolocation","getPostalCodeByCoordinates"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>number_required</p>\n","type":"text/plain"},"key":"latitude","value":""},{"description":{"content":"<p>number_required</p>\n","type":"text/plain"},"key":"longitude","value":""}],"variable":[]}},"response":[],"_postman_id":"cbc94417-0a30-4d35-9340-51e5a4638a74"}],"id":"1d19083b-fcb2-44ed-af0c-5b23c628f443","_postman_id":"1d19083b-fcb2-44ed-af0c-5b23c628f443","description":""},{"name":"Inventory","item":[{"name":"Inventory - Get Retailer Fullfillment Options","id":"1478e481-486d-4ab5-97cc-fa1926b025ab","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Inventory/GetFulfillmentOptions?storefrontId=&searchTerm=&lat=&lng=&productVariantId=&distanceInMiles=&removeNoInventoryFulfillers=false&pagesize=&page=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Up to 300s</code></li>\n</ul>\n<p>Returns a list of retailers which are capable of doing fulfillment for a given UPC by storefront.</p>\n","urlObject":{"protocol":"https","path":["v1","Inventory","GetFulfillmentOptions"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"storefrontId","value":""},{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"lat","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"lng","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"productVariantId","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"distanceInMiles","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"removeNoInventoryFulfillers","value":"false"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":""}],"variable":[]}},"response":[],"_postman_id":"1478e481-486d-4ab5-97cc-fa1926b025ab"},{"name":"Inventory - Get Retailer Fullfillment Options for Many Items","id":"003a73a6-0813-4ef6-90c7-4dce5c015d7f","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Inventory/GetFulfillmentOptionsForManyItems?storefrontId=&searchTerm=&lat=&lng=&productVariantId=&distanceInMiles=&removeNoInventoryFulfillers=false","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Up to 300s</code></li>\n</ul>\n<p>Like GetFulfillmentOptions but reformatted so that the data is easier to consume for multiple items.</p>\n","urlObject":{"protocol":"https","path":["v1","Inventory","GetFulfillmentOptionsForManyItems"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"storefrontId","value":""},{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"lat","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"lng","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"productVariantId","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"distanceInMiles","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"removeNoInventoryFulfillers","value":"false"}],"variable":[]}},"response":[],"_postman_id":"003a73a6-0813-4ef6-90c7-4dce5c015d7f"},{"name":"Inventory - Get Variants Pending Inventory Match","id":"8973ab79-83b0-4c34-a2bb-36af7c1139f0","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Inventory/GetVariantsPendingInventoryMatch?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessReadOnly</code>, <code>BusinessSales</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Get any variants that are pending a retailer inventory match</p>\n","urlObject":{"protocol":"https","path":["v1","Inventory","GetVariantsPendingInventoryMatch"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"8973ab79-83b0-4c34-a2bb-36af7c1139f0"},{"name":"Inventory - Search","id":"4ce45fd1-c983-4ae3-956b-4f25aa2258d3","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Inventory/Search?business=&searchTerm=&storefronts=&claimingRegions=&retailers=&productId=&productVariantId=&onlyRetailerInventory=false&pagesize=20&page=1&sort={}","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Search seller warerhouse inventory and connected retailer inventory with optional filters.</p>\n","urlObject":{"protocol":"https","path":["v1","Inventory","Search"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"storefronts","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"claimingRegions","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"retailers","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"productId","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"productVariantId","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"onlyRetailerInventory","value":"false"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"20"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"}],"variable":[]}},"response":[],"_postman_id":"4ce45fd1-c983-4ae3-956b-4f25aa2258d3"},{"name":"Inventory - Get History","id":"e0bcfc68-82b1-43d5-a442-b9714f1435d3","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Inventory/GetHistory?business=&brandInventoryId=&retailerInventoryId=&pagesize=20&page=1","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Gets the update history of an inventory record</p>\n","urlObject":{"protocol":"https","path":["v1","Inventory","GetHistory"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"brandInventoryId","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"retailerInventoryId","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"20"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"}],"variable":[]}},"response":[],"_postman_id":"e0bcfc68-82b1-43d5-a442-b9714f1435d3"},{"name":"Inventory - Match One Retailer Inventory Record","id":"362e6e3e-6a69-4e84-b2bb-f12b0aba1f90","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"retailerInventoryId\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/Inventory/MatchOneRetailerInventoryRecord?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Finds product variant matches for one retailer inventory record</p>\n","urlObject":{"protocol":"https","path":["v1","Inventory","MatchOneRetailerInventoryRecord"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"362e6e3e-6a69-4e84-b2bb-f12b0aba1f90"},{"name":"Inventory - Match All Retailer Inventory Records","id":"6827dc45-eda9-4acb-af2e-98bd36b7249d","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Inventory/MatchAllRetailerInventoryRecords?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Finds product variant matches for all retailer inventory records for a business</p>\n","urlObject":{"protocol":"https","path":["v1","Inventory","MatchAllRetailerInventoryRecords"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"6827dc45-eda9-4acb-af2e-98bd36b7249d"},{"name":"Inventory - Match One Product","id":"0d04eb73-045d-4c2b-89bb-53ae27ee66eb","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"productId\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/Inventory/MatchOneProduct?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Finds retailer inventory matches for all product variants for one product</p>\n","urlObject":{"protocol":"https","path":["v1","Inventory","MatchOneProduct"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"0d04eb73-045d-4c2b-89bb-53ae27ee66eb"},{"name":"Inventory - Match All Product Variant Records","id":"516cea1f-d0b5-4b50-9e84-eb0bc1407039","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Inventory/MatchAllProductVariants?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Finds retailer inventory matches for all product variant records for a business</p>\n","urlObject":{"protocol":"https","path":["v1","Inventory","MatchAllProductVariants"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"516cea1f-d0b5-4b50-9e84-eb0bc1407039"},{"name":"Inventory - Sync Merchant Inventory","id":"e159a7a6-d4f8-41db-9f08-a9808a17890b","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"inventories\": [\n        {\n            \"productVariantId\": \"number_optional\",\n            \"upc\": \"string_optional\",\n            \"sku\": \"string_optional\",\n            \"gtin\": \"string_optional\",\n            \"stockLevel\": \"number_required\",\n            \"toggleInventorySalesThreshold\": \"number_optional\"\n        }\n    ]\n}"},"url":"https://api.quiverstest.com/v1/Inventory/SyncMerchantInventory?business=&warehouseId=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Updates many inventory records for a merchant</p>\n","urlObject":{"protocol":"https","path":["v1","Inventory","SyncMerchantInventory"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"warehouseId","value":""}],"variable":[]}},"response":[],"_postman_id":"e159a7a6-d4f8-41db-9f08-a9808a17890b"},{"name":"Inventory - Sync Retailer Inventory","id":"4a530087-2711-41ae-a1a4-aee91870fa2a","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"retailerInventories\": [\n        {\n            \"id\": \"number_optional\",\n            \"refId\": \"string_optional\",\n            \"upc\": \"string_optional\",\n            \"stockLevel\": \"number_optional\",\n            \"brandRefId\": \"string_optional\",\n            \"label\": \"string_optional\",\n            \"brand\": \"string_optional\"\n        }\n    ]\n}"},"url":"https://api.quiverstest.com/v1/Inventory/SyncRetailerInventory?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Updates many inventory records for a retailer</p>\n","urlObject":{"protocol":"https","path":["v1","Inventory","SyncRetailerInventory"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"4a530087-2711-41ae-a1a4-aee91870fa2a"},{"name":"Inventory - Subscribe to Back in Stock","id":"c6b8ee3a-51cd-4dc9-b29a-a0ca1c743674","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"productId\": \"number_required\",\n    \"productVariantId\": \"number_required\",\n    \"storefrontId\": \"string_required\",\n    \"productUrl\": \"string_required\",\n    \"email\": \"string_required\",\n    \"phoneNumber\": \"string_optional\",\n    \"stockLevel\": \"number_optional\",\n    \"stockLevelSourceId\": \"string_optional\"\n}"},"url":"https://api.quiverstest.com/v1/Inventory/SubscribeToBackInStock?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n</ul>\n<p>Subscribe to recieve notification(s) when an item is back in stock</p>\n","urlObject":{"protocol":"https","path":["v1","Inventory","SubscribeToBackInStock"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"c6b8ee3a-51cd-4dc9-b29a-a0ca1c743674"},{"name":"Inventory - Unsubscribe from Back in Stock","id":"b3044469-f8b0-4c24-8510-20a92d29b354","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/Inventory/UnsubscribeFromBackInStock?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n</ul>\n<p>Unsubscribe from recieving notification(s) when an item is back in stock</p>\n","urlObject":{"protocol":"https","path":["v1","Inventory","UnsubscribeFromBackInStock"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"b3044469-f8b0-4c24-8510-20a92d29b354"},{"name":"Inventory - Reset All Inventories","id":"231dfa81-a404-4670-8506-ff878f5c5988","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"warehouseIds\": [\n        {\n            \"required\": true\n        }\n    ]\n}"},"url":"https://api.quiverstest.com/v1/Inventory/ResetAllInventories?business=&priorToDateUtc=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Resets all inventories back to 0 for a business</p>\n","urlObject":{"protocol":"https","path":["v1","Inventory","ResetAllInventories"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>date_optional</p>\n","type":"text/plain"},"key":"priorToDateUtc","value":""}],"variable":[]}},"response":[],"_postman_id":"231dfa81-a404-4670-8506-ff878f5c5988"},{"name":"Inventory - Get Inventory Settings","id":"85c8682f-cc1c-45ff-a2f4-6dcb20cba424","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Inventory/GetInventorySettings?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessReadOnly</code>, <code>BusinessSales</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Gets inventory settings for a business</p>\n","urlObject":{"protocol":"https","path":["v1","Inventory","GetInventorySettings"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"85c8682f-cc1c-45ff-a2f4-6dcb20cba424"},{"name":"Inventory - Update Inventory Settings","id":"60a42ed8-e744-4214-a8ac-44c0bee56d9e","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"shareStockByUpc\": \"boolean_required\",\n    \"shareStockBySku\": \"boolean_required\",\n    \"shareStockByGtin\": \"boolean_required\"\n}"},"url":"https://api.quiverstest.com/v1/Inventory/UpdateInventorySettings?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Updates inventory settings for a business</p>\n","urlObject":{"protocol":"https","path":["v1","Inventory","UpdateInventorySettings"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"60a42ed8-e744-4214-a8ac-44c0bee56d9e"},{"name":"Inventory - Search Retailer Inventory","id":"1815fcd4-457c-463f-bb5a-6b5011950ca7","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Inventory/SearchRetailerInventory?business=&searchTerm=&pagesize=100&page=1&sort={\"upc\":1}&brandRefId=&includeProductOptions=false&fulfillerRefId=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Gets retailer inventories for a business</p>\n","urlObject":{"protocol":"https","path":["v1","Inventory","SearchRetailerInventory"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"100"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{\"upc\":1}"},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"brandRefId","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"includeProductOptions","value":"false"},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"fulfillerRefId","value":""}],"variable":[]}},"response":[],"_postman_id":"1815fcd4-457c-463f-bb5a-6b5011950ca7"}],"id":"24591c5f-3075-472e-968e-f7f05ea75ca4","_postman_id":"24591c5f-3075-472e-968e-f7f05ea75ca4","description":""},{"name":"Payment Methods","item":[{"name":"Search Payment Methods","id":"b747d605-a704-4e2c-a7a1-15615824ccd0","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/paymentMethods/search?business=&searchTerm=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Finds all available payment methods for a business, both custom and default</p>\n","urlObject":{"protocol":"https","path":["v1","paymentMethods","search"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""}],"variable":[]}},"response":[],"_postman_id":"b747d605-a704-4e2c-a7a1-15615824ccd0"},{"name":"Get Payment Method By Id","id":"aa0e18fd-be4a-4b05-9057-ee28a225bfa0","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/paymentMethods/getById?business=&id=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Find a payment method by its Id</p>\n","urlObject":{"protocol":"https","path":["v1","paymentMethods","getById"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"id","value":""}],"variable":[]}},"response":[],"_postman_id":"aa0e18fd-be4a-4b05-9057-ee28a225bfa0"},{"name":"Create Payment Method","id":"259e96bf-1f92-4334-ad57-36c1243ac12c","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"string_required\",\n    \"paymentGateway\": \"string_optional\"\n}"},"url":"https://api.quiverstest.com/v1/paymentMethods/create?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Create a payment method for a business</p>\n","urlObject":{"protocol":"https","path":["v1","paymentMethods","create"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"259e96bf-1f92-4334-ad57-36c1243ac12c"},{"name":"Update Payment Method","id":"f79c27e3-d90d-4c1d-b301-50fc0cf1933f","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\",\n    \"name\": \"string_required\",\n    \"paymentGateway\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/paymentMethods/update?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Update a payment method for a business</p>\n","urlObject":{"protocol":"https","path":["v1","paymentMethods","update"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"f79c27e3-d90d-4c1d-b301-50fc0cf1933f"},{"name":"Delete Payment Method","id":"d54c4e00-42fa-4fcc-b6e3-33e33797ba98","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/paymentMethods/delete?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Delete a payment method for a business</p>\n","urlObject":{"protocol":"https","path":["v1","paymentMethods","delete"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"d54c4e00-42fa-4fcc-b6e3-33e33797ba98"}],"id":"d94e655b-faf3-4f73-9df8-2ae0c0974c0e","_postman_id":"d94e655b-faf3-4f73-9df8-2ae0c0974c0e","description":""},{"name":"Ping","item":[{"name":"Pictures - Convert Format","id":"cd616e00-ba9a-4245-873b-67f4b287d2ac","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"rawPicture\": \"string_required\",\n    \"outputFormat\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/Pictures/Convert","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n</ul>\n<p>Converts a picture from one format to another.</p>\n","urlObject":{"protocol":"https","path":["v1","Pictures","Convert"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"cd616e00-ba9a-4245-873b-67f4b287d2ac"},{"name":"Pictures - Upload","id":"c187dbc7-475f-4a11-848d-61baf2a99321","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"$any\": [\n        {\n            \"data\": \"string_required\"\n        },\n        {\n            \"url\": \"string_required\"\n        }\n    ],\n    \"name\": \"string_required\",\n    \"type\": \"string_required\",\n    \"description\": \"string_optional\"\n}"},"url":"https://api.quiverstest.com/v1/Pictures/Upload?generateThumbnails=false","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n</ul>\n<p>Uploads a picture to the Quivers platform.</p>\n","urlObject":{"protocol":"https","path":["v1","Pictures","Upload"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"generateThumbnails","value":"false"}],"variable":[]}},"response":[],"_postman_id":"c187dbc7-475f-4a11-848d-61baf2a99321"}],"id":"4b074132-16fe-4299-9bf2-be31adc59e5c","_postman_id":"4b074132-16fe-4299-9bf2-be31adc59e5c","description":""},{"name":"Plugins","item":[{"name":"Plugins - Search Available Plugins","id":"7ef9e5a9-4c4a-4e9a-aa07-b33d906971d0","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Plugins/SearchMarketplace?business=&searchTerm=&type=&isSearchFallback=&pagesize=50&page=1&sort={}","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Returns a listing of all plugins available to configure.</p>\n","urlObject":{"protocol":"https","path":["v1","Plugins","SearchMarketplace"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"type","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"isSearchFallback","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"50"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"}],"variable":[]}},"response":[],"_postman_id":"7ef9e5a9-4c4a-4e9a-aa07-b33d906971d0"},{"name":"Plugins - Get By RefId","id":"3477c676-5068-49d2-8ba8-609f4a049d20","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Plugins/GetPluginByRefId?business=&refId=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Returns an available plugin by RefId (e.g. 'LightspeedRetail') will return the details of the Lightspeed plugin we offer.</p>\n","urlObject":{"protocol":"https","path":["v1","Plugins","GetPluginByRefId"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"refId","value":""}],"variable":[]}},"response":[],"_postman_id":"3477c676-5068-49d2-8ba8-609f4a049d20"},{"name":"Plugins - Search Business Plugins","id":"8959e677-d743-40e4-8024-2c2e6636d688","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Plugins/Search?business=&searchTerm=&type=&includeExternalDetails=false&pagesize=50&page=1&sort={}","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Searches across plugins that a given business has activated.</p>\n","urlObject":{"protocol":"https","path":["v1","Plugins","Search"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"type","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"includeExternalDetails","value":"false"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"50"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"}],"variable":[]}},"response":[],"_postman_id":"8959e677-d743-40e4-8024-2c2e6636d688"},{"name":"Plugins - Search Across all Businesses' Plugins","id":"a9806aa4-0bbb-4f3e-9312-1bac926bae80","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Plugins/SearchAll?searchTerm=&pagesize=1000&page=1&sort={}","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>QuiversAdmin</code>, <code>QuiversReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Searches across all activated plugins on the platform, regardless of business.</p>\n","urlObject":{"protocol":"https","path":["v1","Plugins","SearchAll"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"1000"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"}],"variable":[]}},"response":[],"_postman_id":"a9806aa4-0bbb-4f3e-9312-1bac926bae80"},{"name":"Plugins - Get By Id","id":"73c0a438-e203-4a42-bc9c-b3868b73114a","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Plugins/GetBusinessPluginById?business=&id=&includeExternalDetails=false","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Returns an business activated plugin by its Id (UUID).</p>\n","urlObject":{"protocol":"https","path":["v1","Plugins","GetBusinessPluginById"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"id","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"includeExternalDetails","value":"false"}],"variable":[]}},"response":[],"_postman_id":"73c0a438-e203-4a42-bc9c-b3868b73114a"},{"name":"Add Business Plugin","id":"ba547bf1-daca-44c3-99b5-4bbe55405321","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"pluginRefId\": \"string_required\",\n    \"displayName\": \"string_optional\"\n}"},"url":"https://api.quiverstest.com/v1/Plugins/Add?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Adds a marketplace plugin for a given business.</p>\n","urlObject":{"protocol":"https","path":["v1","Plugins","Add"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"ba547bf1-daca-44c3-99b5-4bbe55405321"},{"name":"Update Business Plugin","id":"3df530b9-192d-4710-b179-3e0587ab9aa3","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\",\n    \"settings\": \"*\",\n    \"unsecuredSettings\": \"*\",\n    \"displayName\": \"string_optional\",\n    \"version\": \"string_optional\",\n    \"storefrontIds\": [\n        null\n    ]\n}"},"url":"https://api.quiverstest.com/v1/Plugins/Update?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Updates a business plugin's settings and configuration.</p>\n","urlObject":{"protocol":"https","path":["v1","Plugins","Update"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"3df530b9-192d-4710-b179-3e0587ab9aa3"},{"name":"Get Business Plugin Timers","id":"849770e5-552b-4794-8a7a-0b2e56170af9","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Plugins/GetTimers?business=&id=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Gets a business plugin's timer settings.</p>\n","urlObject":{"protocol":"https","path":["v1","Plugins","GetTimers"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"id","value":""}],"variable":[]}},"response":[],"_postman_id":"849770e5-552b-4794-8a7a-0b2e56170af9"},{"name":"Update Business Plugin Timers","id":"58bf394e-f899-4651-b693-f4058c83144f","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\",\n    \"timers\": \"*\"\n}"},"url":"https://api.quiverstest.com/v1/Plugins/UpdateTimers?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Updates a business plugin's timer settings. Prexisting fields omitted from the 'timers' property will remain unchanged.</p>\n","urlObject":{"protocol":"https","path":["v1","Plugins","UpdateTimers"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"58bf394e-f899-4651-b693-f4058c83144f"},{"name":"Update Business Plugin Version","id":"fee96fe5-973c-4873-a77d-5718c53c7224","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\",\n    \"version\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/Plugins/UpdateVersion?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Updates a business plugin's version setting only.</p>\n","urlObject":{"protocol":"https","path":["v1","Plugins","UpdateVersion"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"fee96fe5-973c-4873-a77d-5718c53c7224"},{"name":"Activate Business Plugin","id":"c26066a3-0bf2-4163-97c4-376155176b31","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/Plugins/Activate?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Activates a currently disabled business plugin.</p>\n","urlObject":{"protocol":"https","path":["v1","Plugins","Activate"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"c26066a3-0bf2-4163-97c4-376155176b31"},{"name":"Deactivate Business Plugin","id":"38ee82df-87ef-4459-bf58-ae9d4f37c22c","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/Plugins/Deactivate?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Deactivates a currently enabled business plugin.</p>\n","urlObject":{"protocol":"https","path":["v1","Plugins","Deactivate"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"38ee82df-87ef-4459-bf58-ae9d4f37c22c"},{"name":"Remove Business Plugin","id":"3ae6c9bb-e2aa-4a8d-b87d-7412e915eb6c","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/Plugins/Remove?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Fully removes a business plugin, this will de-acticate it if activated, and remove it from their panel.</p>\n","urlObject":{"protocol":"https","path":["v1","Plugins","Remove"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"3ae6c9bb-e2aa-4a8d-b87d-7412e915eb6c"},{"name":"Edit Plugin Details","id":"64677d58-b49c-492d-9956-8deea3a1f6d7","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"refId\": \"string_required\",\n    \"pictureId\": \"number_optional\",\n    \"description\": \"string_optional\"\n}"},"url":"https://api.quiverstest.com/v1/Plugins/Edit","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>QuiversAdmin</code></li>\n</ul>\n<p>Updates the picture and description content of a published plugin. Only available to Quivers platform admins.</p>\n","urlObject":{"protocol":"https","path":["v1","Plugins","Edit"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"64677d58-b49c-492d-9956-8deea3a1f6d7"}],"id":"d7da54a8-1b62-47c3-9821-13883efea2b8","_postman_id":"d7da54a8-1b62-47c3-9821-13883efea2b8","description":""},{"name":"Point Of Sale Systems","item":[{"name":"Point Of Sale Systems - Get All","id":"79de47b3-3f0a-47cd-973e-64cfa7755a82","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/PointOfSaleSystems/All","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Up to 86400s</code></li>\n</ul>\n<p>Returns all point of sale systems, this is used for indicating what POS a retailer uses upon business create.</p>\n","urlObject":{"protocol":"https","path":["v1","PointOfSaleSystems","All"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"79de47b3-3f0a-47cd-973e-64cfa7755a82"},{"name":"Point Of Sale Systems - Create","id":"63a6c0de-c422-44fc-8815-623d70d429af","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/PointOfSaleSystems/Create","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n</ul>\n<p>Creates a new POS reference, if one does not yet exist.</p>\n","urlObject":{"protocol":"https","path":["v1","PointOfSaleSystems","Create"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"63a6c0de-c422-44fc-8815-623d70d429af"}],"id":"1f231231-0eaf-47a9-8e47-39924d82efe8","_postman_id":"1f231231-0eaf-47a9-8e47-39924d82efe8","description":""},{"name":"Price Types","item":[{"name":"Search price types","id":"f704d26b-b100-4c45-936c-cf4e18b4537d","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/PriceTypes/Search?business=&searchTerm=&pagesize=20&page=1&sort={}","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Returns a list of the price types for a particular business, based on a search term.</p>\n","urlObject":{"protocol":"https","path":["v1","PriceTypes","Search"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"20"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"}],"variable":[]}},"response":[],"_postman_id":"f704d26b-b100-4c45-936c-cf4e18b4537d"},{"name":"Create a price type","id":"ec2676ad-153e-4cf6-a484-917fdfd1995d","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"string_required\",\n    \"currency\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/PriceTypes/Create?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Creates a new price type for a particular business.</p>\n","urlObject":{"protocol":"https","path":["v1","PriceTypes","Create"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"ec2676ad-153e-4cf6-a484-917fdfd1995d"},{"name":"Update an existing price type","id":"3d355894-0650-4463-bcb7-936568f22e30","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\",\n    \"name\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/PriceTypes/Update?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Updates the name of an already existing price type for a particular business.</p>\n","urlObject":{"protocol":"https","path":["v1","PriceTypes","Update"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"3d355894-0650-4463-bcb7-936568f22e30"},{"name":"Deletes an existing price type","id":"484bba1d-8abd-4503-95ad-ac8fbcc8acc4","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/PriceTypes/Delete?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Deletes a price type for a particular business.</p>\n","urlObject":{"protocol":"https","path":["v1","PriceTypes","Delete"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"484bba1d-8abd-4503-95ad-ac8fbcc8acc4"}],"id":"dbbf0b35-079d-405e-82f5-8a60f212e9ab","_postman_id":"dbbf0b35-079d-405e-82f5-8a60f212e9ab","description":""},{"name":"Product Collections","item":[{"name":"Prosumer Portals - Search","id":"ab8e3240-1085-49b9-a99c-1b10c6aec496","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/ProductCollections/Search?business=&searchTerm=&pagesize=20&page=1&sort={}","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Searches across all product collections belonging to a business.</p>\n","urlObject":{"protocol":"https","path":["v1","ProductCollections","Search"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"20"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"}],"variable":[]}},"response":[],"_postman_id":"ab8e3240-1085-49b9-a99c-1b10c6aec496"},{"name":"Prosumer Portals - Get By Id","id":"43ec1497-da08-4391-b992-deed4b9ca8e2","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/ProductCollections/GetById?business=&id=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Return a specificproduct collection based on its id.</p>\n","urlObject":{"protocol":"https","path":["v1","ProductCollections","GetById"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"id","value":""}],"variable":[]}},"response":[],"_postman_id":"43ec1497-da08-4391-b992-deed4b9ca8e2"},{"name":"Product Collections - Create","id":"f7eddac6-ce57-4efd-bc39-fe78c17d8d72","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"string_required\",\n    \"description\": \"string_optional\",\n    \"matchAnyRule\": \"boolean_optional (default: true)\",\n    \"manuallyMapped\": \"boolean_optional\"\n}"},"url":"https://api.quiverstest.com/v1/ProductCollections/Create?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Creates a new product collection for a business.</p>\n","urlObject":{"protocol":"https","path":["v1","ProductCollections","Create"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"f7eddac6-ce57-4efd-bc39-fe78c17d8d72"},{"name":"Product Collections - Update","id":"161c4a24-cde0-41d1-90a3-8b57f9af9760","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\",\n    \"name\": \"string_required\",\n    \"description\": \"string_optional\",\n    \"matchAnyRule\": \"boolean_optional (default: true)\",\n    \"manuallyMapped\": \"boolean_optional\",\n    \"shippingPolicyIds\": [\n        null\n    ],\n    \"claimingPolicyIds\": [\n        null\n    ],\n    \"templateIds\": [\n        null\n    ]\n}"},"url":"https://api.quiverstest.com/v1/ProductCollections/Update?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Updates the properties of an existing product collection for a business.</p>\n","urlObject":{"protocol":"https","path":["v1","ProductCollections","Update"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"161c4a24-cde0-41d1-90a3-8b57f9af9760"},{"name":"Product Collections - Delete","id":"1a8f906f-4c49-418a-b1e5-f1f2a72733cc","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/ProductCollections/Delete?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Deletes an existing product collection from a business.</p>\n","urlObject":{"protocol":"https","path":["v1","ProductCollections","Delete"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"1a8f906f-4c49-418a-b1e5-f1f2a72733cc"},{"name":"Product Collections - Add Products","id":"feb71e39-728a-4c1c-b562-2b80e62a40d2","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\",\n    \"productIds\": [\n        null\n    ]\n}"},"url":"https://api.quiverstest.com/v1/ProductCollections/AddProducts?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Adds products to a manually mapped product collection.</p>\n","urlObject":{"protocol":"https","path":["v1","ProductCollections","AddProducts"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"feb71e39-728a-4c1c-b562-2b80e62a40d2"},{"name":"Product Collections - Remove Products","id":"996db00a-5449-4866-837d-f451a5b50ecb","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\",\n    \"productIds\": [\n        null\n    ]\n}"},"url":"https://api.quiverstest.com/v1/ProductCollections/RemoveProducts?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Removes products from a manually mapped product collection.</p>\n","urlObject":{"protocol":"https","path":["v1","ProductCollections","RemoveProducts"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"996db00a-5449-4866-837d-f451a5b50ecb"},{"name":"Product Collections - Create Rule","id":"dc10630f-1bb9-4e2e-be09-0e3f3609a6f8","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"productCollectionId\": \"number_required\",\n    \"tableRefId\": \"string_required\",\n    \"fieldRefId\": \"string_required\",\n    \"expressionRefId\": \"string_required\",\n    \"value\": \"string_required\",\n    \"metadata\": \"*\"\n}"},"url":"https://api.quiverstest.com/v1/ProductCollections/CreateRule?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Creates a new rule for a product collection, to define what belongs to that collection.</p>\n","urlObject":{"protocol":"https","path":["v1","ProductCollections","CreateRule"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"dc10630f-1bb9-4e2e-be09-0e3f3609a6f8"},{"name":"Product Collections - Update Rule","id":"a2f87c5c-79af-4089-a637-e72dbc6c60b1","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\",\n    \"tableRefId\": \"string_required\",\n    \"fieldRefId\": \"string_required\",\n    \"expressionRefId\": \"string_required\",\n    \"value\": \"string_required\",\n    \"metadata\": \"*\"\n}"},"url":"https://api.quiverstest.com/v1/ProductCollections/UpdateRule?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Updates an existing rule for a product collection, to define what belongs to that collection.</p>\n","urlObject":{"protocol":"https","path":["v1","ProductCollections","UpdateRule"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"a2f87c5c-79af-4089-a637-e72dbc6c60b1"},{"name":"Product Collections - Delete Rule","id":"35eeba4d-d00d-48e9-82cd-40abf1433b33","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/ProductCollections/DeleteRule?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Deletes an existing rule from a product collection, for a business.</p>\n","urlObject":{"protocol":"https","path":["v1","ProductCollections","DeleteRule"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"35eeba4d-d00d-48e9-82cd-40abf1433b33"}],"id":"a10b6858-34f9-4ece-93b4-b881b3a9e2c4","_postman_id":"a10b6858-34f9-4ece-93b4-b881b3a9e2c4","description":""},{"name":"Products","item":[{"name":"Products - Search Light","id":"be0abb07-a89e-4008-8e5d-456e43afeb5b","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Products/SearchLight?business=&searchTerm=&storefrontId=&includeVariants=false","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Up to 60s</code></li>\n</ul>\n<p>Lightweight search to return all viable product names &amp; ids for a given business.</p>\n","urlObject":{"protocol":"https","path":["v1","Products","SearchLight"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"storefrontId","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"includeVariants","value":"false"}],"variable":[]}},"response":[],"_postman_id":"be0abb07-a89e-4008-8e5d-456e43afeb5b"},{"name":"Products - Clone","id":"c30381bf-2020-44b4-8ee4-77a195e57d6b","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"productId\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/Products/Clone?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Makes a full clone of a product except for any mappings such as claiming policies, shipping policies, discounts etc</p>\n","urlObject":{"protocol":"https","path":["v1","Products","Clone"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"c30381bf-2020-44b4-8ee4-77a195e57d6b"},{"name":"Products - Create","id":"3a7a992d-53fa-414b-a8c4-1872100d4e92","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"string_required\",\n    \"refId\": \"string_optional\",\n    \"brand\": \"string_optional\",\n    \"tags\": [\n        null\n    ]\n}"},"url":"https://api.quiverstest.com/v1/Products/Create?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Create a new product catalog item, using minimal starting data.</p>\n","urlObject":{"protocol":"https","path":["v1","Products","Create"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"3a7a992d-53fa-414b-a8c4-1872100d4e92"},{"name":"Products - Update","id":"2d2e1252-880e-4d39-9a9d-af0447ed0b7c","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\",\n    \"name\": \"string_required\",\n    \"refId\": \"string_optional\",\n    \"brand\": \"string_optional\",\n    \"tags\": [\n        null\n    ]\n}"},"url":"https://api.quiverstest.com/v1/Products/Update?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Update an existing product catalog item.</p>\n","urlObject":{"protocol":"https","path":["v1","Products","Update"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"2d2e1252-880e-4d39-9a9d-af0447ed0b7c"},{"name":"Products - Delete","id":"bfe02053-4bf5-47c3-9764-ab38e1775dfd","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"ids\": [\n        null\n    ]\n}"},"url":"https://api.quiverstest.com/v1/Products/Delete?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Deletes one or many products from a business's catalog.</p>\n","urlObject":{"protocol":"https","path":["v1","Products","Delete"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"bfe02053-4bf5-47c3-9764-ab38e1775dfd"},{"name":"Products - Sync","id":"46eb7c4a-ff70-4957-8cf9-e8bb0c197624","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"products\": [\n        {}\n    ]\n}"},"url":"https://api.quiverstest.com/v1/Products/Sync?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>This is used to bulk upsert a lot of product data at once. New products will be created, existing ones updated.</p>\n","urlObject":{"protocol":"https","path":["v1","Products","Sync"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"46eb7c4a-ff70-4957-8cf9-e8bb0c197624"}],"id":"b42d4758-8766-4904-931c-a7957c37aa6e","_postman_id":"b42d4758-8766-4904-931c-a7957c37aa6e","description":""},{"name":"Prosumer Portals","item":[{"name":"Prosumer Portals - Search","id":"595058f5-a521-4ab3-b270-1ccd7581449d","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/ProsumerPortals/Search?business=&searchTerm=&pagesize=20&page=1&sort={}","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code>, <code>SalesRep</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Searches across all prosumer portals belonding to a business.</p>\n","urlObject":{"protocol":"https","path":["v1","ProsumerPortals","Search"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"20"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"}],"variable":[]}},"response":[],"_postman_id":"595058f5-a521-4ab3-b270-1ccd7581449d"},{"name":"Prosumer Portals - Search Light","id":"21571d06-71de-428c-92d4-b17bcaee2f27","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/ProsumerPortals/SearchLight?business=&includeDisabled=true","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code>, <code>SalesRep</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Lightweight search across all prosumer portals belonging to a business.</p>\n","urlObject":{"protocol":"https","path":["v1","ProsumerPortals","SearchLight"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"includeDisabled","value":"true"}],"variable":[]}},"response":[],"_postman_id":"21571d06-71de-428c-92d4-b17bcaee2f27"},{"name":"Prosumer Portals - Get By Domain","id":"533bbde2-4c5c-4cb9-bd30-fe01c65f904d","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/ProsumerPortals/GetByDomain?domain=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Return a specific prosumer portal based on its subdomain or custom domain.</p>\n","urlObject":{"protocol":"https","path":["v1","ProsumerPortals","GetByDomain"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"domain","value":""}],"variable":[]}},"response":[],"_postman_id":"533bbde2-4c5c-4cb9-bd30-fe01c65f904d"},{"name":"Prosumer Portals - Get By Id","id":"a1f2188e-f98f-48a7-a5fd-61fa53ac1e2b","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/ProsumerPortals/GetById?business=&id=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code>, <code>SalesRep</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Return a specific prosumer portal based on its id.</p>\n","urlObject":{"protocol":"https","path":["v1","ProsumerPortals","GetById"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"id","value":""}],"variable":[]}},"response":[],"_postman_id":"a1f2188e-f98f-48a7-a5fd-61fa53ac1e2b"},{"name":"Prosumer Portals - Get By Consumer Group Id","id":"b620c8d5-7364-4de6-ae43-72514f148a43","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/ProsumerPortals/GetByConsumerGroupId?business=&consumerGroupId=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Return a specific prosumer portal based on its consumer group id.</p>\n","urlObject":{"protocol":"https","path":["v1","ProsumerPortals","GetByConsumerGroupId"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"consumerGroupId","value":""}],"variable":[]}},"response":[],"_postman_id":"b620c8d5-7364-4de6-ae43-72514f148a43"},{"name":"Prosumer Portals - Create","id":"c33d64c4-4405-4644-b68a-76962f32d972","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"consumerGroupId\": \"string_required\",\n    \"name\": \"string_required\",\n    \"subDomain\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/ProsumerPortals/Create?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Creates a new prosumer portal for a consumer group, if one doesn't exist.</p>\n","urlObject":{"protocol":"https","path":["v1","ProsumerPortals","Create"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"c33d64c4-4405-4644-b68a-76962f32d972"},{"name":"Prosumer Portals - Update","id":"1177a7ed-4d25-4d5c-b286-3b28e91ca041","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\",\n    \"name\": \"string_required\",\n    \"culture\": \"string_optional (default: \\\"en-US\\\")\",\n    \"subDomain\": \"string_optional\",\n    \"domainId\": \"number_optional\",\n    \"proStoreLink\": \"string_optional\",\n    \"proStoreLabel\": \"string_optional\",\n    \"proStorefrontId\": \"string_optional\",\n    \"appearance\": {\n        \"logoPictureId\": \"number_optional\",\n        \"backgroundPictureId\": \"number_optional\",\n        \"themeColor\": \"string_optional\",\n        \"altColor\": \"string_optional\",\n        \"fontColor\": \"string_optional\",\n        \"splashTitle\": \"string_optional\",\n        \"splashDescription\": \"string_optional\",\n        \"customCss\": \"string_optional\",\n        \"programDescription\": \"string_optional\",\n        \"trainingSectionTitle\": \"string_optional\"\n    },\n    \"settings\": {\n        \"enableManualEntrySales\": \"boolean_required\",\n        \"enableLeaderboard\": \"boolean_required\",\n        \"enableAffiliateLinks\": \"boolean_required\",\n        \"enableAffiliateCodes\": \"boolean_required\",\n        \"enableRegistration\": \"boolean_required\",\n        \"enableRewardsProgram\": \"boolean_required\",\n        \"enableGoals\": \"boolean_required\",\n        \"enableProStore\": \"boolean_required\",\n        \"enableDynamicGraphColors\": \"boolean_required\",\n        \"defaultPreloadedPoints\": \"number_optional\",\n        \"baselinePointsRate\": \"number_optional\",\n        \"pointsMaximum\": \"number_required\",\n        \"pointSpendLimit\": \"number_required\",\n        \"pointsName\": \"string_optional (default: \\\"Points\\\")\",\n        \"registrationTypeId\": \"number_required\",\n        \"uploadedItemTypeId\": \"number_optional (default: 10)\",\n        \"rewardProgramValidFromUtc\": \"date_optional\",\n        \"rewardProgramValidToUtc\": \"date_optional\",\n        \"defaultCurrency\": \"string_optional (default: \\\"USD\\\")\",\n        \"cashRedeemLimitTotal\": \"number_optional\",\n        \"cashRedeemLimitPerUser\": \"number_optional\",\n        \"representPointsAsCash\": \"boolean_optional\",\n        \"entryCodeLabel\": \"string_optional\"\n    },\n    \"affiliateLinks\": [\n        {\n            \"name\": \"string_required\",\n            \"baseLink\": \"string_required\"\n        }\n    ],\n    \"affiliateCodes\": [\n        {\n            \"name\": \"string_required\",\n            \"typeId\": \"number_required\",\n            \"discountId\": \"number_optional\",\n            \"storefrontId\": \"string_optional\"\n        }\n    ],\n    \"goals\": {\n        \"referredSalesGoal\": \"number_optional\",\n        \"referredCustomersGoal\": \"number_optional\"\n    }\n}"},"url":"https://api.quiverstest.com/v1/ProsumerPortals/Update?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Creates a new prosumer portal for a consumer group, if one doesn't exist.</p>\n","urlObject":{"protocol":"https","path":["v1","ProsumerPortals","Update"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"1177a7ed-4d25-4d5c-b286-3b28e91ca041"},{"name":"Prosumer Portals - Create Reward","id":"282adb0f-efd6-43b1-83b1-967e31a233ee","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"prosumerPortalId\": \"string_required\",\n    \"name\": \"string_optional\",\n    \"description\": \"string_optional\",\n    \"typeId\": \"number_required\",\n    \"pointCost\": \"number_optional\",\n    \"redeemDepletesPoints\": \"boolean_optional (default: true)\",\n    \"redeemLimit\": \"number_optional\",\n    \"discount\": \"string_optional\",\n    \"cashAmount\": \"number_optional\",\n    \"currency\": \"string_optional\",\n    \"consumerGroupId\": \"string_optional\",\n    \"redirectURL\": \"string_optional\",\n    \"pictureId\": \"number_optional\",\n    \"product\": \"string_optional\",\n    \"codes\": [\n        {\n            \"required\": false\n        }\n    ],\n    \"cashAmountDeterminedAtRedemption\": \"boolean_optional\"\n}"},"url":"https://api.quiverstest.com/v1/ProsumerPortals/CreateReward?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Creates a new reward type for a prosumer portal.</p>\n","urlObject":{"protocol":"https","path":["v1","ProsumerPortals","CreateReward"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"282adb0f-efd6-43b1-83b1-967e31a233ee"},{"name":"Prosumer Portals - Update Reward","id":"b94f9091-030c-41ad-bcba-5f09330be5dc","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"prosumerPortalId\": \"string_required\",\n    \"id\": \"number_required\",\n    \"name\": \"string_optional\",\n    \"description\": \"string_optional\",\n    \"typeId\": \"number_required\",\n    \"pointCost\": \"number_optional\",\n    \"redeemDepletesPoints\": \"boolean_optional (default: true)\",\n    \"redeemLimit\": \"number_optional\",\n    \"discount\": \"string_optional\",\n    \"cashAmount\": \"number_optional\",\n    \"currency\": \"string_optional\",\n    \"consumerGroupId\": \"string_optional\",\n    \"redirectURL\": \"string_optional\",\n    \"pictureId\": \"number_optional\",\n    \"product\": \"string_optional\",\n    \"codes\": [\n        {\n            \"required\": false\n        }\n    ],\n    \"cashAmountDeterminedAtRedemption\": \"boolean_optional\"\n}"},"url":"https://api.quiverstest.com/v1/ProsumerPortals/UpdateReward?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Updates an existing reward type for a prosumer portal.</p>\n","urlObject":{"protocol":"https","path":["v1","ProsumerPortals","UpdateReward"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"b94f9091-030c-41ad-bcba-5f09330be5dc"},{"name":"Prosumer Portals - Set Rewards Order","id":"da317cb1-a786-4217-8e33-bdddf7ad6ac4","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"prosumerPortalId\": \"string_required\",\n    \"rewardIds\": [\n        {\n            \"required\": true\n        }\n    ]\n}"},"url":"https://api.quiverstest.com/v1/ProsumerPortals/SetRewardsOrder?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Set the display order for a Prosumer Portal's Rewards.</p>\n","urlObject":{"protocol":"https","path":["v1","ProsumerPortals","SetRewardsOrder"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"da317cb1-a786-4217-8e33-bdddf7ad6ac4"},{"name":"Prosumer Portals - Delete Reward","id":"5e13dbe9-6c16-4977-abec-90a87bb3a71b","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"prosumerPortalId\": \"string_required\",\n    \"id\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/ProsumerPortals/DeleteReward?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Deletes an existing reward type for a prosumer portal.</p>\n","urlObject":{"protocol":"https","path":["v1","ProsumerPortals","DeleteReward"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"5e13dbe9-6c16-4977-abec-90a87bb3a71b"},{"name":"Prosumer Portals - Create Rule","id":"36221263-2e28-4c56-9f66-7a38876530fd","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"prosumerPortalId\": \"string_required\",\n    \"name\": \"string_optional\",\n    \"description\": \"string_optional\",\n    \"typeId\": \"number_required\",\n    \"pointReward\": \"number_optional\",\n    \"mediaURL\": \"string_optional\",\n    \"pictureId\": \"number_optional\",\n    \"product\": \"string_optional\"\n}"},"url":"https://api.quiverstest.com/v1/ProsumerPortals/CreateRule?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Creates a new rule type for a prosumer portal.</p>\n","urlObject":{"protocol":"https","path":["v1","ProsumerPortals","CreateRule"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"36221263-2e28-4c56-9f66-7a38876530fd"},{"name":"Prosumer Portals - Update Rule","id":"079ebc36-edfc-4870-a82a-96480e1d535f","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"prosumerPortalId\": \"string_required\",\n    \"id\": \"number_required\",\n    \"name\": \"string_optional\",\n    \"description\": \"string_optional\",\n    \"typeId\": \"number_required\",\n    \"pointReward\": \"number_optional\",\n    \"mediaURL\": \"string_optional\",\n    \"pictureId\": \"number_optional\",\n    \"product\": \"string_optional\"\n}"},"url":"https://api.quiverstest.com/v1/ProsumerPortals/UpdateRule?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Updates an existing rule type for a prosumer portal.</p>\n","urlObject":{"protocol":"https","path":["v1","ProsumerPortals","UpdateRule"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"079ebc36-edfc-4870-a82a-96480e1d535f"},{"name":"Prosumer Portals - Set Rules Order","id":"14db28e0-8b0b-407d-9c83-957821343deb","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"prosumerPortalId\": \"string_required\",\n    \"ruleIds\": [\n        {\n            \"required\": true\n        }\n    ]\n}"},"url":"https://api.quiverstest.com/v1/ProsumerPortals/SetRulesOrder?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Set the display order for a Prosumer Portal's Rules.</p>\n","urlObject":{"protocol":"https","path":["v1","ProsumerPortals","SetRulesOrder"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"14db28e0-8b0b-407d-9c83-957821343deb"},{"name":"Prosumer Portals - Delete Rule","id":"f4c910d8-b7bb-4a60-9d98-2031efcb42fa","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"prosumerPortalId\": \"string_required\",\n    \"id\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/ProsumerPortals/DeleteRule?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Deletes an existing rule type for a prosumer portal.</p>\n","urlObject":{"protocol":"https","path":["v1","ProsumerPortals","DeleteRule"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"f4c910d8-b7bb-4a60-9d98-2031efcb42fa"},{"name":"Prosumer Portals - Enable","id":"4c7b6a2c-f510-4d74-a445-76b837dc7483","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/ProsumerPortals/Enable?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Enables a prosumer portal which is currently disabled.</p>\n","urlObject":{"protocol":"https","path":["v1","ProsumerPortals","Enable"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"4c7b6a2c-f510-4d74-a445-76b837dc7483"},{"name":"Prosumer Portals - Disable","id":"f6352d07-e70d-4a9f-90f4-6dc6b0aefc6e","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/ProsumerPortals/Disable?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Disables a prosumer portal which is currently enabled.</p>\n","urlObject":{"protocol":"https","path":["v1","ProsumerPortals","Disable"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"f6352d07-e70d-4a9f-90f4-6dc6b0aefc6e"}],"id":"20d31d24-0ce3-4b72-b164-4d0cc90dc331","_postman_id":"20d31d24-0ce3-4b72-b164-4d0cc90dc331","description":""},{"name":"Prosumer Sales","item":[{"name":"Prosumer Sales - Search","id":"d2007867-450f-46c1-ba84-7631f0eb705c","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/ProsumerSales/Search?business=&prosumerPortalId=&prosumerId=&searchTerm=&pagesize=20&page=1&sort={}","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Searches across prosumer referred sales based on various possible criteria.</p>\n","urlObject":{"protocol":"https","path":["v1","ProsumerSales","Search"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"prosumerPortalId","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"prosumerId","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"20"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"}],"variable":[]}},"response":[],"_postman_id":"d2007867-450f-46c1-ba84-7631f0eb705c"},{"name":"Prosumer Sales - Sales Report","id":"d30cfd5c-32df-4bd2-9d3e-c7ae4f8b5784","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/ProsumerSales/GetSalesReport?prosumerPortalId=&prosumerId=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Provides a breakdown of sales by year/month for either the signed in prosumer, or a specific prosumer by id.</p>\n","urlObject":{"protocol":"https","path":["v1","ProsumerSales","GetSalesReport"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"prosumerPortalId","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"prosumerId","value":""}],"variable":[]}},"response":[],"_postman_id":"d30cfd5c-32df-4bd2-9d3e-c7ae4f8b5784"},{"name":"Prosumer Sales - Create","id":"8007a4a2-970d-40a4-bf44-ccdcae6038d9","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"orderNumber\": \"string_optional\",\n    \"customer\": {\n        \"firstname\": \"string_optional\",\n        \"lastname\": \"string_optional\",\n        \"email\": \"string_optional\",\n        \"phoneNumber\": \"string_optional\"\n    },\n    \"location\": {\n        \"countryId\": \"number_optional\",\n        \"country\": \"string_optional\",\n        \"regionId\": \"number_optional\",\n        \"region\": \"string_optional\"\n    },\n    \"items\": [\n        {\n            \"id\": \"number_optional\",\n            \"name\": \"string_optional\",\n            \"quantity\": \"number_required\",\n            \"unitPrice\": \"number_required\"\n        }\n    ],\n    \"amount\": \"number_optional\",\n    \"currency\": \"string_required\",\n    \"pictureAttachmentId\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/ProsumerSales/Create?prosumerPortalId=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n</ul>\n<p>Creates a referred in (by prosumer) sale for a prosumer portal.</p>\n","urlObject":{"protocol":"https","path":["v1","ProsumerSales","Create"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"prosumerPortalId","value":""}],"variable":[]}},"response":[],"_postman_id":"8007a4a2-970d-40a4-bf44-ccdcae6038d9"},{"name":"Prosumer Sales - Approve","id":"497b963d-224e-42a9-92ba-8734b48797f1","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/ProsumerSales/Approve?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>SalesRep</code></li>\n</ul>\n<p>Approves a sale submitted by a prosumer.</p>\n","urlObject":{"protocol":"https","path":["v1","ProsumerSales","Approve"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"497b963d-224e-42a9-92ba-8734b48797f1"},{"name":"Prosumer Sales - Reject","id":"3d6ffb42-6d17-43ba-b77e-c10d6318f30d","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\",\n    \"reviewedText\": \"string_optional\"\n}"},"url":"https://api.quiverstest.com/v1/ProsumerSales/Reject?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>SalesRep</code></li>\n</ul>\n<p>Rejects a sale submitted by a prosumer.</p>\n","urlObject":{"protocol":"https","path":["v1","ProsumerSales","Reject"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"3d6ffb42-6d17-43ba-b77e-c10d6318f30d"}],"id":"9308f9eb-c6bd-46ef-b6b1-a30d9d49cbbe","_postman_id":"9308f9eb-c6bd-46ef-b6b1-a30d9d49cbbe","description":""},{"name":"Prosumers","item":[{"name":"Prosumers - Search Leaderboard","id":"bd6494ce-30e2-4147-8648-310923d20c25","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Prosumers/SearchLeaderboard?prosumerPortalId=&searchTerm=&pagesize=20&page=1&sort={}","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Searches across the prosumers for a prosumer portal to show leaderboard results.</p>\n","urlObject":{"protocol":"https","path":["v1","Prosumers","SearchLeaderboard"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"prosumerPortalId","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"20"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"}],"variable":[]}},"response":[],"_postman_id":"bd6494ce-30e2-4147-8648-310923d20c25"},{"name":"Prosumers - Point History","id":"35c4fd70-522e-435c-a600-e1da91f4ce10","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Prosumers/PointHistory?business=&prosumerId=&consumerGroupId=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code>, <code>SalesRep</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Get the history of points gained and redeemed for a Prosumer.</p>\n","urlObject":{"protocol":"https","path":["v1","Prosumers","PointHistory"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>number_required</p>\n","type":"text/plain"},"key":"prosumerId","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"consumerGroupId","value":""}],"variable":[]}},"response":[],"_postman_id":"35c4fd70-522e-435c-a600-e1da91f4ce10"},{"name":"Prosumers - Affiliate Tools","id":"7743be70-444e-4f6c-8a87-b4bebefcf53f","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Prosumers/AffiliateTools?business=&prosumerId=&consumerGroupId=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code>, <code>SalesRep</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Get the affiliates tools available to a Prosumer.</p>\n","urlObject":{"protocol":"https","path":["v1","Prosumers","AffiliateTools"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"prosumerId","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"consumerGroupId","value":""}],"variable":[]}},"response":[],"_postman_id":"7743be70-444e-4f6c-8a87-b4bebefcf53f"},{"name":"Prosumers - My Profile","id":"05e114f8-2368-4e7a-bbb8-1f4809dd7922","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Prosumers/MyProfile?prosumerPortalId=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Returns the currently logged in user's prosumer profile for a given prosumer portal.</p>\n","urlObject":{"protocol":"https","path":["v1","Prosumers","MyProfile"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"prosumerPortalId","value":""}],"variable":[]}},"response":[],"_postman_id":"05e114f8-2368-4e7a-bbb8-1f4809dd7922"},{"name":"Prosumers - Update Profile","id":"ba8a8c1d-db64-4fbc-95d2-813a4c5f85c6","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"aliasName\": \"string_required\",\n    \"pictureId\": \"number_optional (default: true)\"\n}"},"url":"https://api.quiverstest.com/v1/Prosumers/UpdateProfile?prosumerPortalId=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n</ul>\n<p>Opts a consumer in to participate in a prosumer portal as a prosumer.</p>\n","urlObject":{"protocol":"https","path":["v1","Prosumers","UpdateProfile"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"prosumerPortalId","value":""}],"variable":[]}},"response":[],"_postman_id":"ba8a8c1d-db64-4fbc-95d2-813a4c5f85c6"},{"name":"Prosumers - My Tools","id":"dfb402fa-8776-4f6f-8676-53aa7518a2db","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Prosumers/MyTools?prosumerPortalId=&prosumerId=&url=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Returns the currently logged in user's prosumer tools for a given prosumer portal.</p>\n","urlObject":{"protocol":"https","path":["v1","Prosumers","MyTools"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"prosumerPortalId","value":""},{"description":{"content":"<p>number_required</p>\n","type":"text/plain"},"key":"prosumerId","value":""},{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"url","value":""}],"variable":[]}},"response":[],"_postman_id":"dfb402fa-8776-4f6f-8676-53aa7518a2db"},{"name":"Prosumers - Complete Media","id":"303da0b8-69a2-4c98-b6e5-55610e643f11","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"prosumerPortalId\": \"string_required\",\n    \"prosumerId\": \"number_required\",\n    \"ruleId\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/Prosumers/CompleteMedia","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n</ul>\n<p>This allows a prosumer to acknowledge that they've 'completed' a media watch for a prosumer portal, earning them points.</p>\n","urlObject":{"protocol":"https","path":["v1","Prosumers","CompleteMedia"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"303da0b8-69a2-4c98-b6e5-55610e643f11"},{"name":"Prosumers - Redeem Reward","id":"d95ef05b-7753-446e-876e-b7b186bd4a3f","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"prosumerPortalId\": \"string_required\",\n    \"prosumerId\": \"number_required\",\n    \"rewardId\": \"number_required\",\n    \"target\": \"string_optional\",\n    \"cashAmount\": \"number_optional\"\n}"},"url":"https://api.quiverstest.com/v1/Prosumers/RedeemReward","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n</ul>\n<p>This allows a prosumer to consumer points to redeem a reward available in a prosumer portal.</p>\n","urlObject":{"protocol":"https","path":["v1","Prosumers","RedeemReward"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d95ef05b-7753-446e-876e-b7b186bd4a3f"},{"name":"Prosumers - Opt In","id":"e1497b19-aa57-4fba-9f1d-afe6c461244b","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"aliasName\": \"string_required\",\n    \"pictureId\": \"number_optional\"\n}"},"url":"https://api.quiverstest.com/v1/Prosumers/OptIn?prosumerPortalId=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n</ul>\n<p>Opts a consumer in to participate in a prosumer portal as a prosumer.</p>\n","urlObject":{"protocol":"https","path":["v1","Prosumers","OptIn"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"prosumerPortalId","value":""}],"variable":[]}},"response":[],"_postman_id":"e1497b19-aa57-4fba-9f1d-afe6c461244b"},{"name":"Prosumers - Opt Out","id":"55e3ab97-2a0e-49c6-97c1-9434b5b35dcc","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Prosumers/OptOut?prosumerPortalId=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n</ul>\n<p>Reverses the opt-in for a prosumer for a prosumer portal.</p>\n","urlObject":{"protocol":"https","path":["v1","Prosumers","OptOut"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"prosumerPortalId","value":""}],"variable":[]}},"response":[],"_postman_id":"55e3ab97-2a0e-49c6-97c1-9434b5b35dcc"},{"name":"Prosumers - Invite","id":"2d4bb5fd-c409-4044-8c7b-9217523b0ebb","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"portalId\": \"string_required\",\n    \"email\": \"string_required\",\n    \"storeNumber\": \"string_required\",\n    \"firstName\": \"string_required\",\n    \"lastName\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/Prosumers/Invite","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>SalesRep</code></li>\n</ul>\n<p>Sends an email invitation to register as a Prosumer. Storenumber may be either a retailer businessRefId or a store number from connection.retailerStoreNumber.</p>\n","urlObject":{"protocol":"https","path":["v1","Prosumers","Invite"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2d4bb5fd-c409-4044-8c7b-9217523b0ebb"},{"name":"Prosumers - Grant Points","id":"4c7431e9-1c7f-48e1-8e3a-095d3186bb35","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"prosumerId\": \"number_required\",\n    \"consumerGroupId\": \"string_required\",\n    \"points\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/Prosumers/GrantPoints?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>SalesRep</code></li>\n</ul>\n<p>Grants reward points to a Prosumer.</p>\n","urlObject":{"protocol":"https","path":["v1","Prosumers","GrantPoints"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"4c7431e9-1c7f-48e1-8e3a-095d3186bb35"},{"name":"Prosumers - Revoke Points","id":"cdcba65f-3dd4-44c5-911c-fbc4cc574487","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"prosumerId\": \"number_required\",\n    \"consumerGroupId\": \"string_required\",\n    \"points\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/Prosumers/RevokePoints?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>SalesRep</code></li>\n</ul>\n<p>Revokes reward points from a Prosumer.</p>\n","urlObject":{"protocol":"https","path":["v1","Prosumers","RevokePoints"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"cdcba65f-3dd4-44c5-911c-fbc4cc574487"}],"id":"fb02cc0f-faf7-4efc-9cf3-827618d877b8","_postman_id":"fb02cc0f-faf7-4efc-9cf3-827618d877b8","description":""},{"name":"Report Metrics","item":[{"name":"Report Metrics - Record Access","id":"c6b4ff77-b42b-498b-9f52-4c9c49e33993","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"cloudFileId\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/ReportMetrics/RecordAccess?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n</ul>\n<p>Record that a user has acessed a report.</p>\n","urlObject":{"protocol":"https","path":["v1","ReportMetrics","RecordAccess"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"c6b4ff77-b42b-498b-9f52-4c9c49e33993"}],"id":"1ed297c1-68bc-450c-8349-bccdc773d6e2","_postman_id":"1ed297c1-68bc-450c-8349-bccdc773d6e2","description":""},{"name":"Reports","item":[{"name":"Reports - Get a Dashboard","id":"88c722aa-eaef-4be6-9f9b-fd47d6b9aabe","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Reports/GetDashboard?business=&dashboard=&reports=&startDate=&endDate=&utcOffset=&grouping=&storefrontId=&storefrontIds=&currency=&settlementBatchId=&businessSettlementAccountId=&dateType=&fulfillmentMethod=&consumerGroupId=&consumerGroupClassification=&prosumerPortalId=&cache=&filterByBusinessRefId=&salesRepUserId=&storefrontClassifications=&pagesize=&page=&sort={}&searchTerm=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code>, <code>SalesRep</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Up to 86400s</code></li>\n</ul>\n<p>Returns a series of report, chart and table data for the specified dashboard.</p>\n","urlObject":{"protocol":"https","path":["v1","Reports","GetDashboard"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"dashboard","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"reports","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"startDate","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"endDate","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"utcOffset","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"grouping","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"storefrontId","value":""},{"description":{"content":"<p>undefined_optional</p>\n","type":"text/plain"},"key":"storefrontIds","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"currency","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"settlementBatchId","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"businessSettlementAccountId","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"dateType","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"fulfillmentMethod","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"consumerGroupId","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"consumerGroupClassification","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"prosumerPortalId","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"cache","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"filterByBusinessRefId","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"salesRepUserId","value":""},{"description":{"content":"<p>undefined_optional</p>\n","type":"text/plain"},"key":"storefrontClassifications","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":""},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""}],"variable":[]}},"response":[],"_postman_id":"88c722aa-eaef-4be6-9f9b-fd47d6b9aabe"},{"name":"Reports - Get a Dashboard for Quivers Admins","id":"ca86b513-63d1-4328-ae53-64f791e3ea70","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Reports/GetQuiversDashboard?dashboard=&reports=&cache=&startDate=&endDate=&utcOffset=&filterByBusinessRefId=&pagesize=&page=&sort={}&searchTerm=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>QuiversAdmin</code>, <code>QuiversReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Up to 86400s</code></li>\n</ul>\n<p>Returns a series of report, chart and table data for the specified QMS dashboard. Quivers Admins only.</p>\n","urlObject":{"protocol":"https","path":["v1","Reports","GetQuiversDashboard"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"dashboard","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"reports","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"cache","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"startDate","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"endDate","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"utcOffset","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"filterByBusinessRefId","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":""},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""}],"variable":[]}},"response":[],"_postman_id":"ca86b513-63d1-4328-ae53-64f791e3ea70"},{"name":"Reports - Search","id":"1d1309a3-fb54-4498-ad72-88c76b0fe336","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Reports/Search?business=&searchTerm=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code>, <code>SalesRep</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Search available dashboards and reports for a business.</p>\n","urlObject":{"protocol":"https","path":["v1","Reports","Search"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""}],"variable":[]}},"response":[],"_postman_id":"1d1309a3-fb54-4498-ad72-88c76b0fe336"},{"name":"Reports - Schedules - Search","id":"6451558f-5eee-468f-8d63-1a539e7bb10a","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Reports/Schedules/Search?business=&searchTerm=&includeDisabled=false&pagesize=50&page=1&sort={}","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code>, <code>QuiversReadOnly</code>, <code>SalesRep</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Search scheduled reports.</p>\n","urlObject":{"protocol":"https","path":["v1","Reports","Schedules","Search"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"includeDisabled","value":"false"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"50"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"}],"variable":[]}},"response":[],"_postman_id":"6451558f-5eee-468f-8d63-1a539e7bb10a"},{"name":"Reports - Schedules - Create","id":"08b988c5-15a0-4653-8b3a-a4ceca9fd5c5","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"options\": {\n        \"business\": \"string_required\",\n        \"dashboard\": \"string_required\",\n        \"reports\": \"string_optional\",\n        \"startDate\": \"string_optional\",\n        \"endDate\": \"string_optional\",\n        \"utcOffset\": \"number_optional\",\n        \"grouping\": \"string_optional\",\n        \"storefrontId\": \"string_optional\",\n        \"storefrontIds\": [\n            {\n                \"required\": false\n            }\n        ],\n        \"currency\": \"string_optional\",\n        \"settlementBatchId\": \"number_optional\",\n        \"businessSettlementAccountId\": \"string_optional\",\n        \"dateType\": \"string_optional\",\n        \"fulfillmentMethod\": \"string_optional\",\n        \"consumerGroupId\": \"string_optional\",\n        \"consumerGroupClassification\": \"string_optional\",\n        \"prosumerPortalId\": \"string_optional\",\n        \"cache\": \"string_optional\",\n        \"filterByBusinessRefId\": \"string_optional\",\n        \"salesRepUserId\": \"number_optional\",\n        \"storefrontClassifications\": [\n            {\n                \"required\": false\n            }\n        ],\n        \"dateRangeType\": \"string_optional\"\n    },\n    \"frequencyType\": \"string_required\",\n    \"frequencyValue\": \"number_optional\",\n    \"target\": \"string_optional\",\n    \"sendFileAttachment\": \"boolean_optional\"\n}"},"url":"https://api.quiverstest.com/v1/Reports/Schedules/Create?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code>, <code>QuiversReadOnly</code>, <code>SalesRep</code></li>\n</ul>\n<p>Create a scheduled report to be emailed.</p>\n","urlObject":{"protocol":"https","path":["v1","Reports","Schedules","Create"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"08b988c5-15a0-4653-8b3a-a4ceca9fd5c5"},{"name":"Reports - Create for QMS Reports","id":"4b0bd464-2d67-44f9-beff-0ee87c856e0b","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"options\": {\n        \"dashboard\": \"string_required\",\n        \"reports\": \"string_optional\",\n        \"cache\": \"boolean_optional\",\n        \"startDate\": \"string_optional\",\n        \"endDate\": \"string_optional\",\n        \"utcOffset\": \"number_optional\",\n        \"filterByBusinessRefId\": \"string_optional\",\n        \"dateRangeType\": \"string_optional\"\n    },\n    \"frequencyType\": \"string_required\",\n    \"frequencyValue\": \"number_optional\",\n    \"target\": \"string_optional\"\n}"},"url":"https://api.quiverstest.com/v1/Reports/Schedules/CreateQms","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>QuiversAdmin</code>, <code>QuiversReadOnly</code></li>\n</ul>\n<p>Schedules a report to be sent from a QMS dashboard. Quivers Admins only.</p>\n","urlObject":{"protocol":"https","path":["v1","Reports","Schedules","CreateQms"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"4b0bd464-2d67-44f9-beff-0ee87c856e0b"},{"name":"Reports - Schedules - Update","id":"34d02894-9269-4c68-9a73-440fca89186a","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\",\n    \"enabled\": \"boolean_optional (default: true)\",\n    \"frequencyType\": \"string_required\",\n    \"frequencyValue\": \"number_optional\",\n    \"options\": {\n        \"business\": \"string_required\",\n        \"dashboard\": \"string_required\",\n        \"reports\": \"string_optional\",\n        \"startDate\": \"string_optional\",\n        \"endDate\": \"string_optional\",\n        \"utcOffset\": \"number_optional\",\n        \"grouping\": \"string_optional\",\n        \"storefrontId\": \"string_optional\",\n        \"storefrontIds\": [\n            {\n                \"required\": false\n            }\n        ],\n        \"currency\": \"string_optional\",\n        \"settlementBatchId\": \"number_optional\",\n        \"businessSettlementAccountId\": \"string_optional\",\n        \"dateType\": \"string_optional\",\n        \"fulfillmentMethod\": \"string_optional\",\n        \"consumerGroupId\": \"string_optional\",\n        \"consumerGroupClassification\": \"string_optional\",\n        \"prosumerPortalId\": \"string_optional\",\n        \"cache\": \"string_optional\",\n        \"filterByBusinessRefId\": \"string_optional\",\n        \"salesRepUserId\": \"number_optional\",\n        \"storefrontClassifications\": [\n            {\n                \"required\": false\n            }\n        ],\n        \"dateRangeType\": \"string_optional\"\n    },\n    \"target\": \"string_required\",\n    \"sendFileAttachment\": \"boolean_optional\"\n}"},"url":"https://api.quiverstest.com/v1/Reports/Schedules/Update?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code>, <code>QuiversReadOnly</code>, <code>SalesRep</code></li>\n</ul>\n<p>Update a scheduled report.</p>\n","urlObject":{"protocol":"https","path":["v1","Reports","Schedules","Update"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"34d02894-9269-4c68-9a73-440fca89186a"},{"name":"Reports - Schedules - Update QMS","id":"118c4190-f499-48e1-be3a-a7bd6bd0059f","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\",\n    \"enabled\": \"boolean_optional (default: true)\",\n    \"frequencyType\": \"string_required\",\n    \"frequencyValue\": \"number_optional\",\n    \"options\": {\n        \"business\": \"string_required\",\n        \"dashboard\": \"string_required\",\n        \"reports\": \"string_optional\",\n        \"startDate\": \"string_optional\",\n        \"endDate\": \"string_optional\",\n        \"utcOffset\": \"number_optional\",\n        \"grouping\": \"string_optional\",\n        \"storefrontId\": \"string_optional\",\n        \"storefrontIds\": [\n            {\n                \"required\": false\n            }\n        ],\n        \"currency\": \"string_optional\",\n        \"settlementBatchId\": \"number_optional\",\n        \"businessSettlementAccountId\": \"string_optional\",\n        \"dateType\": \"string_optional\",\n        \"fulfillmentMethod\": \"string_optional\",\n        \"consumerGroupId\": \"string_optional\",\n        \"consumerGroupClassification\": \"string_optional\",\n        \"prosumerPortalId\": \"string_optional\",\n        \"cache\": \"string_optional\",\n        \"filterByBusinessRefId\": \"string_optional\",\n        \"salesRepUserId\": \"number_optional\",\n        \"storefrontClassifications\": [\n            {\n                \"required\": false\n            }\n        ],\n        \"dateRangeType\": \"string_optional\"\n    },\n    \"target\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/Reports/Schedules/UpdateQms","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>QuiversAdmin</code>, <code>QuiversReadOnly</code></li>\n</ul>\n<p>Update a scheduled QMS report.</p>\n","urlObject":{"protocol":"https","path":["v1","Reports","Schedules","UpdateQms"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"118c4190-f499-48e1-be3a-a7bd6bd0059f"},{"name":"Reports - Schedules - Delete","id":"51f2c81c-3adc-4d23-a8dc-ebf1046ea9fe","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/Reports/Schedules/Delete?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code>, <code>QuiversReadOnly</code>, <code>SalesRep</code></li>\n</ul>\n<p>Soft-delete a scheduled report.</p>\n","urlObject":{"protocol":"https","path":["v1","Reports","Schedules","Delete"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"51f2c81c-3adc-4d23-a8dc-ebf1046ea9fe"}],"id":"dbe3eeff-bba8-4fba-896d-6feb8ea7845f","_postman_id":"dbe3eeff-bba8-4fba-896d-6feb8ea7845f","description":""},{"name":"Return Requests","item":[{"name":"Return Requests - Resend Instructions","id":"eb95297b-199e-43de-a974-ff84692851ce","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"returnRequestIds\": [\n        {\n            \"required\": true\n        }\n    ]\n}"},"url":"https://api.quiverstest.com/v1/ReturnRequests/ResendInstructions?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Sends the Return/Exchange Request Approved email which includes instructions on how to return item(s).</p>\n","urlObject":{"protocol":"https","path":["v1","ReturnRequests","ResendInstructions"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"eb95297b-199e-43de-a974-ff84692851ce"}],"id":"6e988be2-179d-4f33-94d4-2f14ba24016d","_postman_id":"6e988be2-179d-4f33-94d4-2f14ba24016d","description":""},{"name":"Routing Rulesets","item":[{"name":"Search Order Routing Rulesets","id":"32678708-d04c-41f4-87c0-e700c1cbe5bb","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/routingRulesets/search?business=&searchTerm=&pagesize=20&page=1&sort={}","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Searches across all order routing rulesets for a particular business.</p>\n","urlObject":{"protocol":"https","path":["v1","routingRulesets","search"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"20"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"}],"variable":[]}},"response":[],"_postman_id":"32678708-d04c-41f4-87c0-e700c1cbe5bb"}],"id":"7392dcf6-e9a5-4228-8bb0-88c839b1539f","_postman_id":"7392dcf6-e9a5-4228-8bb0-88c839b1539f","description":""},{"name":"Sales Tax","item":[{"name":"Create Sales Tax Nexus","id":"f31af56b-8b2f-4709-acb9-9c410d98fb73","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"line1\": \"string_optional\",\n    \"line2\": \"string_optional\",\n    \"city\": \"string_optional\",\n    \"postCode\": \"string_required\",\n    \"countryId\": \"number_required\",\n    \"regionId\": \"number_required\",\n    \"primary\": \"boolean_optional\",\n    \"alwaysCollectLocalTax\": \"boolean_optional\"\n}"},"url":"https://api.quiverstest.com/v1/SalesTaxNexus/Create?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Creates a new sales tax nexus for a business.</p>\n","urlObject":{"protocol":"https","path":["v1","SalesTaxNexus","Create"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"f31af56b-8b2f-4709-acb9-9c410d98fb73"},{"name":"Update Sales Tax Nexus","id":"3d368b1f-ea6a-4386-9682-e6065be6e669","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\",\n    \"line1\": \"string_optional\",\n    \"line2\": \"string_optional\",\n    \"city\": \"string_optional\",\n    \"postCode\": \"string_required\",\n    \"countryId\": \"number_required\",\n    \"regionId\": \"number_required\",\n    \"primary\": \"boolean_optional\",\n    \"alwaysCollectLocalTax\": \"boolean_optional\"\n}"},"url":"https://api.quiverstest.com/v1/SalesTaxNexus/Update?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Updates an existing sales tax nexus for a business.</p>\n","urlObject":{"protocol":"https","path":["v1","SalesTaxNexus","Update"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"3d368b1f-ea6a-4386-9682-e6065be6e669"},{"name":"Delete Sales Tax Nexus","id":"234d96d2-410b-490d-919a-2ba76ebe1c34","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/SalesTaxNexus/Delete?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Deletes an existing sales tax nexus for a business.</p>\n","urlObject":{"protocol":"https","path":["v1","SalesTaxNexus","Delete"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"234d96d2-410b-490d-919a-2ba76ebe1c34"},{"name":"Create Sales Tax Override","id":"aee3e29f-b266-4946-9ed0-a659a44bc53f","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"string_required\",\n    \"rate\": \"number_optional\",\n    \"behaviorId\": \"number_optional (default: 10)\",\n    \"countryIds\": [\n        null\n    ],\n    \"regionIds\": [\n        null\n    ],\n    \"enforceTaxableShipping\": \"boolean_optional\"\n}"},"url":"https://api.quiverstest.com/v1/SalesTaxOverrides/Create?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Creates a new sales tax override for a business.</p>\n","urlObject":{"protocol":"https","path":["v1","SalesTaxOverrides","Create"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"aee3e29f-b266-4946-9ed0-a659a44bc53f"},{"name":"Update Sales Tax Override","id":"387a12b5-1bb1-44b8-b1d5-080107784ade","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\",\n    \"name\": \"string_required\",\n    \"rate\": \"number_optional\",\n    \"behaviorId\": \"number_optional (default: 10)\",\n    \"countryIds\": [\n        null\n    ],\n    \"regionIds\": [\n        null\n    ],\n    \"enforceTaxableShipping\": \"boolean_optional\"\n}"},"url":"https://api.quiverstest.com/v1/SalesTaxOverrides/Update?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Updates an existing sales tax override for a business.</p>\n","urlObject":{"protocol":"https","path":["v1","SalesTaxOverrides","Update"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"387a12b5-1bb1-44b8-b1d5-080107784ade"},{"name":"Update Sales Tax Override Behavior","id":"5db63e1e-2bc5-4c42-985b-1e2256b94629","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\",\n    \"behaviorId\": \"number_optional (default: 10)\"\n}"},"url":"https://api.quiverstest.com/v1/SalesTaxOverrides/UpdateBehavior?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Updates an existing sales tax override's behavior only for a business.</p>\n","urlObject":{"protocol":"https","path":["v1","SalesTaxOverrides","UpdateBehavior"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"5db63e1e-2bc5-4c42-985b-1e2256b94629"},{"name":"Update Sales Tax Override Rate","id":"d5dff7d4-7a92-436d-b1c0-0fdb4b085a5c","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\",\n    \"behaviorId\": \"number_optional (default: 10)\"\n}"},"url":"https://api.quiverstest.com/v1/SalesTaxOverrides/UpdateRate?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Updates an existing sales tax override's rate only for a business.</p>\n","urlObject":{"protocol":"https","path":["v1","SalesTaxOverrides","UpdateRate"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"d5dff7d4-7a92-436d-b1c0-0fdb4b085a5c"},{"name":"Delete Sales Tax Override","id":"d091d8d8-f8f5-4f63-b5c0-7fc58a75c07f","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/SalesTaxOverrides/Delete?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Deletes an existing sales tax override for a business.</p>\n","urlObject":{"protocol":"https","path":["v1","SalesTaxOverrides","Delete"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"d091d8d8-f8f5-4f63-b5c0-7fc58a75c07f"},{"name":"Tax Type Labels - Search","id":"5c6ac7ea-9984-4f50-ba65-4b485e3244de","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/TaxTypeLabels/Search?countryId=&isEstimated=&isIncluded=false&taxTypeLabelRefId=&culture=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Search tax type labels. All filters are optional.</p>\n","urlObject":{"protocol":"https","path":["v1","TaxTypeLabels","Search"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"countryId","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"isEstimated","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"isIncluded","value":"false"},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"taxTypeLabelRefId","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"culture","value":""}],"variable":[]}},"response":[],"_postman_id":"5c6ac7ea-9984-4f50-ba65-4b485e3244de"}],"id":"60ada269-7e38-4955-8450-50473232af24","_postman_id":"60ada269-7e38-4955-8450-50473232af24","description":""},{"name":"Search","item":[{"name":"Global Search","id":"712e9a25-4c5f-4b7c-9539-e346d6b2efab","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Search/GlobalSearch?business=&searchTerm=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Searches across the platform for any kind of matching result.</p>\n","urlObject":{"protocol":"https","path":["v1","Search","GlobalSearch"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""}],"variable":[]}},"response":[],"_postman_id":"712e9a25-4c5f-4b7c-9539-e346d6b2efab"}],"id":"c88a4674-101b-45d8-af70-0f8ed3a8f297","_postman_id":"c88a4674-101b-45d8-af70-0f8ed3a8f297","description":""},{"name":"Settlement Accounts","item":[{"name":"Settlement Accounts - Search","id":"e9e91336-d086-44ba-97ad-386e316fe228","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/SettlementAccounts/Search?business=&searchTerm=&pagesize=20&page=1&sort={}&typeId=&external=false","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Up to 300s</code></li>\n</ul>\n<p>Return settlement accounts for this business by search criteria.</p>\n","urlObject":{"protocol":"https","path":["v1","SettlementAccounts","Search"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"20"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"typeId","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"external","value":"false"}],"variable":[]}},"response":[],"_postman_id":"e9e91336-d086-44ba-97ad-386e316fe228"},{"name":"Settlement Accounts - Get By Id","id":"c317137f-c7c3-4824-9973-0d165ee3be86","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/SettlementAccounts/GetById?id=&business=&batches=true","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Return a specific settlement account for a business by its Id.</p>\n","urlObject":{"protocol":"https","path":["v1","SettlementAccounts","GetById"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"id","value":""},{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"batches","value":"true"}],"variable":[]}},"response":[],"_postman_id":"c317137f-c7c3-4824-9973-0d165ee3be86"},{"name":"Settlement Accounts - Create","id":"df9b8a0d-8acf-4226-8307-b6236c526f53","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"string_required\",\n    \"description\": \"string_optional\",\n    \"type\": \"string_required\",\n    \"countryId\": \"number_required\",\n    \"contact\": {\n        \"firstname\": \"string_required\",\n        \"lastname\": \"string_required\",\n        \"email\": \"string_required\",\n        \"phoneNumber\": \"string_optional\"\n    },\n    \"federalNumber\": \"string_optional\"\n}"},"url":"https://api.quiverstest.com/v1/SettlementAccounts/Create?business=&ipAddress=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Creates a new settlement account for a business.</p>\n","urlObject":{"protocol":"https","path":["v1","SettlementAccounts","Create"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"ipAddress","value":""}],"variable":[]}},"response":[],"_postman_id":"df9b8a0d-8acf-4226-8307-b6236c526f53"},{"name":"Settlement Accounts - Update","id":"6a20b829-8782-4898-b315-520ce0c13963","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\",\n    \"name\": \"string_optional\",\n    \"description\": \"string_optional\",\n    \"contact\": {\n        \"firstname\": \"string_optional\",\n        \"lastname\": \"string_optional\",\n        \"email\": \"string_optional\",\n        \"phoneNumber\": \"string_optional\"\n    },\n    \"bankAccountToken\": \"string_optional\"\n}"},"url":"https://api.quiverstest.com/v1/SettlementAccounts/Update?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Updates an existing settlement account for a business.</p>\n","urlObject":{"protocol":"https","path":["v1","SettlementAccounts","Update"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"6a20b829-8782-4898-b315-520ce0c13963"}],"id":"6de7ba75-2a51-4779-b16f-9146e5212fc5","_postman_id":"6de7ba75-2a51-4779-b16f-9146e5212fc5","description":""},{"name":"Settlement Invoices","item":[{"name":"Settlement Invoices - Search","id":"3cac6101-51c8-4d5d-ba16-69486e657c9e","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/SettlementInvoices/Search?business=&searchTerm=&pagesize=20&page=1&sort={}","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Up to 300s</code></li>\n</ul>\n<p>Search across settlement invoices for your business or as a Quivers Admin.</p>\n","urlObject":{"protocol":"https","path":["v1","SettlementInvoices","Search"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"20"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"}],"variable":[]}},"response":[],"_postman_id":"3cac6101-51c8-4d5d-ba16-69486e657c9e"},{"name":"Settlement Invoices - Get By Id","id":"038045e8-fe4d-402f-9dfd-0cf62057fa14","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/SettlementInvoices/GetById?id=&business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Return a specific settlement invoice for a business by its Id.</p>\n","urlObject":{"protocol":"https","path":["v1","SettlementInvoices","GetById"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"id","value":""},{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"038045e8-fe4d-402f-9dfd-0cf62057fa14"},{"name":"Settlement Invoices - Mark Paid","id":"1133cf1a-569c-4895-8a4b-dbbfae4a2c9f","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\",\n    \"paidDateUtc\": \"date_optional\"\n}"},"url":"https://api.quiverstest.com/v1/SettlementInvoices/MarkPaid","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>QuiversAdmin</code></li>\n</ul>\n<p>Marks a settlement invoice has paid, and releases its pending settlements to be paid out.</p>\n","urlObject":{"protocol":"https","path":["v1","SettlementInvoices","MarkPaid"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"1133cf1a-569c-4895-8a4b-dbbfae4a2c9f"}],"id":"79fb6802-f2c2-45c4-a22f-61cea9d8bfdf","_postman_id":"79fb6802-f2c2-45c4-a22f-61cea9d8bfdf","description":""},{"name":"Shipments","item":[{"name":"Settlements - Search","id":"0c126c43-0442-41e0-bc44-1af8df8d4877","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Settlements/Search?business=&searchTerm=&pagesize=50&page=1&sort={}&currency=&status=&reason=&type=&accountId=&batchId=&fromDate=&toDate=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Return settlements for this business by search criteria.</p>\n","urlObject":{"protocol":"https","path":["v1","Settlements","Search"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"50"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"currency","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"status","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"reason","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"type","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"accountId","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"batchId","value":""},{"description":{"content":"<p>date_optional</p>\n","type":"text/plain"},"key":"fromDate","value":""},{"description":{"content":"<p>date_optional</p>\n","type":"text/plain"},"key":"toDate","value":""}],"variable":[]}},"response":[],"_postman_id":"0c126c43-0442-41e0-bc44-1af8df8d4877"},{"name":"Settlements - Get Batches","id":"6f0f674f-6a79-4ec1-93c6-2687e4171a65","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Settlements/GetBatches?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Return high-level data about what settlement batches a business has.</p>\n","urlObject":{"protocol":"https","path":["v1","Settlements","GetBatches"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"6f0f674f-6a79-4ec1-93c6-2687e4171a65"},{"name":"Settlements - Get Batch Period","id":"21590228-5810-4515-bbcc-3e3de82c1013","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Settlements/GetBatchPeriod?startDate=&endDate=&currency=&businessRefId=&disbursementMethodId=&settlmentAccountId=&includeSettled=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>QuiversAdmin</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Returns details about a given settlement batch period by date range, and optionally by culture, disbursement method, business, or settlement account.</p>\n","urlObject":{"protocol":"https","path":["v1","Settlements","GetBatchPeriod"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>date_optional</p>\n","type":"text/plain"},"key":"startDate","value":""},{"description":{"content":"<p>date_optional</p>\n","type":"text/plain"},"key":"endDate","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"currency","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"businessRefId","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"disbursementMethodId","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"settlmentAccountId","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"includeSettled","value":""}],"variable":[]}},"response":[],"_postman_id":"21590228-5810-4515-bbcc-3e3de82c1013"},{"name":"Settlements - Get Pending Batch Periods","id":"a04c375a-6685-448d-91bc-06c435017285","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Settlements/GetPendingBatchPeriods","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>QuiversAdmin</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Returns a list of all settlement periods which have pending payouts by start/end date and currency.</p>\n","urlObject":{"protocol":"https","path":["v1","Settlements","GetPendingBatchPeriods"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a04c375a-6685-448d-91bc-06c435017285"},{"name":"Settlements - Batch Settlements","id":"e593674a-c166-4ee9-9629-d7e6a4d1c798","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Settlements/Batch","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>QuiversAdmin</code></li>\n</ul>\n<p>This will run the background job for batching all settlements, for refreshing the available data.</p>\n","urlObject":{"protocol":"https","path":["v1","Settlements","Batch"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e593674a-c166-4ee9-9629-d7e6a4d1c798"},{"name":"Settlements - Settle","id":"93fbad18-4e29-4052-a3aa-b2fee773bcf8","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"startDate\": \"date_required\",\n    \"endDate\": \"date_required\",\n    \"currency\": \"string_required\",\n    \"payoutId\": \"string_required\",\n    \"paidOnUtc\": \"date_required\",\n    \"disbursementMethodId\": \"string_optional\",\n    \"settlementAccountId\": \"string_optional\",\n    \"amount\": \"number_optional\"\n}"},"url":"https://api.quiverstest.com/v1/Settlements/Settle","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>QuiversAdmin</code></li>\n</ul>\n<p>This will settle settlement batch amounts for a given time period. Can be filtered by either disbursement method, or by settlement account.</p>\n","urlObject":{"protocol":"https","path":["v1","Settlements","Settle"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"93fbad18-4e29-4052-a3aa-b2fee773bcf8"}],"id":"6919b4ef-4fcd-4439-99fc-e6c3ca78c16a","_postman_id":"6919b4ef-4fcd-4439-99fc-e6c3ca78c16a","description":""},{"name":"Shipping Regions","item":[{"name":"Create Shipping Region","id":"52dc50ee-90ce-42f7-8b2c-c41a2396cbbb","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"string_required\",\n    \"countryIds\": [\n        {\n            \"required\": false\n        }\n    ],\n    \"stateIds\": [\n        {\n            \"required\": false\n        }\n    ],\n    \"counties\": [\n        {\n            \"name\": \"string_optional\",\n            \"color\": \"string_optional\"\n        }\n    ],\n    \"zipcodes\": [\n        {\n            \"code\": \"string_optional\",\n            \"color\": \"string_optional\"\n        }\n    ],\n    \"geoFences\": [\n        {\n            \"name\": \"string_required\",\n            \"geoCoordinates\": [\n                {\n                    \"lat\": \"number_optional\",\n                    \"lng\": \"number_optional\",\n                    \"displayOrder\": \"number_optional\"\n                }\n            ],\n            \"typeId\": \"number_required\",\n            \"color\": \"string_optional\"\n        }\n    ],\n    \"shippingPolicyId\": \"string_optional\",\n    \"geoType\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/shippingRegions/create?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Creates a new shipping region</p>\n","urlObject":{"protocol":"https","path":["v1","shippingRegions","create"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"52dc50ee-90ce-42f7-8b2c-c41a2396cbbb"},{"name":"Update Shipping Region","id":"1145e651-a739-44e9-aae0-eafb9affdfe5","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\",\n    \"name\": \"string_required\",\n    \"countryIds\": [\n        {\n            \"required\": false\n        }\n    ],\n    \"stateIds\": [\n        {\n            \"required\": false\n        }\n    ],\n    \"counties\": [\n        {\n            \"name\": \"string_optional\",\n            \"color\": \"string_optional\"\n        }\n    ],\n    \"zipcodes\": [\n        {\n            \"code\": \"string_optional\",\n            \"color\": \"string_optional\"\n        }\n    ],\n    \"geoFences\": [\n        {\n            \"id\": \"number_optional\",\n            \"name\": \"string_required\",\n            \"geoCoordinates\": [\n                {\n                    \"lat\": \"number_optional\",\n                    \"lng\": \"number_optional\",\n                    \"displayOrder\": \"number_optional\"\n                }\n            ],\n            \"typeId\": \"number_required\",\n            \"color\": \"string_optional\"\n        }\n    ],\n    \"geoType\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/shippingRegions/update?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Updates an existing shipping region</p>\n","urlObject":{"protocol":"https","path":["v1","shippingRegions","update"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"1145e651-a739-44e9-aae0-eafb9affdfe5"},{"name":"Delete Shipping Region","id":"1b752217-3cfc-436d-bbb0-9fed5d5f3559","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/shippingRegions/delete?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Delete a shipping region</p>\n","urlObject":{"protocol":"https","path":["v1","shippingRegions","delete"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"1b752217-3cfc-436d-bbb0-9fed5d5f3559"}],"id":"aea6f7d0-e582-43c7-bf0b-840e3911288a","_postman_id":"aea6f7d0-e582-43c7-bf0b-840e3911288a","description":""},{"name":"Storage","item":[{"name":"Storage - Get Data","id":"3389ece3-eec6-49e2-a578-c1d279a3ca0e","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Storage/Get?business=&key=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code>, <code>QuiversReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Retrieves some hard-cached data from storage.</p>\n","urlObject":{"protocol":"https","path":["v1","Storage","Get"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"key","value":""}],"variable":[]}},"response":[],"_postman_id":"3389ece3-eec6-49e2-a578-c1d279a3ca0e"},{"name":"Storage - Set Data","id":"8ff988c9-0e21-4d5f-86c4-6f478c939d22","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"key\": \"string_required\",\n    \"value\": \"*\"\n}"},"url":"https://api.quiverstest.com/v1/Storage/Set?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code>, <code>QuiversReadOnly</code></li>\n</ul>\n<p>Stores some data in storage; Limited Usage; value property cannot exceed 4KB in size.</p>\n","urlObject":{"protocol":"https","path":["v1","Storage","Set"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"8ff988c9-0e21-4d5f-86c4-6f478c939d22"}],"id":"da344501-b6bc-4505-b4c0-2d64fba3e511","_postman_id":"da344501-b6bc-4505-b4c0-2d64fba3e511","description":""},{"name":"Storefronts","item":[{"name":"Storefronts - Search","id":"b6927011-0227-437d-bb57-a745c71c211e","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Storefronts/Search?business=&searchTerm=&pagesize=20&page=1&sort={}&includeDeleted=false&includeConsumerGroups=false","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Searches across all storefronts belonging to a business.</p>\n","urlObject":{"protocol":"https","path":["v1","Storefronts","Search"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"20"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"includeDeleted","value":"false"},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"includeConsumerGroups","value":"false"}],"variable":[]}},"response":[],"_postman_id":"b6927011-0227-437d-bb57-a745c71c211e"},{"name":"Storefronts - Get Tree","id":"f8992d79-0547-4243-857d-5836c05c1ea2","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Storefronts/GetTree?business=&storefrontId=&type=&mapId=&excludeProducts=false","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Gets a complete tree of all categories and products for this storefront.</p>\n","urlObject":{"protocol":"https","path":["v1","Storefronts","GetTree"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"storefrontId","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"type","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"mapId","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"excludeProducts","value":"false"}],"variable":[]}},"response":[],"_postman_id":"f8992d79-0547-4243-857d-5836c05c1ea2"},{"name":"Storefronts - Get Notification Settings","id":"013b25e9-8eda-472e-8990-de768b0c86bf","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Storefronts/NotificationSettings?storefrontId=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Gets a storefront's email notification settings.</p>\n","urlObject":{"protocol":"https","path":["v1","Storefronts","NotificationSettings"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"storefrontId","value":""}],"variable":[]}},"response":[],"_postman_id":"013b25e9-8eda-472e-8990-de768b0c86bf"},{"name":"Storefronts - Get Warehouses","id":"b13efd20-c70e-4579-be41-983ba0edbcab","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Storefronts/GetWarehouses?business=&id=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Gets a storefront's warehouses.</p>\n","urlObject":{"protocol":"https","path":["v1","Storefronts","GetWarehouses"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"id","value":""}],"variable":[]}},"response":[],"_postman_id":"b13efd20-c70e-4579-be41-983ba0edbcab"},{"name":"Storefronts - Create","id":"74fa037a-e8ae-45f8-ae1d-74eded7ed81c","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"string_required\",\n    \"settlementAccountId\": \"string_required\",\n    \"ecommercePlatformName\": \"string_required\",\n    \"ecommerceBusinessPluginId\": \"string_optional\",\n    \"priceTypeId\": \"number_required\",\n    \"templateId\": \"number_optional\",\n    \"culture\": \"string_optional (default: \\\"en-US\\\")\"\n}"},"url":"https://api.quiverstest.com/v1/Storefronts/Create?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Creates a new storefront for a business.</p>\n","urlObject":{"protocol":"https","path":["v1","Storefronts","Create"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"74fa037a-e8ae-45f8-ae1d-74eded7ed81c"},{"name":"Storefronts - Get All Classifications","id":"b70696dd-c28c-4929-b7de-de68a53bfd74","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Storefronts/GetAllClassifications?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Get all current, non-null Classifications for a Business' Storefronts.</p>\n","urlObject":{"protocol":"https","path":["v1","Storefronts","GetAllClassifications"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"b70696dd-c28c-4929-b7de-de68a53bfd74"},{"name":"Storefronts - Update Payment Settings","id":"567e5a5d-3e67-43b6-9dfc-34448c813b2c","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"_id\": \"string_required\",\n    \"settlementAccountId\": \"string_required\",\n    \"ecommercePlatformName\": \"string_required\",\n    \"ecommerceBusinessPluginId\": \"string_optional\",\n    \"priceTypeId\": \"number_required\",\n    \"templateId\": \"number_optional\",\n    \"creditCardStatementDescriptor\": \"string_optional\",\n    \"paymentMethodIds\": [\n        {\n            \"required\": false\n        }\n    ]\n}"},"url":"https://api.quiverstest.com/v1/Storefronts/UpdatePaymentSettings?business=&searchTerm=&pagesize=20&page=1&sort={}&typeId=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Updates various related payment settings for a storefront.</p>\n","urlObject":{"protocol":"https","path":["v1","Storefronts","UpdatePaymentSettings"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"20"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{}"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"typeId","value":""}],"variable":[]}},"response":[],"_postman_id":"567e5a5d-3e67-43b6-9dfc-34448c813b2c"},{"name":"Storefronts - Update Notification Settings","id":"f655f0a5-6bdd-4a9f-b5a8-211e3d2d0d40","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"storefrontId\": \"string_required\",\n    \"storefrontNotificationSettings\": [\n        {\n            \"storefrontNotificationTypeId\": \"string_required\",\n            \"enabled\": \"boolean_required\"\n        }\n    ]\n}"},"url":"https://api.quiverstest.com/v1/Storefronts/UpdateNotificationSettings?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Updates a storefront's notification settings.</p>\n","urlObject":{"protocol":"https","path":["v1","Storefronts","UpdateNotificationSettings"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"f655f0a5-6bdd-4a9f-b5a8-211e3d2d0d40"},{"name":"Storefronts - Update Culture","id":"e426c7ac-196e-40bf-aaef-a4bd4a5ce8a7","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\",\n    \"culture\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/Storefronts/UpdateCulture?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Updates a Storefront's culture.</p>\n","urlObject":{"protocol":"https","path":["v1","Storefronts","UpdateCulture"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"e426c7ac-196e-40bf-aaef-a4bd4a5ce8a7"},{"name":"Storefronts - Update Update Cart Abandonment Reminder Timeframes","id":"26e1da83-75ff-4bf0-902e-d0b776b6caef","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\",\n    \"firstAbandonedCartReminderHours\": \"number_optional\",\n    \"secondAbandonedCartReminderHours\": \"number_optional\"\n}"},"url":"https://api.quiverstest.com/v1/Storefronts/UpdateCartAbandonmentReminderTimeframes?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Updates a Storefront's timeframes for sending cart abandonment reminders.</p>\n","urlObject":{"protocol":"https","path":["v1","Storefronts","UpdateCartAbandonmentReminderTimeframes"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"26e1da83-75ff-4bf0-902e-d0b776b6caef"},{"name":"Storefronts - Update Enable Consumer Based Pricing","id":"bbcbd21a-a26a-4c5f-8012-a38f3c422429","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\",\n    \"enableConsumerBasedPricing\": \"boolean_required\"\n}"},"url":"https://api.quiverstest.com/v1/Storefronts/UpdateConsumerBasedPricing?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Updates a Storefront's ability to use consumer based pricing.</p>\n","urlObject":{"protocol":"https","path":["v1","Storefronts","UpdateConsumerBasedPricing"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"bbcbd21a-a26a-4c5f-8012-a38f3c422429"},{"name":"Storefronts - Update Pending Return Time Limit","id":"ef04299e-0395-4f12-92d1-cfb291d1e8d2","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\",\n    \"pendingReturnTimeLimit\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/Storefronts/UpdatePendingReturnTimeLimit?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Updates a Storefront's pending return time limit</p>\n","urlObject":{"protocol":"https","path":["v1","Storefronts","UpdatePendingReturnTimeLimit"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"ef04299e-0395-4f12-92d1-cfb291d1e8d2"},{"name":"Storefronts - Update Entry Code Label","id":"91762d65-600b-4b27-bdea-08bd1c7de073","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\",\n    \"entryCodeLabel\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/Storefronts/UpdateEntryCodeLabel?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Updates a Storefront's entry code label field.</p>\n","urlObject":{"protocol":"https","path":["v1","Storefronts","UpdateEntryCodeLabel"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"91762d65-600b-4b27-bdea-08bd1c7de073"},{"name":"Storefronts - Set Warehouses","id":"5d298222-0064-4a9a-b886-79ae17a78a46","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"storefrontId\": \"string_required\",\n    \"warehouses\": [\n        {\n            \"id\": \"string_required\",\n            \"displayOrder\": \"number_optional\"\n        }\n    ]\n}"},"url":"https://api.quiverstest.com/v1/Storefronts/SetWarehouses?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Sets the warehouses for a Storefront and the display/priority order of those warehouses.</p>\n","urlObject":{"protocol":"https","path":["v1","Storefronts","SetWarehouses"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"5d298222-0064-4a9a-b886-79ae17a78a46"},{"name":"Storefronts - Update Classification","id":"deb7690b-cd41-4f23-bc75-a3398c7ee357","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\",\n    \"classification\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/Storefronts/UpdateClassification?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Updates a Storefront's Classification.</p>\n","urlObject":{"protocol":"https","path":["v1","Storefronts","UpdateClassification"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"deb7690b-cd41-4f23-bc75-a3398c7ee357"},{"name":"Storefronts - Update Enable Shop By Retailer","id":"678eed42-e03c-47d5-82f1-b2aa93d24bac","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"string_required\",\n    \"enableShopByRetailer\": \"boolean_required\"\n}"},"url":"https://api.quiverstest.com/v1/Storefronts/UpdateEnableShopByRetailer?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code></li>\n</ul>\n<p>Updates a Storefront's enable shop by retailer setting</p>\n","urlObject":{"protocol":"https","path":["v1","Storefronts","UpdateEnableShopByRetailer"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"678eed42-e03c-47d5-82f1-b2aa93d24bac"}],"id":"1f91c791-04f8-444e-ae4c-58a00f5ff926","_postman_id":"1f91c791-04f8-444e-ae4c-58a00f5ff926","description":""},{"name":"Templates","item":[{"name":"Templates - Get Tree","id":"1e3e589e-9537-4d94-9106-7d0b1afc3136","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Templates/GetTree?business=&templateId=&type=&mapId=&excludeProducts=false","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Gets a complete tree of all categories and products for this tempalte.</p>\n","urlObject":{"protocol":"https","path":["v1","Templates","GetTree"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>number_required</p>\n","type":"text/plain"},"key":"templateId","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"type","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"mapId","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"excludeProducts","value":"false"}],"variable":[]}},"response":[],"_postman_id":"1e3e589e-9537-4d94-9106-7d0b1afc3136"},{"name":"Templates - Export","id":"ed225a7d-ceb0-457f-8de6-18266e1255da","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Templates/Export?business=&templateId=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Gets data representing a Template in a CSV-type format</p>\n","urlObject":{"protocol":"https","path":["v1","Templates","Export"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>number_required</p>\n","type":"text/plain"},"key":"templateId","value":""}],"variable":[]}},"response":[],"_postman_id":"ed225a7d-ceb0-457f-8de6-18266e1255da"},{"name":"Templates Import","id":"527d74ea-577b-4eea-927a-1352f6125273","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"templateId\": \"number_required\",\n    \"rows\": [\n        {\n            \"productId\": \"number_optional\",\n            \"productName\": \"string_optional\",\n            \"categories\": [\n                null\n            ]\n        }\n    ]\n}"},"url":"https://api.quiverstest.com/v1/Templates/Import?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code>, <code>BusinessSales</code>, <code>BusinessReadOnly</code></li>\n</ul>\n<p>Imports products and categories into a template from a csv-type format</p>\n","urlObject":{"protocol":"https","path":["v1","Templates","Import"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"527d74ea-577b-4eea-927a-1352f6125273"}],"id":"2a3f7991-65b7-4619-8ba9-4884ed5c0d65","_postman_id":"2a3f7991-65b7-4619-8ba9-4884ed5c0d65","description":""},{"name":"Timezones","item":[{"name":"Get Timezones","id":"338068b9-2841-4a46-b568-4d6b73f87dc4","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/timezones","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Up to 86400s</code></li>\n</ul>\n<p>Returns a list of all time zones supported within Quivers.</p>\n","urlObject":{"protocol":"https","path":["v1","timezones"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"338068b9-2841-4a46-b568-4d6b73f87dc4"},{"name":"Get Microsoft's Timezones","id":"f9ac8ea2-396d-44fb-a580-476ce2b175be","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/timezones/microsoft","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Get Microsoft's timezone names from SQL Server</p>\n","urlObject":{"protocol":"https","path":["v1","timezones","microsoft"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f9ac8ea2-396d-44fb-a580-476ce2b175be"}],"id":"2702dc5d-1234-43d3-aec2-1dc4f7feb379","_postman_id":"2702dc5d-1234-43d3-aec2-1dc4f7feb379","description":""},{"name":"Tools","item":[{"name":"Search Unsplash Photos","id":"ea93c5fe-5a7e-4930-816d-f9d543b2ea1f","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/tools/unsplash/search?query=&page=1&perPage=6&orientation=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Call the unsplash search/photos endpoint.</p>\n","urlObject":{"protocol":"https","path":["v1","tools","unsplash","search"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"query","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"perPage","value":"6"},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"orientation","value":""}],"variable":[]}},"response":[],"_postman_id":"ea93c5fe-5a7e-4930-816d-f9d543b2ea1f"},{"name":"Get an Unsplash Image's Blob","id":"87fe7809-7307-4216-aeae-fc5b19098b93","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/tools/unsplash/getImageBlob?regularUrl=&downloadLocationLink=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Get an Unsplash image's blob data given a download link.</p>\n","urlObject":{"protocol":"https","path":["v1","tools","unsplash","getImageBlob"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"regularUrl","value":""},{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"downloadLocationLink","value":""}],"variable":[]}},"response":[],"_postman_id":"87fe7809-7307-4216-aeae-fc5b19098b93"},{"name":"Get Geofence From Zipcodes","id":"903b099c-33d6-4568-b89a-dbd43639c7a1","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/tools/geofences/getFromZipcodes?zipcodes=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Get geofence boundaries for an array of zipcodes.</p>\n","urlObject":{"protocol":"https","path":["v1","tools","geofences","getFromZipcodes"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>undefined_optional</p>\n","type":"text/plain"},"key":"zipcodes","value":""}],"variable":[]}},"response":[],"_postman_id":"903b099c-33d6-4568-b89a-dbd43639c7a1"},{"name":"Get Geofence From Counties","id":"5fe2a8c9-71f8-46d9-bd86-11e132a2415f","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"counties\": [\n        {\n            \"required\": true\n        }\n    ]\n}"},"url":"https://api.quiverstest.com/v1/tools/geofences/getFromCounties","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n</ul>\n<p>Get geofence boundaries for an array of US county/state combinations.</p>\n","urlObject":{"protocol":"https","path":["v1","tools","geofences","getFromCounties"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"5fe2a8c9-71f8-46d9-bd86-11e132a2415f"}],"id":"76f5352f-63d3-4221-af74-0cf0b01aee66","_postman_id":"76f5352f-63d3-4221-af74-0cf0b01aee66","description":""},{"name":"Transactions","item":[{"name":"Transactions - Prepare","id":"2ae25ec0-2db5-4d91-b565-c583d5bfdaa5","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"billingAddress\": {\n        \"firstname\": \"string_optional\",\n        \"lastname\": \"string_optional\",\n        \"email\": \"string_optional\",\n        \"company\": \"string_optional\",\n        \"phoneNumber\": \"string_optional\",\n        \"line1\": \"string_required\",\n        \"line2\": \"string_optional\",\n        \"city\": \"string_required\",\n        \"postCode\": \"string_optional\",\n        \"primary\": \"boolean_optional\",\n        \"coordinates\": {\n            \"latitude\": \"number_optional\",\n            \"longitude\": \"number_optional\"\n        },\n        \"createdOnUtc\": \"date_optional\",\n        \"updatedOnUtc\": \"date_optional\",\n        \"alwaysCollectLocalTax\": \"boolean_optional\",\n        \"$any\": [\n            {\n                \"countryId\": \"number_required\",\n                \"regionId\": \"number_required\"\n            },\n            {\n                \"country\": \"string_required\",\n                \"region\": \"string_required\"\n            }\n        ]\n    },\n    \"payment\": {\n        \"provider\": \"string_optional\"\n    },\n    \"marketplaceId\": \"string_required\",\n    \"customer\": {\n        \"firstname\": \"string_optional\",\n        \"lastname\": \"string_optional\",\n        \"email\": \"string_optional\"\n    },\n    \"shippingAddress\": {\n        \"firstname\": \"string_optional\",\n        \"lastname\": \"string_optional\",\n        \"email\": \"string_optional\",\n        \"company\": \"string_optional\",\n        \"phoneNumber\": \"string_optional\",\n        \"line1\": \"string_required\",\n        \"line2\": \"string_optional\",\n        \"city\": \"string_required\",\n        \"postCode\": \"string_optional\",\n        \"primary\": \"boolean_optional\",\n        \"coordinates\": {\n            \"latitude\": \"number_optional\",\n            \"longitude\": \"number_optional\"\n        },\n        \"createdOnUtc\": \"date_optional\",\n        \"updatedOnUtc\": \"date_optional\",\n        \"alwaysCollectLocalTax\": \"boolean_optional\",\n        \"$any\": [\n            {\n                \"countryId\": \"number_required\",\n                \"regionId\": \"number_required\"\n            },\n            {\n                \"country\": \"string_required\",\n                \"region\": \"string_required\"\n            }\n        ]\n    },\n    \"$any\": [\n        {\n            \"cartId\": \"string_required\",\n            \"deliveryMethod\": \"string_required\"\n        },\n        {\n            \"items\": [\n                {\n                    \"holdStatusId\": \"number_optional\",\n                    \"holdReleaseCustomerExpectationDateUtc\": \"number_optional\",\n                    \"brandExclusive\": \"boolean_optional\",\n                    \"shipToStore\": \"boolean_optional\",\n                    \"allowReturns\": \"boolean_optional\",\n                    \"product\": {\n                        \"id\": \"number_required\",\n                        \"name\": \"string_optional\",\n                        \"refId\": \"string_optional\",\n                        \"taxCode\": \"string_optional\",\n                        \"isDigitalProduct\": \"boolean_optional\",\n                        \"variant\": {\n                            \"id\": \"number_required\",\n                            \"name\": \"string_optional\",\n                            \"refId\": \"string_optional\",\n                            \"sku\": \"string_optional\",\n                            \"upc\": \"string_optional\",\n                            \"gtin\": \"string_optional\",\n                            \"basePrice\": \"number_optional\",\n                            \"options\": [\n                                {\n                                    \"id\": \"number_optional\",\n                                    \"name\": \"string_optional\",\n                                    \"value\": {\n                                        \"id\": \"number_optional\",\n                                        \"name\": \"string_optional\",\n                                        \"additionalPrice\": \"number_optional\"\n                                    }\n                                }\n                            ],\n                            \"pictureUrl\": \"string_optional\"\n                        }\n                    },\n                    \"shipping\": {\n                        \"isExpedited\": \"boolean_optional\",\n                        \"estimatedDateUtc\": \"date_optional\",\n                        \"estimatedDateUpperBoundUtc\": \"date_optional\",\n                        \"preferredCarrier\": \"string_optional\",\n                        \"customerPickedFulfillerRefId\": \"string_optional\",\n                        \"bopis\": {\n                            \"instorePickupBusinessRefId\": \"string_optional\",\n                            \"customerPickedFulfillerRefId\": \"string_optional\",\n                            \"isCurbside\": \"boolean_optional\",\n                            \"isRobis\": \"boolean_optional\"\n                        }\n                    },\n                    \"quantity\": \"number_required\",\n                    \"pricing\": {\n                        \"unitPrice\": \"number_required\",\n                        \"salePrice\": \"number_optional\",\n                        \"customFees\": [\n                            {\n                                \"name\": \"string_required\",\n                                \"description\": \"string_optional\",\n                                \"amount\": \"number_optional\",\n                                \"rate\": \"number_optional\",\n                                \"taxable\": \"boolean_optional\",\n                                \"includedInSubtotal\": \"boolean_required\"\n                            }\n                        ],\n                        \"shippingFees\": [\n                            {\n                                \"name\": \"string_required\",\n                                \"description\": \"string_optional\",\n                                \"amount\": \"number_optional\",\n                                \"rate\": \"number_optional\",\n                                \"taxable\": \"boolean_optional\"\n                            }\n                        ],\n                        \"discounts\": [\n                            {\n                                \"code\": \"string_optional\",\n                                \"name\": \"string_required\",\n                                \"description\": \"string_optional\",\n                                \"amount\": \"number_optional\",\n                                \"rate\": \"number_optional\",\n                                \"discountId\": \"number_optional\"\n                            }\n                        ],\n                        \"taxes\": [\n                            {\n                                \"name\": \"string_required\",\n                                \"description\": \"string_optional\",\n                                \"amount\": \"number_optional\",\n                                \"rate\": \"number_optional\",\n                                \"includedInSubtotal\": \"boolean_required\"\n                            }\n                        ],\n                        \"marketplaceRemittedTaxAmount\": \"number_optional\"\n                    },\n                    \"customFields\": [\n                        {\n                            \"name\": \"string_required\",\n                            \"value\": \"string_required\"\n                        }\n                    ]\n                }\n            ]\n        }\n    ]\n}"},"url":"https://api.quiverstest.com/v1/Transactions/Prepare?calculateTaxes=true&type=&intentId=&os=&browser=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n</ul>\n<p>Used to prepare a transaction for a payment charge in either the HoverCart or an ecommerce platform.</p>\n","urlObject":{"protocol":"https","path":["v1","Transactions","Prepare"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"calculateTaxes","value":"true"},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"type","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"intentId","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"os","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"browser","value":""}],"variable":[]}},"response":[],"_postman_id":"2ae25ec0-2db5-4d91-b565-c583d5bfdaa5"},{"name":"Transactions - Authorize","id":"32a74b8c-bf96-46a3-8c92-8cecc5904559","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"billingAddress\": {\n        \"firstname\": \"string_optional\",\n        \"lastname\": \"string_optional\",\n        \"email\": \"string_optional\",\n        \"company\": \"string_optional\",\n        \"phoneNumber\": \"string_optional\",\n        \"line1\": \"string_required\",\n        \"line2\": \"string_optional\",\n        \"city\": \"string_required\",\n        \"postCode\": \"string_optional\",\n        \"primary\": \"boolean_optional\",\n        \"coordinates\": {\n            \"latitude\": \"number_optional\",\n            \"longitude\": \"number_optional\"\n        },\n        \"createdOnUtc\": \"date_optional\",\n        \"updatedOnUtc\": \"date_optional\",\n        \"alwaysCollectLocalTax\": \"boolean_optional\",\n        \"$any\": [\n            {\n                \"countryId\": \"number_required\",\n                \"regionId\": \"number_required\"\n            },\n            {\n                \"country\": \"string_required\",\n                \"region\": \"string_required\"\n            }\n        ]\n    },\n    \"payment\": {\n        \"provider\": \"string_optional\"\n    },\n    \"marketplaceId\": \"string_required\",\n    \"customer\": {\n        \"firstname\": \"string_optional\",\n        \"lastname\": \"string_optional\",\n        \"email\": \"string_optional\"\n    },\n    \"shippingAddress\": {\n        \"firstname\": \"string_optional\",\n        \"lastname\": \"string_optional\",\n        \"email\": \"string_optional\",\n        \"company\": \"string_optional\",\n        \"phoneNumber\": \"string_optional\",\n        \"line1\": \"string_required\",\n        \"line2\": \"string_optional\",\n        \"city\": \"string_required\",\n        \"postCode\": \"string_optional\",\n        \"primary\": \"boolean_optional\",\n        \"coordinates\": {\n            \"latitude\": \"number_optional\",\n            \"longitude\": \"number_optional\"\n        },\n        \"createdOnUtc\": \"date_optional\",\n        \"updatedOnUtc\": \"date_optional\",\n        \"alwaysCollectLocalTax\": \"boolean_optional\",\n        \"$any\": [\n            {\n                \"countryId\": \"number_required\",\n                \"regionId\": \"number_required\"\n            },\n            {\n                \"country\": \"string_required\",\n                \"region\": \"string_required\"\n            }\n        ]\n    },\n    \"$any\": [\n        {\n            \"cartId\": \"string_required\",\n            \"deliveryMethod\": \"string_required\"\n        },\n        {\n            \"items\": [\n                {\n                    \"holdStatusId\": \"number_optional\",\n                    \"holdReleaseCustomerExpectationDateUtc\": \"number_optional\",\n                    \"brandExclusive\": \"boolean_optional\",\n                    \"shipToStore\": \"boolean_optional\",\n                    \"allowReturns\": \"boolean_optional\",\n                    \"product\": {\n                        \"id\": \"number_required\",\n                        \"name\": \"string_optional\",\n                        \"refId\": \"string_optional\",\n                        \"taxCode\": \"string_optional\",\n                        \"isDigitalProduct\": \"boolean_optional\",\n                        \"variant\": {\n                            \"id\": \"number_required\",\n                            \"name\": \"string_optional\",\n                            \"refId\": \"string_optional\",\n                            \"sku\": \"string_optional\",\n                            \"upc\": \"string_optional\",\n                            \"gtin\": \"string_optional\",\n                            \"basePrice\": \"number_optional\",\n                            \"options\": [\n                                {\n                                    \"id\": \"number_optional\",\n                                    \"name\": \"string_optional\",\n                                    \"value\": {\n                                        \"id\": \"number_optional\",\n                                        \"name\": \"string_optional\",\n                                        \"additionalPrice\": \"number_optional\"\n                                    }\n                                }\n                            ],\n                            \"pictureUrl\": \"string_optional\"\n                        }\n                    },\n                    \"shipping\": {\n                        \"isExpedited\": \"boolean_optional\",\n                        \"estimatedDateUtc\": \"date_optional\",\n                        \"estimatedDateUpperBoundUtc\": \"date_optional\",\n                        \"preferredCarrier\": \"string_optional\",\n                        \"customerPickedFulfillerRefId\": \"string_optional\",\n                        \"bopis\": {\n                            \"instorePickupBusinessRefId\": \"string_optional\",\n                            \"customerPickedFulfillerRefId\": \"string_optional\",\n                            \"isCurbside\": \"boolean_optional\",\n                            \"isRobis\": \"boolean_optional\"\n                        }\n                    },\n                    \"quantity\": \"number_required\",\n                    \"pricing\": {\n                        \"unitPrice\": \"number_required\",\n                        \"salePrice\": \"number_optional\",\n                        \"customFees\": [\n                            {\n                                \"name\": \"string_required\",\n                                \"description\": \"string_optional\",\n                                \"amount\": \"number_optional\",\n                                \"rate\": \"number_optional\",\n                                \"taxable\": \"boolean_optional\",\n                                \"includedInSubtotal\": \"boolean_required\"\n                            }\n                        ],\n                        \"shippingFees\": [\n                            {\n                                \"name\": \"string_required\",\n                                \"description\": \"string_optional\",\n                                \"amount\": \"number_optional\",\n                                \"rate\": \"number_optional\",\n                                \"taxable\": \"boolean_optional\"\n                            }\n                        ],\n                        \"discounts\": [\n                            {\n                                \"code\": \"string_optional\",\n                                \"name\": \"string_required\",\n                                \"description\": \"string_optional\",\n                                \"amount\": \"number_optional\",\n                                \"rate\": \"number_optional\",\n                                \"discountId\": \"number_optional\"\n                            }\n                        ],\n                        \"taxes\": [\n                            {\n                                \"name\": \"string_required\",\n                                \"description\": \"string_optional\",\n                                \"amount\": \"number_optional\",\n                                \"rate\": \"number_optional\",\n                                \"includedInSubtotal\": \"boolean_required\"\n                            }\n                        ],\n                        \"marketplaceRemittedTaxAmount\": \"number_optional\"\n                    },\n                    \"customFields\": [\n                        {\n                            \"name\": \"string_required\",\n                            \"value\": \"string_required\"\n                        }\n                    ]\n                }\n            ]\n        }\n    ]\n}"},"url":"https://api.quiverstest.com/v1/Transactions/Authorize?calculateTaxes=true&type=\"stripe\"&intentId=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n</ul>\n<p>Used to authorize a transaction for a payment charge in an ecommerce platform.</p>\n","urlObject":{"protocol":"https","path":["v1","Transactions","Authorize"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"calculateTaxes","value":"true"},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"type","value":"\"stripe\""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"intentId","value":""}],"variable":[]}},"response":[],"_postman_id":"32a74b8c-bf96-46a3-8c92-8cecc5904559"}],"id":"83c9dd06-11b8-4e43-bfd0-a9ceb6e83fc3","_postman_id":"83c9dd06-11b8-4e43-bfd0-a9ceb6e83fc3","description":""},{"name":"Users","item":[{"name":"Users - Search (Light) By Email","id":"8697494f-c06b-4130-a6a3-d2a6fe847766","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Users/SearchLightByEmail?email=&domain=&storefrontId=&consumerGroupId=&businessRefId=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Up to 30s</code></li>\n</ul>\n<p>Returns light-weight information about users for a given email address.</p>\n","urlObject":{"protocol":"https","path":["v1","Users","SearchLightByEmail"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"email","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"domain","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"storefrontId","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"consumerGroupId","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"businessRefId","value":""}],"variable":[]}},"response":[],"_postman_id":"8697494f-c06b-4130-a6a3-d2a6fe847766"},{"name":"Users - Get Current User","id":"2006264e-d6fe-40b2-a575-8c7dc2424c7f","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Users/Current","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Up to 30s</code></li>\n</ul>\n<p>Returns details about the currently authenticated user.</p>\n","urlObject":{"protocol":"https","path":["v1","Users","Current"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2006264e-d6fe-40b2-a575-8c7dc2424c7f"},{"name":"Users - Serach","id":"78e5d64a-6b44-4666-96a2-0ab78f5add61","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Users/Search?business=&searchTerm=&roles=&pagesize=100&page=1&sort={\"name\":1}","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Paging</strong>: <code>Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>Search users - can be done across all businesses by Quivers Admins, otherwise business param required.</p>\n","urlObject":{"protocol":"https","path":["v1","Users","Search"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"searchTerm","value":""},{"description":{"content":"<p>undefined_optional</p>\n","type":"text/plain"},"key":"roles","value":""},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"pagesize","value":"100"},{"description":{"content":"<p>number_optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>*_optional</p>\n","type":"text/plain"},"key":"sort","value":"{\"name\":1}"}],"variable":[]}},"response":[],"_postman_id":"78e5d64a-6b44-4666-96a2-0ab78f5add61"},{"name":"Users - Register","id":"b47da84c-0b25-44de-be10-6f5a93bd7713","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firstname\": \"string_required\",\n    \"lastname\": \"string_required\",\n    \"email\": \"string_required\",\n    \"password\": \"string_required\",\n    \"domain\": \"string_optional\",\n    \"aliasName\": \"string_optional\",\n    \"pictureId\": \"number_optional\",\n    \"timezoneId\": \"string_optional (default: \\\"America/Los_Angeles\\\")\",\n    \"termsAndConditionsApproved\": \"boolean_required\",\n    \"invited\": \"boolean_optional\",\n    \"invitedOnUtc\": \"string_optional\",\n    \"requiresEmailVerification\": \"boolean_optional\",\n    \"storefrontId\": \"string_optional\",\n    \"prosumerPortalId\": \"string_optional\",\n    \"storeNumber\": \"string_optional\",\n    \"code\": \"string_optional\",\n    \"affiliateId\": \"number_optional\",\n    \"culture\": \"string_optional (default: \\\"en-US\\\")\"\n}"},"url":"https://api.quiverstest.com/v1/Users/Register?notify=true&createContact=false","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n</ul>\n<p>This will register a new user on the platform.</p>\n","urlObject":{"protocol":"https","path":["v1","Users","Register"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"notify","value":"true"},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"createContact","value":"false"}],"variable":[]}},"response":[],"_postman_id":"b47da84c-0b25-44de-be10-6f5a93bd7713"},{"name":"Users - Forgot Password","id":"b3449d27-af0b-4d73-a9be-fa583e70d9d7","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"string_required\",\n    \"url\": \"string_optional\"\n}"},"url":"https://api.quiverstest.com/v1/Users/ForgotPassword?businessRefId=&storefrontId=&consumerGroupId=&domain=&register=false","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n</ul>\n<p>This will trigger an email to the user to aid in resetting their password.</p>\n","urlObject":{"protocol":"https","path":["v1","Users","ForgotPassword"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"businessRefId","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"storefrontId","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"consumerGroupId","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"domain","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"register","value":"false"}],"variable":[]}},"response":[],"_postman_id":"b3449d27-af0b-4d73-a9be-fa583e70d9d7"},{"name":"Users - Change Password","id":"67487210-13e5-408f-8413-08ee9273d65b","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"string_required\",\n    \"password\": \"string_required\",\n    \"code\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/Users/ChangePassword?businessRefId=&storefrontId=&consumerGroupId=&domain=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n</ul>\n<p>This will use a forgot password token to allow a user to change their current password.</p>\n","urlObject":{"protocol":"https","path":["v1","Users","ChangePassword"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"businessRefId","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"storefrontId","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"consumerGroupId","value":""},{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"domain","value":""}],"variable":[]}},"response":[],"_postman_id":"67487210-13e5-408f-8413-08ee9273d65b"},{"name":"Users - Setup Two-Factor Authentication","id":"1b2f87e4-02cd-4c4b-b338-0092b37905f9","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"string_required\",\n    \"phoneNumber\": \"string_optional\"\n}"},"url":"https://api.quiverstest.com/v1/Users/Setup2FA","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n</ul>\n<p>This endpoint begins the 2FA setup process for a user, if they have not yet setup 2FA.</p>\n","urlObject":{"protocol":"https","path":["v1","Users","Setup2FA"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"1b2f87e4-02cd-4c4b-b338-0092b37905f9"},{"name":"Users - Verify Two-Factor Authentication","id":"8ac60ebf-00a4-43d3-bebc-d75f7576f353","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"token\": \"string_required\",\n    \"code\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/Users/Verify2FA","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n</ul>\n<p>This endpoint accepts a code generated from an Authy app or SMS message to verify 2FA setup.</p>\n","urlObject":{"protocol":"https","path":["v1","Users","Verify2FA"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8ac60ebf-00a4-43d3-bebc-d75f7576f353"},{"name":"Users - Request 2FA Code","id":"4c4b25a5-301c-4a0c-a493-3a9655aed40a","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Users/Request2FACode?token=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n</ul>\n<p>Triggers a fresh SMS code for 2FA for either a user who is logging in, or a logged-in user who is setting up or disabling 2FA.</p>\n","urlObject":{"protocol":"https","path":["v1","Users","Request2FACode"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_optional</p>\n","type":"text/plain"},"key":"token","value":""}],"variable":[]}},"response":[],"_postman_id":"4c4b25a5-301c-4a0c-a493-3a9655aed40a"},{"name":"Users - Disable Two-Factor Authentication","id":"ca494e0e-3d99-4990-9679-062594b2a88a","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"code\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/Users/Disable2FA","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n</ul>\n<p>This endpoint accepts a code generated from an Authy app or SMS message to disable 2FA for the user.</p>\n","urlObject":{"protocol":"https","path":["v1","Users","Disable2FA"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ca494e0e-3d99-4990-9679-062594b2a88a"},{"name":"Users - Get Two-Factor Authentication","id":"58c12167-f496-4264-8e4f-4380a87764c3","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Users/Get2FA?token=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Not Supported</code></li>\n</ul>\n<p>This endpoint accepts a 2FA token received from Auth/Login to return info about the 2FA they should need to complete.</p>\n","urlObject":{"protocol":"https","path":["v1","Users","Get2FA"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"token","value":""}],"variable":[]}},"response":[],"_postman_id":"58c12167-f496-4264-8e4f-4380a87764c3"},{"name":"Get Claimable Businesses","id":"c7337712-47b1-4ba7-ad2b-938bce00b232","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://api.quiverstest.com/v1/Users/MyClaimableBusinesses","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Paging</strong>: <code>Not Supported</code></li>\n<li><strong>Cache-Control</strong>: <code>Up to 30s</code></li>\n</ul>\n<p>Gets claimable businesses for the currently logged in user</p>\n","urlObject":{"protocol":"https","path":["v1","Users","MyClaimableBusinesses"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c7337712-47b1-4ba7-ad2b-938bce00b232"},{"name":"Users - Update Beta Participation","id":"8a76a3bd-3657-4030-beb2-0a23a9c3e7a1","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"beta\": \"boolean_required\"\n}"},"url":"https://api.quiverstest.com/v1/Users/UpdateBetaParticipation","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n</ul>\n<p>This can be used to configure if the currently signed in user should be using the beta experience, or the current experience.</p>\n","urlObject":{"protocol":"https","path":["v1","Users","UpdateBetaParticipation"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8a76a3bd-3657-4030-beb2-0a23a9c3e7a1"},{"name":"Users - Set Claiming Regions","id":"aff35545-56c4-462e-98e4-1c7daa040c72","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"number_required\",\n    \"userEmail\": \"string_optional\",\n    \"claimingRegionIds\": [\n        null\n    ]\n}"},"url":"https://api.quiverstest.com/v1/Users/SetClaimingRegions?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>This can be used by a merchant to set which claiming regions a Sales Rep type user has permissions over.</p>\n","urlObject":{"protocol":"https","path":["v1","Users","SetClaimingRegions"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"aff35545-56c4-462e-98e4-1c7daa040c72"},{"name":"Users - Invite to Business","id":"c9d14db0-961c-4847-96e3-5359caa5fc56","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"firstname\": \"string_required\",\n    \"lastname\": \"string_required\",\n    \"email\": \"string_required\",\n    \"role\": \"*_required\",\n    \"claimingRegionIds\": [\n        null\n    ]\n}"},"url":"https://api.quiverstest.com/v1/Users/InviteToBusiness?business=&notify=true","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Invite a new email or an existing Quivers User to a Business.</p>\n","urlObject":{"protocol":"https","path":["v1","Users","InviteToBusiness"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""},{"description":{"content":"<p>boolean_optional</p>\n","type":"text/plain"},"key":"notify","value":"true"}],"variable":[]}},"response":[],"_postman_id":"c9d14db0-961c-4847-96e3-5359caa5fc56"},{"name":"Users - Update Business Role","id":"2ea80c21-4e8c-4925-bf15-3318901cc5bb","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"number_optional\",\n    \"email\": \"string_optional\",\n    \"role\": \"*_optional\"\n}"},"url":"https://api.quiverstest.com/v1/Users/UpdateBusinessRole?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Change a User's Role for a Business or remove them from the Business.</p>\n","urlObject":{"protocol":"https","path":["v1","Users","UpdateBusinessRole"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"2ea80c21-4e8c-4925-bf15-3318901cc5bb"},{"name":"Users - Unsubscribe from Consumer Alert","id":"efec19f3-68fa-4de3-a360-e430ffdc437a","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"number_required\",\n    \"userAlertTypeId\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/Users/UnsubscribeFromConsumerAlert","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n</ul>\n<p>Disable a User's Preference for a User Alert Which is Type Consumer.</p>\n","urlObject":{"protocol":"https","path":["v1","Users","UnsubscribeFromConsumerAlert"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"efec19f3-68fa-4de3-a360-e430ffdc437a"},{"name":"Users - Update Culture","id":"a1d3a260-2842-439a-b24a-e245a1dc4d99","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"culture\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/Users/UpdateCulture","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n</ul>\n<p>Update a User's culture.</p>\n","urlObject":{"protocol":"https","path":["v1","Users","UpdateCulture"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a1d3a260-2842-439a-b24a-e245a1dc4d99"},{"name":"Users - Request to Join Business","id":"9d5f55fd-03e7-4946-86b5-4ce5d2e3c303","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"businessRefId\": \"string_required\"\n}"},"url":"https://api.quiverstest.com/v1/Users/RequestToJoinBusiness","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>true</code></li>\n</ul>\n<p>Request to a join an existing business on Quivers.</p>\n","urlObject":{"protocol":"https","path":["v1","Users","RequestToJoinBusiness"],"host":["api","quiverstest","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"9d5f55fd-03e7-4946-86b5-4ce5d2e3c303"},{"name":"Users - Reject Business Join Request","id":"cf02e242-3d26-47bc-9210-c1689a3c1938","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"ApiKey {uuid} OR Bearer {token}","description":"<p>You may authenticate by passing in either an <code>ApiKey</code>, or a <code>Bearer Token</code>.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"businessJoinRequestId\": \"number_required\"\n}"},"url":"https://api.quiverstest.com/v1/Users/RejectBusinessJoinRequest?business=","description":"<ul>\n<li><strong>Published</strong>: <code>true</code></li>\n<li><strong>Public</strong>: <code>false</code></li>\n<li><strong>Supported Roles</strong>: <code>BusinessAdmin</code></li>\n</ul>\n<p>Reject a User's request to join a Business.</p>\n","urlObject":{"protocol":"https","path":["v1","Users","RejectBusinessJoinRequest"],"host":["api","quiverstest","com"],"query":[{"description":{"content":"<p>string_required</p>\n","type":"text/plain"},"key":"business","value":""}],"variable":[]}},"response":[],"_postman_id":"cf02e242-3d26-47bc-9210-c1689a3c1938"}],"id":"cee7f856-90f4-4a7e-9f20-67ce68442b12","_postman_id":"cee7f856-90f4-4a7e-9f20-67ce68442b12","description":""}]}