{"info":{"_postman_id":"25194b47-948f-47b4-9538-9471a9b505bf","name":"Merch Dropper","description":"<html><head></head><body><h1 id=\"introduction\">Introduction</h1>\n<p>What does your API do?</p>\n<h1 id=\"overview\">Overview</h1>\n<p>Things that the developers should know about</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>What is the preferred way of using the API?</p>\n<h1 id=\"error-codes\">Error Codes</h1>\n<p>What errors and status codes can a user expect?</p>\n<h1 id=\"rate-limit\">Rate limit</h1>\n<p>Is there a limit to the number of requests an user can send?</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Introduction","slug":"introduction"},{"content":"Overview","slug":"overview"},{"content":"Authentication","slug":"authentication"},{"content":"Error Codes","slug":"error-codes"},{"content":"Rate limit","slug":"rate-limit"}],"owner":"9427795","collectionId":"25194b47-948f-47b4-9538-9471a9b505bf","publishedId":"SWTHYuA5","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2020-02-06T18:22:41.000Z"},"item":[{"name":"Users","item":[{"name":"Get All Users","id":"7ad49bcb-6141-4f5b-92c5-c40b35a920d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://merchdropper-production.herokuapp.com/api/users/","description":"<p>// @desc     Get all Users\n// @route    GET /api/users\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","users",""],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7ad49bcb-6141-4f5b-92c5-c40b35a920d2"},{"name":"Get a User by ID","id":"ad7dd039-f7ce-4a70-afbf-ea49022b58d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://merchdropper-production.herokuapp.com/api/users/1","description":"<p>// @desc     Get a user by ID\n// @route    GET /api/users/:id\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","users","1"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ad7dd039-f7ce-4a70-afbf-ea49022b58d0"},{"name":"Get a user by Username","id":"b265a02c-0b18-44c7-a000-7b087bdef5b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://merchdropper-production.herokuapp.com/api/users/username/merchdropperadmin","description":"<p>// @desc     Get a user by username\n// @route    GET /api/users/username/:username\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","users","username","merchdropperadmin"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b265a02c-0b18-44c7-a000-7b087bdef5b2"},{"name":"Add a user","id":"0129ec69-1295-4bc3-9c80-26dbf6c9d9bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"<p>JSON type</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"first_name\": \"wes\",\r\n    \"last_name\": \"newUser\",\r\n    \"username\": \"wjonke\",\r\n    \"password\": \"admin\",\r\n    \"stripe_account\": \"12345678912345678\",\r\n    \"address1\": \"7822 Test Drive\",\r\n    \"city\": \"Atlanta\",\r\n    \"state\": \"Georgia\",\r\n    \"zip_code\": 30313,\r\n    \"country\": \"USA\",\r\n    \"email\": \"merchdropper20@gmail.com\"\r\n\r\n}"},"url":"https://merchdropper-production.herokuapp.com/api/auth/register","description":"<p>// @desc     ADD a User\n// @route    POST /api/auth/register\n// @access   Public</p>\n","urlObject":{"protocol":"https","path":["api","auth","register"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0129ec69-1295-4bc3-9c80-26dbf6c9d9bf"},{"name":"Login","id":"81377f6d-fd4e-4b96-b5d9-46468a6fe5cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>JSON type</p>\n","key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"username\": \"test\",\r\n    \"password\": \"admin\"\r\n}"},"url":"https://merchdropper-production.herokuapp.com/api/auth/login","description":"<p>// @desc     Login\n// @route    POST /api/auth/login\n// @access   Public</p>\n","urlObject":{"protocol":"https","path":["api","auth","login"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"81377f6d-fd4e-4b96-b5d9-46468a6fe5cf"},{"name":"Edit a user by Username","id":"c475e3a4-19e7-4b88-a8b8-50786f513e06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","description":"<p>JSON type</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"userID\": 1,\r\n    \"first_name\": \"Merch\",\r\n    \"last_name\": \"edited\",\r\n    \"username\": \"merchdropperadmin\",\r\n    \"seller\": 1,\r\n    \"stripe_account\": \"MerchDropperAdmin\",\r\n    \"address1\": \"7822 Myriad Drive\",\r\n    \"address2\": \"-\",\r\n    \"city\": \"Denver\",\r\n    \"state\": \"Colorado\",\r\n    \"zip_code\": 80204,\r\n    \"country\": \"USA\",\r\n    \"phone\": 2165274556,\r\n    \"email\": \"merchdropper20@gmail.com\",\r\n    \"billing_address\": \"7822 Myriad Drive\",\r\n    \"billing_city\": \"Denver\",\r\n    \"billing_zip_code\": \"80204\",\r\n    \"billing_country\": \"USA\",\r\n    \"shipping_address\": \"7822 Myriad Drive\",\r\n    \"shipping_city\": \"Denver\",\r\n    \"shipping_zip_code\": \"80204\",\r\n    \"shipping_country\": \"USA\",\r\n    \"support_pin\": \"HRYI7820\"\r\n}"},"url":"https://merchdropper-production.herokuapp.com/api/users/merchdropperadmin","description":"<p>// @desc     Edit a User\n// @route    PUT /api/users/username/username\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","users","merchdropperadmin"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c475e3a4-19e7-4b88-a8b8-50786f513e06"},{"name":"Delete a user by username","id":"ffef01d6-78e8-4f6d-9d7c-aef0cbcc0803","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://merchdropper-production.herokuapp.com/api/users/wjonke","description":"<p>// @desc     Delete a User\n// @route    DELETE /api/users/:username\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","users","wjonke"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ffef01d6-78e8-4f6d-9d7c-aef0cbcc0803"}],"id":"47e06a86-a445-479c-bc6f-cafcda5928f6","description":"<p>crud for all users</p>\n","_postman_id":"47e06a86-a445-479c-bc6f-cafcda5928f6"},{"name":"Stores","item":[{"name":"Get All Stores","id":"862eb7cb-b428-4d31-87cd-baf820937b61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://merchdropper-production.herokuapp.com/api/stores","description":"<p>// @desc     Get all Stores\n// @route    GET /api/stores\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","stores"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"862eb7cb-b428-4d31-87cd-baf820937b61"},{"name":"Get a Store by ID","id":"9ee217fa-b7ef-462b-a300-e79d97ac8a2d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://merchdropper-production.herokuapp.com/api/stores/1","description":"<p>// @desc     Get a store by ID\n// @route    GET /api/stores/:id\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","stores","1"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"9ee217fa-b7ef-462b-a300-e79d97ac8a2d"},{"name":"Get a Store by store_name","id":"84745bd4-b509-4a92-b148-7d4ab1d9cfcd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://merchdropper-production.herokuapp.com/api/stores/storename/Anthill%20Store","description":"<p>// @desc     Get a store by store_name\n// @route    GET /api/stores/storename/:store_name\n// @access   Public</p>\n","urlObject":{"protocol":"https","path":["api","stores","storename","Anthill%20Store"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"84745bd4-b509-4a92-b148-7d4ab1d9cfcd"},{"name":"Edit a store by ID","id":"ef3bbbde-6910-4a00-b612-34a4d7371071","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","description":"<p>JSON type</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"active\": 1,\r\n    \"store_name\": \"Anthill Store\",\r\n    \"hero_ImageURL\": \"https://www.dalesjewelers.com/wp-content/uploads/2018/10/placeholder-silhouette-male.png\",\r\n    \"logo_url\": \"https://uxmasters.org/images/ant_logo.svg\"\r\n}"},"url":"https://merchdropper-production.herokuapp.com/api/stores/1","description":"<p>// @desc     Edit a Store\n// @route    PUT /api/stores/:storeID\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","stores","1"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ef3bbbde-6910-4a00-b612-34a4d7371071"},{"name":"Add a Store","id":"c63b1e47-62e2-400f-af4c-3aaff9e043e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"<p>JSON type</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"userID\":1,\r\n    \"active\": 1,\r\n    \"store_name\": \"NewStore\",\r\n    \"hero_ImageURL\": \"https://www.dalesjewelers.com/wp-content/uploads/2018/10/placeholder-silhouette-male.png\",\r\n    \"logo_url\": \"your mom\"\r\n}"},"url":"https://merchdropper-production.herokuapp.com/api/stores","description":"<p>// @desc     ADD a Store\n// @route    POST /api/stores\n// @access   Public</p>\n","urlObject":{"protocol":"https","path":["api","stores"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c63b1e47-62e2-400f-af4c-3aaff9e043e1"},{"name":"Delete a store by store_name","id":"6221b62f-8e60-4ab4-b65d-5f28bdafaf71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://merchdropper-production.herokuapp.com/api/stores/NewStore","description":"<p>// @desc     Delete a User\n// @route    DELETE /api/stores/:store_name\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","stores","NewStore"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6221b62f-8e60-4ab4-b65d-5f28bdafaf71"}],"id":"a34f2669-7d5b-4e06-b56b-f51b906ce3f0","description":"<p>crud for all users</p>\n","_postman_id":"a34f2669-7d5b-4e06-b56b-f51b906ce3f0"},{"name":"Products","item":[{"name":"Post a Product","id":"01225a36-5197-4210-a898-2719509b3f6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n\t\r\n    \"productName\": \"Test Product 2\",\r\n    \"fullSizeURL\": \"https://res.cloudinary.com/dze74ofbf/image/upload/v1581453585/wsjikfpellbybgzbymy2.jpg\",\r\n    \"thumbnailURL\": \"https://res.cloudinary.com/dze74ofbf/image/upload/v1581454280/eiz7lg8c8mtosndddelk.jpg\",\r\n    \"description\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In ornare arcu vulputate arcu suscipit venenatis. Donec sit amet ipsum ac urna dignissim euismod a euismod nisi. Nullam pulvinar odio semper.\",\r\n    \"price\": 10.3,\r\n    \"storeID\": 1\r\n\r\n}"},"url":"https://merchdropper-production.herokuapp.com/api/products","description":"<p>// @desc     Post a Product \n// @route    POST /api/products\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","products"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"01225a36-5197-4210-a898-2719509b3f6e"},{"name":"Post a mockup","id":"506eea46-c5f7-47a4-bedd-7d21e18bdfbc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n\t\"template\": { \"name\": \"front\"},\r\n\t\"product\": { \"id\": \"canvas-unisex-t-shirt\", \"color\": \"Sunset\" },\r\n\t\"design\": {\"type\": \"dtg\",\"sides\":{\r\n\t    \"front\": {\r\n\t        \"artwork\": \"http://oo-prod.s3.amazonaws.com/public/artworks/2020/01/30/1148fc23dfe99023/original.png\",\r\n\t        \"dimensions\": { \"width\": \"10\" },\r\n\t        \"position\": { \"horizontal\": \"R\", \"offset\": { \"top\": \"2\" } }\r\n\t    }\r\n\t}\r\n\t}\r\n}"},"url":"https://merchdropper-production.herokuapp.com/api/products/mockup","description":"<p>// @desc     Post a Product \n// @route    POST /api/products\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","products","mockup"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"506eea46-c5f7-47a4-bedd-7d21e18bdfbc"},{"name":"Get all products","id":"8167b302-998a-4761-9e80-ca3ea69b149f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://merchdropper-production.herokuapp.com/api/products","description":"<p>// @desc     Get all products\n// @route    GET /api/products\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","products"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8167b302-998a-4761-9e80-ca3ea69b149f"},{"name":"Get Product by ID","id":"fb311586-1cc3-426d-8b72-b0fd4ce84d88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://merchdropper-production.herokuapp.com/api/products/1","description":"<p>productID\n// @route    GET /api/products/:productID\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","products","1"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"fb311586-1cc3-426d-8b72-b0fd4ce84d88"},{"name":"Edit Product by ID","id":"a670348d-508f-40b4-a84d-679b5d68dbfd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"    {\r\n        \r\n        \"productName\": \"Edited Test Product\",\r\n        \"fullSizeURL\": \"https://res.cloudinary.com/dze74ofbf/image/upload/v1581453585/wsjikfpellbybgzbymy2.jpg\",\r\n        \"thumbnailURL\": \"https://res.cloudinary.com/dze74ofbf/image/upload/v1581454280/eiz7lg8c8mtosndddelk.jpg\",\r\n        \"description\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In ornare arcu vulputate arcu suscipit venenatis. Donec sit amet ipsum ac urna dignissim euismod a euismod nisi. Nullam pulvinar odio semper.\",\r\n        \"price\": 10.3,\r\n        \"storeID\": 1,\r\n        \"created_at\": \"2020-02-12 21:19:36\",\r\n        \"updated_at\": \"2020-02-12 21:19:36\"\r\n    }"},"url":"https://merchdropper-production.herokuapp.com/api/products/1","description":"<p>// @desc     Get an ptoduct by productID\n// @route    GET /api/products/:productID\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","products","1"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a670348d-508f-40b4-a84d-679b5d68dbfd"},{"name":"Delete a Product by ID","id":"e5636c3d-523f-4b1e-b71a-9f48979949db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://merchdropper-production.herokuapp.com/api/products/1","description":"<p>// @desc     Get an product by productID\n// @route    GET /api/products/:productID\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","products","1"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e5636c3d-523f-4b1e-b71a-9f48979949db"}],"id":"f32105bd-bda9-40ea-a0e4-d079364e309e","_postman_id":"f32105bd-bda9-40ea-a0e4-d079364e309e","description":""},{"name":"Designs","item":[{"name":"Get all designs","id":"24fbd433-2ec3-432d-8842-32d4067d633b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://merchdropper-production.herokuapp.com/api/designs/","description":"<p>// @desc     Get all designs\n// @route    GET /api/designs\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","designs",""],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"24fbd433-2ec3-432d-8842-32d4067d633b"},{"name":"Post a Design","id":"140c617e-344b-4a97-8b8c-2e87cfa22ca1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n        \"design_name\": \"New New Ant for shirt\",\r\n        \"design_url\": \"https://uxmasters.org/images/ant_logo.svg\",\r\n        \"storeID\": 1,\r\n        \"userID\": 1\r\n}"},"url":"https://merchdropper-production.herokuapp.com/api/designs","description":"<p>// @desc     Post a Design\n// @route    POST /api/designs\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","designs"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"140c617e-344b-4a97-8b8c-2e87cfa22ca1"},{"name":"Get Design by ID","id":"427af695-6ca9-472f-88f3-af7e9648f556","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://merchdropper-production.herokuapp.com/api/designs/1","description":"<p>// @desc     Get an design by designID\n// @route    GET /api/designs/:designID\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","designs","1"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"427af695-6ca9-472f-88f3-af7e9648f556"},{"name":"Edit Design by ID","id":"7da67ece-8c84-4494-933d-c849479ffc3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n        \"design_name\": \"EDITED Ant for shirt\",\r\n        \"design_url\": \"https://uxmasters.org/images/ant_logo.svg\",\r\n        \"storeID\": 1,\r\n        \"userID\": 1\r\n}"},"url":"https://merchdropper-production.herokuapp.com/api/designs/1","description":"<p>// @desc     Get an design by designID\n// @route    GET /api/designs/:designID\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","designs","1"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7da67ece-8c84-4494-933d-c849479ffc3c"},{"name":"Delete a Design by ID","id":"ecb80647-efec-4bbf-ae97-e7773bdfd744","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://merchdropper-production.herokuapp.com/api/designs/3","description":"<p>// @desc     Get an design by designID\n// @route    GET /api/designs/:designID\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","designs","3"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ecb80647-efec-4bbf-ae97-e7773bdfd744"}],"id":"78feecce-11d4-4c12-8d64-292d97bf5772","_postman_id":"78feecce-11d4-4c12-8d64-292d97bf5772","description":""},{"name":"Quotes","item":[{"name":"Add a quote","id":"cef9c098-9522-4824-94fe-d49201bb0c46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>JSON type</p>\n","key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"    {\r\n      \"quoteInfo\": { \r\n      \t\"storeID\": 1,\r\n        \"userID\": 1\r\n       },\r\n       \r\n    \t\"spInfo\": {\r\n\t\t\t\"type\": \"dtg\",\r\n\t\t\t\"designId\": \"5e442687dd2846373f24d9cd\",\r\n\t\t\t\"products\": [\r\n\t\t\t\t{\t\"id\": \"canvas-unisex-t-shirt\",\r\n\t\t\t\t\t\"color\": \"Sunset\",\r\n\t\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\t\"size\": \"sml\"\r\n\t\t\t\t},\r\n\t\t\t\t{\t\"id\": \"canvas-unisex-t-shirt\",\r\n\t\t\t\t\t\"color\": \"Sunset\",\r\n\t\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\t\"size\": \"lrg\"\r\n\t\t\t\t}\r\n\t\t\t],\r\n\t\t\t\"address\":  {\r\n\t\t\t\t\"name\": \"Jennie\",\r\n\t\t\t\t\"address1\": \"1234 street\",\r\n\t\t\t\t\"city\": \"San Diego\",\r\n\t\t\t\t\"state\": \"California\",\r\n\t\t\t\t\"zip\": \"92126\",\r\n\t\t\t\t\"country\": \"USA\"\r\n\t\t\t}\r\n\t\t}\r\n    }"},"url":"https://merchdropper-production.herokuapp.com/api/quotes/","description":"<p>// @desc     ADD a Quote\n// @route    POST /api/quotes\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","quotes",""],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"cef9c098-9522-4824-94fe-d49201bb0c46"},{"name":"Get All Quotes","id":"d3f37d78-97f6-42b1-a1cb-43c4c1a1d42f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://merchdropper-production.herokuapp.com/api/quotes/","description":"<p>// @desc     Get all Quotes\n// @route    GET /api/quotes\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","quotes",""],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d3f37d78-97f6-42b1-a1cb-43c4c1a1d42f"},{"name":"Get a Quote by ID","id":"94819b5f-52cf-4910-aae7-e05b4e43266d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://merchdropper-production.herokuapp.com/api/quotes/1","description":"<p>// @desc     Get a quote by ID\n// @route    GET /api/quotes/:id\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","quotes","1"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"94819b5f-52cf-4910-aae7-e05b4e43266d"},{"name":"Get a Quote by Order Token","id":"4fd4b14c-6d34-4061-be4e-f1c8bcab957b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://merchdropper-production.herokuapp.com/api/quotes/quotetoken/70192HJALKANOIAMNL","description":"<p>// @desc     Get a store by store_name\n// @route    GET /api/quotes/quotetoken/:quoteToken\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","quotes","quotetoken","70192HJALKANOIAMNL"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"4fd4b14c-6d34-4061-be4e-f1c8bcab957b"},{"name":"Edit a quote by ID","id":"f0ee8c3b-ad1b-4cec-ac67-cda48f8c0ddb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","description":"<p>JSON type</p>\n","type":"text"}],"body":{"mode":"raw","raw":" {\r\n        \"quoteID\": 1,\r\n        \"storeID\": 1,\r\n        \"userID\": 1,\r\n        \"total\": 34.76,\r\n        \"subtotal\": 25.87,\r\n        \"tax\": 2.99,\r\n        \"fees\": 1.26,\r\n        \"shipping\": 4.64,\r\n        \"orderToken\": \"EditedquoteTOKEN\",\r\n        \"warnings\": \"-\",\r\n        \"mode\": \"-\"\r\n    }"},"url":"https://merchdropper-production.herokuapp.com/api/quotes/1","description":"<p>// @desc     Edit a Quote\n// @route    PUT /api/quotes/:quoteID\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","quotes","1"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f0ee8c3b-ad1b-4cec-ac67-cda48f8c0ddb"},{"name":"Edit a quote by Order Token","id":"d0b60ba9-da8f-4e72-b039-b737e6ea109e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"description":"<p>JSON type</p>\n","key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":" {\r\n        \"quoteID\": 1,\r\n        \"storeID\": 1,\r\n        \"userID\": 1,\r\n        \"total\": 500.21,\r\n        \"subtotal\": 25.87,\r\n        \"tax\": 2.99,\r\n        \"fees\": 1.26,\r\n        \"shipping\": 4.64,\r\n        \"orderToken\": \"EditedquoteTOKEN\",\r\n        \"warnings\": \"-\",\r\n        \"mode\": \"-\"\r\n    }"},"url":"https://merchdropper-production.herokuapp.com/api/quotes/ordertokenedid/EditedquoteTOKEN","description":"<p>// @desc     Edit a Quote\n// @route    PUT /api/quotes/ordertokenedit/:ordertoken\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","quotes","ordertokenedid","EditedquoteTOKEN"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d0b60ba9-da8f-4e72-b039-b737e6ea109e"},{"name":"Delete a quote by quote id","id":"3febf8cf-d5a7-40fa-aa70-ec64a02889b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://merchdropper-production.herokuapp.com/api/quotes/1","description":"<p>// @desc     Delete a User\n// @route    DELETE /api/quotes/:quoteID\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","quotes","1"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3febf8cf-d5a7-40fa-aa70-ec64a02889b4"},{"name":"Delete a quote by order token","id":"ae140501-0547-4d9b-b839-6601be4e6855","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://merchdropper-production.herokuapp.com/api/quotes/ordertoken/Newer Quote","description":"<p>// @desc     Delete a User\n// @route    DELETE /api/quotes/ordertoken/:orderToken\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","quotes","ordertoken","Newer Quote"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ae140501-0547-4d9b-b839-6601be4e6855"}],"id":"eaff48b0-ecb4-401c-8108-5196a98ae78a","description":"<p>crud for all users</p>\n","_postman_id":"eaff48b0-ecb4-401c-8108-5196a98ae78a"},{"name":"Orders","item":[{"name":"Get All Orders","id":"12e32173-1c44-4d60-a6a7-d081cfc9ef17","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://merchdropper-production.herokuapp.com/api/orders/","description":"<p>// @desc     Get all Orders\n// @route    GET /api/orders\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","orders",""],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"12e32173-1c44-4d60-a6a7-d081cfc9ef17"},{"name":"Add an Order","id":"5a9329c8-554a-4c5c-8458-35adbdf6d88c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>JSON type</p>\n","key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"orderInfo\": { \r\n    \t\"storeID\": 1,\r\n        \"userID\": 1\r\n    },\r\n       \r\n    \"spInfo\": {\r\n    \t\"orderToken\": \"order_0w_hpvNWWi9sOUgj5agc4g\"\r\n\t}\r\n}"},"url":"https://merchdropper-production.herokuapp.com/api/orders/","description":"<p>// @desc     ADD a Quote\n// @route    POST /api/orders\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","orders",""],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"5a9329c8-554a-4c5c-8458-35adbdf6d88c"},{"name":"Get an Order by ID","id":"93720616-9c43-4ec3-9a5d-fc6ac40b7207","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://merchdropper-production.herokuapp.com/api/orders/1","description":"<p>// @desc     Get a order by ID\n// @route    GET /api/orders/:id\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","orders","1"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"93720616-9c43-4ec3-9a5d-fc6ac40b7207"},{"name":"Get an Order by Order Token","id":"d9997bfd-317d-4a20-94a1-58f0defed19d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://merchdropper-production.herokuapp.com/api/orders/ordertoken/70192HJALKANOIAMNL","description":"<p>// @desc     Get a store by store_name\n// @route    GET /api/orders/:orderToken\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","orders","ordertoken","70192HJALKANOIAMNL"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d9997bfd-317d-4a20-94a1-58f0defed19d"},{"name":"Get an Order by SP orderID","id":"627116da-602e-4741-9242-c8c9dbbecb89","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://merchdropper-production.herokuapp.com/api/orders/sporderid/87965567KJHGJHD9876","description":"<p>// @desc     Get a store by store_name\n// @route    GET /api/orders/sporderid/:spOrderID\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","orders","sporderid","87965567KJHGJHD9876"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"627116da-602e-4741-9242-c8c9dbbecb89"},{"name":"Edit an order by ID","id":"5081732d-c9e7-4ec7-9ab0-509a7d27e3f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","description":"<p>JSON type</p>\n","type":"text"}],"body":{"mode":"raw","raw":" {\r\n    \"userID\": 1,\r\n    \"storeID\": 1,\r\n    \"status\": \"pending\",\r\n    \"total\": 34.76,\r\n    \"subtotal\": 25.87,\r\n    \"tax\": 2.99,\r\n    \"fees\": 1.26,\r\n    \"shipping\": 4.64,\r\n    \"orderToken\": \"70192HJALKANOIAMNL\",\r\n    \"spOrderID\": \"987569876JKHGFUYTDUYT\",\r\n    \"mode\": \"-\"\r\n}"},"url":"https://merchdropper-production.herokuapp.com/api/orders/1","description":"<p>// @desc     Edit an order\n// @route    PUT /api/orders/:orderID\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","orders","1"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"5081732d-c9e7-4ec7-9ab0-509a7d27e3f1"},{"name":"Edit an order by Sp order ID","id":"1b316699-187f-4f5f-af7b-bcc761410637","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"description":"<p>JSON type</p>\n","key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":" {\r\n    \"userID\": 1,\r\n    \"storeID\": 1,\r\n    \"status\": \"pending\",\r\n    \"total\": 5000.23,\r\n    \"subtotal\": 25.87,\r\n    \"tax\": 2.99,\r\n    \"fees\": 1.26,\r\n    \"shipping\": 4.64,\r\n    \"orderToken\": \"70192HJALKANOIAMNL\",\r\n    \"spOrderID\": \"987569876JKHGFUYTDUYT\",\r\n    \"mode\": \"-\"\r\n}"},"url":"https://merchdropper-production.herokuapp.com/api/orders/sporderid/987569876JKHGFUYTDUYT","description":"<p>// @desc     Edit an order\n// @route    PUT /api/orders/sporderid/:spOrderID\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","orders","sporderid","987569876JKHGFUYTDUYT"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"1b316699-187f-4f5f-af7b-bcc761410637"},{"name":"Edit an order by order token","id":"88f86dd5-82b4-42dd-b930-b1abe57aa7a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"description":"<p>JSON type</p>\n","key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":" {\r\n    \"userID\": 1,\r\n    \"storeID\": 1,\r\n    \"status\": \"edited\",\r\n    \"total\": 5000.23,\r\n    \"subtotal\": 25.87,\r\n    \"tax\": 2.99,\r\n    \"fees\": 1.26,\r\n    \"shipping\": 4.64,\r\n    \"orderToken\": \"70192HJALKANOIAMNL\",\r\n    \"spOrderID\": \"987569876JKHGFUYTDUYT\",\r\n    \"mode\": \"-\"\r\n}"},"url":"https://merchdropper-production.herokuapp.com/api/orders/ordertoken/70192HJALKANOIAMNL","description":"<p>// @desc     Edit an order\n// @route    PUT /api/orders/ordertoken/:orderToken\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","orders","ordertoken","70192HJALKANOIAMNL"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"88f86dd5-82b4-42dd-b930-b1abe57aa7a6"},{"name":"Delete a order by orderID","id":"ef4ff103-2530-41a3-b618-f56735cf2962","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://merchdropper-production.herokuapp.com/api/orders/1","description":"<p>// @desc     Delete a User\n// @route    DELETE /api/orders/:orderID\n// @access   Private</p>\n","urlObject":{"protocol":"https","path":["api","orders","1"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ef4ff103-2530-41a3-b618-f56735cf2962"},{"name":"Delete a order by order token","id":"7ee7dc80-8022-47e3-a1be-5949f20231d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"merchdropper-production.herokuapp.com/api/orders/ordertoken/986r8765dutjgh","description":"<p>// @desc     Delete a User\n// @route    DELETE /api/orders/ordertoken/:orderToken\n// @access   Private</p>\n","urlObject":{"path":["api","orders","ordertoken","986r8765dutjgh"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7ee7dc80-8022-47e3-a1be-5949f20231d9"},{"name":"Delete a order by sp orderID","id":"53ef6d89-f5f1-461b-bf99-7272ac24e3c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"merchdropper-production.herokuapp.com/api/orders/sporderid/87965567KJHGJHD9876","description":"<p>// @desc     Delete a User\n// @route    DELETE /api/orders/sporderid/:spOrderID\n// @access   Private</p>\n","urlObject":{"path":["api","orders","sporderid","87965567KJHGJHD9876"],"host":["merchdropper-production","herokuapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"53ef6d89-f5f1-461b-bf99-7272ac24e3c9"}],"id":"233d060e-12e0-433b-aeb1-19076f4a82c2","description":"<p>crud for all users</p>\n","_postman_id":"233d060e-12e0-433b-aeb1-19076f4a82c2"},{"name":"Get - Sanity Check","id":"d385bfe3-21e3-4151-960d-085e7ba4966c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","description":"<p>JSON type</p>\n","type":"text"}],"body":{"mode":"raw","raw":""},"url":"http://localhost:5032","urlObject":{"protocol":"http","port":"5032","host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"d385bfe3-21e3-4151-960d-085e7ba4966c"}]}