{"info":{"_postman_id":"a96134b5-bb12-4da5-92aa-139a6e3bc13f","name":"online store","description":"<html><head></head><body><p>online store application is the micro-service base application that provide essential features that every online store need such as</p>\n<p>• user registration<br>• user authentication and authorization<br>• password recovery by email OTP<br>• rate and comment for products<br>• generate invoice for user order<br>• payment integration by Stripe payment system<br>• image upload and view for product<br>• security feature base on JWT<br>• fully crud on products and custom search base on provider or category<br>• user shopping cart and order list<br>• H2 in memory database<br>• application configuration<br>• nice application test coverage<br>• more ...</p>\n<p>this application is based by two applications named user-service and product-service you should know that in this application <strong>we have two type of the id</strong> , first one which we refer as id that is integer and other one which we refer as uuid or productUuid which is the id made from uuid type.</p>\n<p>this application is available on dockerhub aswell. applications are available as a docker image so please check the respected ports to be free. 7074,8080</p>\n<p><strong>this application use h2 in memory databae so please do not use it in production.</strong></p>\n<p>you need to set up email info for the application to be able to do user registration,password revovery. you can set it through to ApplicationEmailSetUp</p>\n<p>swagger documention is also avaliable for both applications</p>\n<p><a href=\"http://localhost:8080/swagger-ui/api-docs.html\">http://localhost:8080/swagger-ui/api-docs.html</a></p>\n<p><a href=\"http://localhost:8080/swagger-ui/api-docs.html\">http://localhost:7074/swagger-ui/api-docs.html</a></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"15801125","collectionId":"a96134b5-bb12-4da5-92aa-139a6e3bc13f","publishedId":"2s8YzQUhvB","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2022-12-07T05:40:11.000Z"},"item":[{"name":"get product by service id  (user-application)","id":"ba1e6f6e-a46e-47e9-aad6-60b73b15d85c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:7074/userproduct/{ptoduct Uuid}","description":"<p>this api will bring single product data from product-application for user-application. the id will be uuid of the product that you can find in get all product api</p>\n","urlObject":{"protocol":"http","port":"7074","path":["userproduct","{ptoduct Uuid}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"dfb7ad45-16cc-4a7c-802c-0a3c7134853c","name":"get product by service id","originalRequest":{"method":"GET","header":[{"key":"","value":"","type":"text","disabled":true},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"http://localhost:7074/userproduct/{ptoduct Uuid}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"response\": {\n        \"response\": {\n            \"product_images\": [\n                {\n                    \"path\": \"C:/Users/User/Desktop/ym/apple.jpg\",\n                    \"des\": \"apple picture\",\n                    \"modify_time\": \"2022-12-04 / 09:40:45\",\n                    \"name\": \"apple\",\n                    \"id\": 1,\n                    \"url\": \"http://localhost:8080/productimage/show/apple.jpg\"\n                }\n            ],\n            \"product_service_id\": \"c24b2c9a-6ddf-4a68-a8c5-f56d69694486\",\n            \"comments\": [\n                {\n                    \"comment\": \"good apple\",\n                    \"id\": 1\n                }\n            ],\n            \"price\": 12.7,\n            \"modify_time\": \"2022-12-04 / 09:40:45\",\n            \"name\": \"apple\",\n            \"id\": 1,\n            \"categories\": [\n                {\n                    \"name\": \"phone\",\n                    \"id\": 1\n                }\n            ],\n            \"providers\": [\n                {\n                    \"modify_time\": \"2022-12-04 / 09:40:45\",\n                    \"name\": \"lg\",\n                    \"id\": 1\n                }\n            ]\n        },\n        \"status\": 200\n    }\n}"}],"_postman_id":"ba1e6f6e-a46e-47e9-aad6-60b73b15d85c"},{"name":"get all product (user-application)","id":"60b2ea15-3faf-4b30-9c1c-21a5178daaa2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:7074/userproduct","description":"<p>this api will bring all the product for the user-application application from product application</p>\n","urlObject":{"protocol":"http","port":"7074","path":["userproduct"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"32458b77-5391-4914-a97e-0c8ce91c6723","name":"get all product","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"http://localhost:7074/userproduct"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"name\": \"apple\",\n        \"price\": 12.7,\n        \"product_service_id\": \"c24b2c9a-6ddf-4a68-a8c5-f56d69694486\",\n        \"categories\": [\n            {\n                \"id\": 1,\n                \"name\": \"phone\"\n            }\n        ],\n        \"providers\": [\n            {\n                \"id\": 1,\n                \"name\": \"lg\",\n                \"modify_time\": \"2022-12-04 / 09:40:45\"\n            }\n        ],\n        \"product_images\": [\n            {\n                \"id\": 1,\n                \"name\": \"apple\",\n                \"path\": \"C:/Users/User/Desktop/ym/apple.jpg\",\n                \"des\": \"apple picture\",\n                \"url\": \"http://localhost:8080/productimage/show/apple.jpg\",\n                \"modify_time\": \"2022-12-04 / 09:40:45\"\n            }\n        ],\n        \"comments\": [\n            {\n                \"id\": 1,\n                \"comment\": \"good apple\"\n            }\n        ],\n        \"modify_time\": \"2022-12-04 / 09:40:45\"\n    },\n    {\n        \"id\": 2,\n        \"name\": \"samsung\",\n        \"price\": 12.54,\n        \"product_service_id\": \"887d415b-e258-445b-87a0-50122cbfdd3b\",\n        \"categories\": [],\n        \"providers\": [],\n        \"product_images\": [\n            {\n                \"id\": 2,\n                \"name\": \"apple\",\n                \"path\": \"C:/Users/User/Desktop/ym/apple.jpg\",\n                \"des\": \"apple picture\",\n                \"url\": \"http://localhost:8080/productimage/show/apple.jpg\",\n                \"modify_time\": \"2022-12-04 / 09:40:45\"\n            }\n        ],\n        \"comments\": [\n            {\n                \"id\": 2,\n                \"comment\": \"good samsung\"\n            }\n        ],\n        \"modify_time\": \"2022-12-04 / 09:40:45\"\n    },\n    {\n        \"id\": 3,\n        \"name\": \"LG\",\n        \"price\": 12.4,\n        \"product_service_id\": \"47786b78-3190-4c55-9399-2e8937ca1e7a\",\n        \"categories\": [\n            {\n                \"id\": 1,\n                \"name\": \"phone\"\n            },\n            {\n                \"id\": 1,\n                \"name\": \"phone\"\n            }\n        ],\n        \"providers\": [\n            {\n                \"id\": 1,\n                \"name\": \"lg\",\n                \"modify_time\": \"2022-12-04 / 09:40:45\"\n            },\n            {\n                \"id\": 1,\n                \"name\": \"lg\",\n                \"modify_time\": \"2022-12-04 / 09:40:45\"\n            }\n        ],\n        \"product_images\": [\n            {\n                \"id\": 3,\n                \"name\": \"apple\",\n                \"path\": \"C:/Users/User/Desktop/ym/apple.jpg\",\n                \"des\": \"apple picture\",\n                \"url\": \"http://localhost:8080/productimage/show/apple.jpg\",\n                \"modify_time\": \"2022-12-04 / 09:40:45\"\n            }\n        ],\n        \"comments\": [\n            {\n                \"id\": 3,\n                \"comment\": \"good samsung\"\n            }\n        ],\n        \"modify_time\": \"2022-12-04 / 09:40:45\"\n    }\n]"}],"_postman_id":"60b2ea15-3faf-4b30-9c1c-21a5178daaa2"},{"name":"get product by name  (user-application)","id":"95a6f5e6-49ff-4478-9d23-41794adb6633","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:7074/userproduct/name/{product name}","description":"<p>this api will bring the product data base on the name from product-application for user-application</p>\n","urlObject":{"protocol":"http","port":"7074","path":["userproduct","name","{product name}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"2a456abc-9426-40d1-ba2c-88f060450bed","name":"get product by name  (user-application)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"http://localhost:7074/userproduct/name/apple"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"name\": \"apple\",\n        \"price\": 12.7,\n        \"product_service_id\": \"c24b2c9a-6ddf-4a68-a8c5-f56d69694486\",\n        \"categories\": [\n            {\n                \"id\": 1,\n                \"name\": \"phone\"\n            }\n        ],\n        \"providers\": [\n            {\n                \"id\": 1,\n                \"name\": \"lg\",\n                \"modify_time\": \"2022-12-04 / 09:40:45\"\n            }\n        ],\n        \"product_images\": [\n            {\n                \"id\": 1,\n                \"name\": \"apple\",\n                \"path\": \"C:/Users/User/Desktop/ym/apple.jpg\",\n                \"des\": \"apple picture\",\n                \"url\": \"http://localhost:8080/productimage/show/apple.jpg\",\n                \"modify_time\": \"2022-12-04 / 09:40:45\"\n            }\n        ],\n        \"comments\": [\n            {\n                \"id\": 1,\n                \"comment\": \"good apple\"\n            }\n        ],\n        \"modify_time\": \"2022-12-04 / 09:40:45\"\n    }\n]"}],"_postman_id":"95a6f5e6-49ff-4478-9d23-41794adb6633"},{"name":"user login (user-application)","id":"6df5508d-e443-41f6-ba3c-633df28cd6cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"http://localhost:7074/login","description":"<p>by this api you will get the access token in the header</p>\n","urlObject":{"protocol":"http","port":"7074","path":["login"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"a618a4f9-bbbf-4956-b406-9b878af3e493","name":"user login (user-application)","originalRequest":{"method":"POST","header":[{"key":"","value":"","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"username\":\"javamail.com\",\r\n    \"password\":\"jo\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"http://localhost:7074/login","protocol":"http","host":["localhost"],"port":"7074","path":["login"],"query":[{"key":"","value":"","disabled":true}]}},"_postman_previewlanguage":"Text","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJqYXZhbWFpbC5jb20iLCJhdXRob3JpdGllcyI6W3siYXV0aG9yaXR5IjoiY2FuUmVhZFVzZXIifSx7ImF1dGhvcml0eSI6IlJPTEVfVVNFUiJ9XSwiaWF0IjoxNjcwMTM3MTQ0LCJleHAiOjE2NzEzMDkwMDB9.5e9485AwukrbZAEFHiF2t_09c-kLys33pEnLraNFhA_k0qpdnJ10PxvLxNMAz2l6ydWdmf23IfGsPDDqQrcQOw","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"6df5508d-e443-41f6-ba3c-633df28cd6cd"},{"name":"get all category (user-application)","id":"bbed5b7c-76c6-470c-9928-b33815ae6e83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:7074/usercategory","description":"<p>this api will bring all the available categories from product application to user application</p>\n","urlObject":{"protocol":"http","port":"7074","path":["usercategory"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"d8d1339b-2dac-426e-a702-3879cc3fea9b","name":"get all category","originalRequest":{"method":"GET","header":[],"url":"http://localhost:7074/usercategory"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"response\": [\n        {\n            \"id\": 1,\n            \"name\": \"phone\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"food\"\n        }\n    ]\n}"}],"_postman_id":"bbed5b7c-76c6-470c-9928-b33815ae6e83"},{"name":"get category by id (user-application)","id":"5487cdfc-3f73-48e0-9650-8d67babec5e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:7074/usercategory/{category id}","description":"<p>this api will bring the all the product that have same category id from product-application to user product</p>\n","urlObject":{"protocol":"http","port":"7074","path":["usercategory","{category id}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"110cd147-ee34-4e16-bca3-29ced0787a58","name":"get category by id","originalRequest":{"method":"GET","header":[],"url":"http://localhost:7074/usercategory/1"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"status\": 200,\r\n    \"response\": [\r\n        {\r\n            \"id\": 1,\r\n            \"name\": \"apple\",\r\n            \"price\": 12.7,\r\n            \"product_service_id\": \"c24b2c9a-6ddf-4a68-a8c5-f56d69694486\",\r\n            \"categories\": [\r\n                {\r\n                    \"id\": 1,\r\n                    \"name\": \"phone\"\r\n                }\r\n            ],\r\n            \"providers\": [\r\n                {\r\n                    \"id\": 1,\r\n                    \"name\": \"lg\",\r\n                    \"modify_time\": \"2022-12-04 / 09:40:45\"\r\n                }\r\n            ],\r\n            \"product_images\": [\r\n                {\r\n                    \"id\": 1,\r\n                    \"name\": \"apple\",\r\n                    \"path\": \"C:/Users/User/Desktop/ym/apple.jpg\",\r\n                    \"des\": \"apple picture\",\r\n                    \"url\": \"http://localhost:8080/productimage/show/apple.jpg\",\r\n                    \"modify_time\": \"2022-12-04 / 09:40:45\"\r\n                }\r\n            ],\r\n            \"comments\": [\r\n                {\r\n                    \"id\": 1,\r\n                    \"comment\": \"good apple\"\r\n                }\r\n            ],\r\n            \"modify_time\": \"2022-12-04 / 09:40:45\"\r\n        },\r\n        {\r\n            \"id\": 3,\r\n            \"name\": \"LG\",\r\n            \"price\": 12.4,\r\n            \"product_service_id\": \"47786b78-3190-4c55-9399-2e8937ca1e7a\",\r\n            \"categories\": [\r\n                {\r\n                    \"id\": 1,\r\n                    \"name\": \"phone\"\r\n                },\r\n                {\r\n                    \"id\": 1,\r\n                    \"name\": \"phone\"\r\n                }\r\n            ],\r\n            \"providers\": [\r\n                {\r\n                    \"id\": 1,\r\n                    \"name\": \"lg\",\r\n                    \"modify_time\": \"2022-12-04 / 09:40:45\"\r\n                },\r\n                {\r\n                    \"id\": 1,\r\n                    \"name\": \"lg\",\r\n                    \"modify_time\": \"2022-12-04 / 09:40:45\"\r\n                }\r\n            ],\r\n            \"product_images\": [\r\n                {\r\n                    \"id\": 3,\r\n                    \"name\": \"apple\",\r\n                    \"path\": \"C:/Users/User/Desktop/ym/apple.jpg\",\r\n                    \"des\": \"apple picture\",\r\n                    \"url\": \"http://localhost:8080/productimage/show/apple.jpg\",\r\n                    \"modify_time\": \"2022-12-04 / 09:40:45\"\r\n                }\r\n            ],\r\n            \"comments\": [\r\n                {\r\n                    \"id\": 3,\r\n                    \"comment\": \"good samsung\"\r\n                }\r\n            ],\r\n            \"modify_time\": \"2022-12-04 / 09:40:45\"\r\n        },\r\n        {\r\n            \"id\": 3,\r\n            \"name\": \"LG\",\r\n            \"price\": 12.4,\r\n            \"product_service_id\": \"47786b78-3190-4c55-9399-2e8937ca1e7a\",\r\n            \"categories\": [\r\n                {\r\n                    \"id\": 1,\r\n                    \"name\": \"phone\"\r\n                },\r\n                {\r\n                    \"id\": 1,\r\n                    \"name\": \"phone\"\r\n                }\r\n            ],\r\n            \"providers\": [\r\n                {\r\n                    \"id\": 1,\r\n                    \"name\": \"lg\",\r\n                    \"modify_time\": \"2022-12-04 / 09:40:45\"\r\n                },\r\n                {\r\n                    \"id\": 1,\r\n                    \"name\": \"lg\",\r\n                    \"modify_time\": \"2022-12-04 / 09:40:45\"\r\n                }\r\n            ],\r\n            \"product_images\": [\r\n                {\r\n                    \"id\": 3,\r\n                    \"name\": \"apple\",\r\n                    \"path\": \"C:/Users/User/Desktop/ym/apple.jpg\",\r\n                    \"des\": \"apple picture\",\r\n                    \"url\": \"http://localhost:8080/productimage/show/apple.jpg\",\r\n                    \"modify_time\": \"2022-12-04 / 09:40:45\"\r\n                }\r\n            ],\r\n            \"comments\": [\r\n                {\r\n                    \"id\": 3,\r\n                    \"comment\": \"good samsung\"\r\n                }\r\n            ],\r\n            \"modify_time\": \"2022-12-04 / 09:40:45\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"5487cdfc-3f73-48e0-9650-8d67babec5e5"},{"name":"get comment by id (user-application)","id":"0747771c-0fee-4bdd-8a96-a9c171dc7457","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:7074/usercomment/{product id}","description":"<p>this api will bring the comment of product by the id</p>\n","urlObject":{"protocol":"http","port":"7074","path":["usercomment","{product id}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"84824e38-9173-4df1-a411-e27808d2f78d","name":"get comment by id","originalRequest":{"method":"GET","header":[],"url":"http://localhost:7074/usercomment/1"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n    \"status\": 200,\r\n    \"response\": [\r\n        {\r\n            \"id\": 1,\r\n            \"comment\": \"good apple\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"0747771c-0fee-4bdd-8a96-a9c171dc7457"},{"name":"get cart item (user-application)","id":"d0cc7628-1326-48ec-b878-40e0ebc830ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJqYXZhbWFpbC5jb20iLCJhdXRob3JpdGllcyI6W3siYXV0aG9yaXR5IjoiY2FuUmVhZFVzZXIifSx7ImF1dGhvcml0eSI6IlJPTEVfVVNFUiJ9XSwiaWF0IjoxNjk1NjI5OTU1LCJleHAiOjE2OTY3OTcwMDB9.0WBBIunqW6EC4UBZic4hT36pNDcwgDUqbrTgNcwFWeh3HPGa81Z_Z-HObroMv4479fubsZr2FUN5s3nwIVwAug","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"http://localhost:7074/cartitem","description":"<p>this api will how the products that are currently in the user cart</p>\n","urlObject":{"protocol":"http","port":"7074","path":["cartitem"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"e48343d5-5e49-4848-b11d-366c4c211bc5","name":"get cart item (user-application)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJqYXZhbWFpbC5jb20iLCJhdXRob3JpdGllcyI6W3siYXV0aG9yaXR5IjoiY2FuUmVhZFVzZXIifSx7ImF1dGhvcml0eSI6IlJPTEVfVVNFUiJ9XSwiaWF0IjoxNjU5NTE4ODM0LCJleHAiOjE2NjA3MTk2MDB9.VItM9oddWBwkrX_vgOVFvrYB3dQpxhDSVJ8Q50LSbtEZELEb5fT5bVqwRb_ZqzCfk6PAOTShnLpQ-45bRX_ZLg","type":"text"}],"url":"http://localhost:7074/cartitem"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":" \"status\": 200,\r\n    \"response\": [\r\n        {\r\n            \"id\": 1,\r\n            \"product\": \"5d778140-8140-4e85-9ce0-076a91f8ba93\",\r\n            \"user_sell_info\": {\r\n                \"id\": 1,\r\n                \"account_name\": \"java\",\r\n                \"mail\": \"javamail.com\",\r\n                \"modify_time\": \"2022-12-04 / 09:49:27\"\r\n            },\r\n            \"quentity\": 1,\r\n            \"modify_time\": \"2022-12-04 / 13:14:26\",\r\n            \"ordered\": false,\r\n            \"cart_item_num\": 5,\r\n            \"order_num\": 0\r\n        }\r\n    ]\r\n}"}],"_postman_id":"d0cc7628-1326-48ec-b878-40e0ebc830ae"},{"name":"post cart item (user-application)","id":"dd0789b9-6262-4ee0-9edc-6c6b1d0a2dcd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJqYXZhbWFpbC5jb20iLCJhdXRob3JpdGllcyI6W3siYXV0aG9yaXR5IjoiY2FuUmVhZFVzZXIifSx7ImF1dGhvcml0eSI6IlJPTEVfVVNFUiJ9XSwiaWF0IjoxNjU5NTIxOTQxLCJleHAiOjE2NjA3MTk2MDB9.Oq9wxd-1JCAY4UO5rP3fd9gSreUBhyUri_T4aBUAm6lyscszyDLWfh7GLfmMoybhr-Bpc65dUT6QvGKQblINSA","type":"default"}],"url":"http://localhost:7074/cartitem/{productUuid}","description":"<p>when user see products and wants to add it to yje cart this api can do this</p>\n","urlObject":{"protocol":"http","port":"7074","path":["cartitem","{productUuid}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"59d62b16-42f0-4f75-ae9f-d6ad10c8790c","name":"post cart item","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJqYXZhbWFpbC5jb20iLCJhdXRob3JpdGllcyI6W3siYXV0aG9yaXR5IjoiY2FuUmVhZFVzZXIifSx7ImF1dGhvcml0eSI6IlJPTEVfVVNFUiJ9XSwiaWF0IjoxNjU5NTIxOTQxLCJleHAiOjE2NjA3MTk2MDB9.Oq9wxd-1JCAY4UO5rP3fd9gSreUBhyUri_T4aBUAm6lyscszyDLWfh7GLfmMoybhr-Bpc65dUT6QvGKQblINSA","type":"default"}],"url":"http://localhost:7074/cartitem/{productUuid}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"status\": 200,\r\n    \"response\": \"product has been added to the cart\"\r\n}"}],"_postman_id":"dd0789b9-6262-4ee0-9edc-6c6b1d0a2dcd"},{"name":"delete cart item (user-application)","id":"185bf67a-4ba2-40fb-a3a6-bcf73db72708","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJqYXZhbWFpbC5jb20iLCJhdXRob3JpdGllcyI6W3siYXV0aG9yaXR5IjoiY2FuUmVhZFVzZXIifSx7ImF1dGhvcml0eSI6IlJPTEVfVVNFUiJ9XSwiaWF0IjoxNjQzMzE5NDkwLCJleHAiOjE2NDQ1MjUwMDB9.3eEKuoscrggQ9P_hK8qX9dN8SKH_haztVms2-3OtKfkJlqPYp3mxXvzN9-QAd9oMxb1jR7PyITXWoGNCHuKcxA","type":"text"}],"url":"http://localhost:7074/cartitem/delete/{product Uuid}","description":"<p>this api will remove a product from the user cart</p>\n","urlObject":{"protocol":"http","port":"7074","path":["cartitem","delete","{product Uuid}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"b47a02b4-5d96-42df-936f-a61b69b65e60","name":"delete cart item","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJqYXZhbWFpbC5jb20iLCJhdXRob3JpdGllcyI6W3siYXV0aG9yaXR5IjoiY2FuUmVhZFVzZXIifSx7ImF1dGhvcml0eSI6IlJPTEVfVVNFUiJ9XSwiaWF0IjoxNjQzMzE5NDkwLCJleHAiOjE2NDQ1MjUwMDB9.3eEKuoscrggQ9P_hK8qX9dN8SKH_haztVms2-3OtKfkJlqPYp3mxXvzN9-QAd9oMxb1jR7PyITXWoGNCHuKcxA","type":"text"}],"url":"http://localhost:7074/cartitem/delete/{productUuuid}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"status\": 200,\r\n    \"response\": \"cart has been updated\"\r\n}"}],"_postman_id":"185bf67a-4ba2-40fb-a3a6-bcf73db72708"},{"name":"get provider (user application)","id":"479c36d2-8343-4a79-b549-f1032d181f25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:7074/userprovider/lg","description":"<p>this api will bring the product base on the provider from product-application to user-application</p>\n","urlObject":{"protocol":"http","port":"7074","path":["userprovider","lg"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"bbfcac8a-a287-4e34-b333-8882c11f73a3","name":"get provider (user application)","originalRequest":{"method":"GET","header":[],"url":"http://localhost:7074/userprovider/lg"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"response\": [\n        {\n            \"id\": 1,\n            \"name\": \"apple\",\n            \"price\": 12.7,\n            \"product_service_id\": \"f91c3a00-b5da-4457-93fd-96462c7008c8\",\n            \"categories\": [\n                {\n                    \"id\": 1,\n                    \"name\": \"phone\"\n                }\n            ],\n            \"providers\": [\n                {\n                    \"id\": 1,\n                    \"name\": \"lg\",\n                    \"modify_time\": \"2022-12-04 / 11:34:58\"\n                }\n            ],\n            \"product_images\": [\n                {\n                    \"id\": 1,\n                    \"name\": \"apple\",\n                    \"path\": \"C:/Users/User/Desktop/ym/apple.jpg\",\n                    \"des\": \"apple picture\",\n                    \"url\": \"http://localhost:8080/productimage/show/apple.jpg\",\n                    \"modify_time\": \"2022-12-04 / 11:34:58\"\n                }\n            ],\n            \"comments\": [\n                {\n                    \"id\": 1,\n                    \"comment\": \"good apple\"\n                }\n            ],\n            \"modify_time\": \"2022-12-04 / 11:34:58\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"LG\",\n            \"price\": 12.4,\n            \"product_service_id\": \"7115b6b1-7160-4641-b68a-fb35ecd7e8ee\",\n            \"categories\": [\n                {\n                    \"id\": 1,\n                    \"name\": \"phone\"\n                },\n                {\n                    \"id\": 1,\n                    \"name\": \"phone\"\n                }\n            ],\n            \"providers\": [\n                {\n                    \"id\": 1,\n                    \"name\": \"lg\",\n                    \"modify_time\": \"2022-12-04 / 11:34:58\"\n                },\n                {\n                    \"id\": 1,\n                    \"name\": \"lg\",\n                    \"modify_time\": \"2022-12-04 / 11:34:58\"\n                }\n            ],\n            \"product_images\": [\n                {\n                    \"id\": 3,\n                    \"name\": \"apple\",\n                    \"path\": \"C:/Users/User/Desktop/ym/apple.jpg\",\n                    \"des\": \"apple picture\",\n                    \"url\": \"http://localhost:8080/productimage/show/apple.jpg\",\n                    \"modify_time\": \"2022-12-04 / 11:34:58\"\n                }\n            ],\n            \"comments\": [\n                {\n                    \"id\": 3,\n                    \"comment\": \"good samsung\"\n                }\n            ],\n            \"modify_time\": \"2022-12-04 / 11:34:58\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"LG\",\n            \"price\": 12.4,\n            \"product_service_id\": \"7115b6b1-7160-4641-b68a-fb35ecd7e8ee\",\n            \"categories\": [\n                {\n                    \"id\": 1,\n                    \"name\": \"phone\"\n                },\n                {\n                    \"id\": 1,\n                    \"name\": \"phone\"\n                }\n            ],\n            \"providers\": [\n                {\n                    \"id\": 1,\n                    \"name\": \"lg\",\n                    \"modify_time\": \"2022-12-04 / 11:34:58\"\n                },\n                {\n                    \"id\": 1,\n                    \"name\": \"lg\",\n                    \"modify_time\": \"2022-12-04 / 11:34:58\"\n                }\n            ],\n            \"product_images\": [\n                {\n                    \"id\": 3,\n                    \"name\": \"apple\",\n                    \"path\": \"C:/Users/User/Desktop/ym/apple.jpg\",\n                    \"des\": \"apple picture\",\n                    \"url\": \"http://localhost:8080/productimage/show/apple.jpg\",\n                    \"modify_time\": \"2022-12-04 / 11:34:58\"\n                }\n            ],\n            \"comments\": [\n                {\n                    \"id\": 3,\n                    \"comment\": \"good samsung\"\n                }\n            ],\n            \"modify_time\": \"2022-12-04 / 11:34:58\"\n        }\n    ]\n}"}],"_postman_id":"479c36d2-8343-4a79-b549-f1032d181f25"},{"name":"verfiy account (userapplication)","id":"ab065146-0ce2-4919-bbf5-f7ae24e7745f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"localhost:7074/user/verify?email={email address}&verificationCode=YV9b","urlObject":{"port":"7074","path":["user","verify"],"host":["localhost"],"query":[{"key":"email","value":"{email address}"},{"key":"verificationCode","value":"YV9b"}],"variable":[]}},"response":[{"id":"050df891-ad41-42ba-b1d0-e76d815d4bb3","name":"verfiy account","originalRequest":{"method":"POST","header":[],"url":{"raw":"localhost:7074/user/verify?email=springbootstudent@outlook.com&verificationCode=YV9b","host":["localhost"],"port":"7074","path":["user","verify"],"query":[{"key":"email","value":"springbootstudent@outlook.com"},{"key":"verificationCode","value":"YV9b"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"response\": \"your account has been verify\"\n}"}],"_postman_id":"ab065146-0ce2-4919-bbf5-f7ae24e7745f"},{"name":"get user order (user-application)","id":"6e63e93f-509e-4552-9ff6-344a2bf3921a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJqYXZhbWFpbC5jb20iLCJhdXRob3JpdGllcyI6W3siYXV0aG9yaXR5IjoiY2FuUmVhZFVzZXIifSx7ImF1dGhvcml0eSI6IlJPTEVfVVNFUiJ9XSwiaWF0IjoxNjU5NTIxOTQxLCJleHAiOjE2NjA3MTk2MDB9.Oq9wxd-1JCAY4UO5rP3fd9gSreUBhyUri_T4aBUAm6lyscszyDLWfh7GLfmMoybhr-Bpc65dUT6QvGKQblINSA","type":"text"}],"url":"http://localhost:7074/userorder","description":"<p>this api will show the user orders</p>\n","urlObject":{"protocol":"http","port":"7074","path":["userorder"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"0965f309-85cb-4969-863f-3380c10361d0","name":"get user order","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJqYXZhbWFpbC5jb20iLCJhdXRob3JpdGllcyI6W3siYXV0aG9yaXR5IjoiY2FuUmVhZFVzZXIifSx7ImF1dGhvcml0eSI6IlJPTEVfVVNFUiJ9XSwiaWF0IjoxNjU5NTIxOTQxLCJleHAiOjE2NjA3MTk2MDB9.Oq9wxd-1JCAY4UO5rP3fd9gSreUBhyUri_T4aBUAm6lyscszyDLWfh7GLfmMoybhr-Bpc65dUT6QvGKQblINSA","type":"text"}],"url":"http://localhost:7074/userorder"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"status\": 200,\r\n    \"response\": [\r\n        {\r\n            \"id\": 1,\r\n            \"user_info\": \"javamail.com\",\r\n            \"cart_item\": [\r\n                {\r\n                    \"id\": 2,\r\n                    \"product\": \"f91c3a00-b5da-4457-93fd-96462c7008c8\",\r\n                    \"user_sell_info\": {\r\n                        \"id\": 1,\r\n                        \"account_name\": \"java\",\r\n                        \"mail\": \"javamail.com\",\r\n                        \"modify_time\": \"2022-12-04 / 11:41:26\"\r\n                    },\r\n                    \"quentity\": 1,\r\n                    \"modify_time\": \"2022-12-04 / 11:53:49\",\r\n                    \"ordered\": true,\r\n                    \"order_num\": 24,\r\n                    \"cart_item_num\": 78\r\n                }\r\n            ],\r\n            \"user_sell_info\": {\r\n                \"id\": 1,\r\n                \"account_name\": \"java\",\r\n                \"mail\": \"javamail.com\",\r\n                \"modify_time\": \"2022-12-04 / 11:41:26\"\r\n            },\r\n            \"total_price\": 12.7,\r\n            \"delivery_type\": \"NORMAL\",\r\n            \"order_status\": \"PROCESSING\",\r\n            \"modify_time\": \"2022-12-04 / 12:08:36\",\r\n            \"order_num\": 24,\r\n            \"address_uuid\": \"ef1ed378-a669-4291-8fbe-3ec092d64102\",\r\n            \"bank_transaction_uuid\": \"ef1ed378-a669-4291-8fbe-3ec092d64102\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"6e63e93f-509e-4552-9ff6-344a2bf3921a"},{"name":"post user order (user-application)","id":"3eaf4779-d8a4-40e6-9d0f-a501fe3bcd74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJqYXZhbWFpbC5jb20iLCJhdXRob3JpdGllcyI6W3siYXV0aG9yaXR5IjoiY2FuUmVhZFVzZXIifSx7ImF1dGhvcml0eSI6IlJPTEVfVVNFUiJ9XSwiaWF0IjoxNjcwMTgzMjM0LCJleHAiOjE2NzEzNTA0MDB9._UAW2uwQK2n01dzaPpRdNIQCEHbptPwK6lyUA5PNcDtlhrrDEsmFnzWWAfiEUfDQhaLzARNLZJZLo_rNk9wmbg","type":"text"}],"url":"http://localhost:7074/userorder?bankTransactionUuid=ef1ed378-a669-4291-8fbe-3ec092d64102&addressUuid=ef1ed378-a669-4291-8fbe-3ec092d64102","description":"<p>this api will submit the new order for the user. you should know that you need first to show the user address to user to choose the shiping address and than call the charge api which gives you the transaction id.after all that insert the these datas as parameters for this api</p>\n","urlObject":{"protocol":"http","port":"7074","path":["userorder"],"host":["localhost"],"query":[{"key":"bankTransactionUuid","value":"ef1ed378-a669-4291-8fbe-3ec092d64102"},{"key":"addressUuid","value":"ef1ed378-a669-4291-8fbe-3ec092d64102"}],"variable":[]}},"response":[{"id":"2bee3b5e-9330-426b-8e22-b018c4dcf13d","name":"post user order (user-application)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJqYXZhbWFpbC5jb20iLCJhdXRob3JpdGllcyI6W3siYXV0aG9yaXR5IjoiY2FuUmVhZFVzZXIifSx7ImF1dGhvcml0eSI6IlJPTEVfVVNFUiJ9XSwiaWF0IjoxNjU5NTIxOTQxLCJleHAiOjE2NjA3MTk2MDB9.Oq9wxd-1JCAY4UO5rP3fd9gSreUBhyUri_T4aBUAm6lyscszyDLWfh7GLfmMoybhr-Bpc65dUT6QvGKQblINSA","type":"text"}],"url":{"raw":"http://localhost:7074/userorder?bankTransactionUuid=ef1ed378-a669-4291-8fbe-3ec092d64102&addressUuid=ef1ed378-a669-4291-8fbe-3ec092d64102","protocol":"http","host":["localhost"],"port":"7074","path":["userorder"],"query":[{"key":"bankTransactionUuid","value":"ef1ed378-a669-4291-8fbe-3ec092d64102"},{"key":"addressUuid","value":"ef1ed378-a669-4291-8fbe-3ec092d64102"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"status\": 200,\r\n    \"response\": \"order has been placed\"\r\n}"}],"_postman_id":"3eaf4779-d8a4-40e6-9d0f-a501fe3bcd74"},{"name":"forget password (userapplication)","id":"87e59a9c-2dae-458a-9e0b-5b85f52af784","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:7074/user/forgetpassword/{email address}","urlObject":{"protocol":"http","port":"7074","path":["user","forgetpassword","{email address}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"91c8c0f6-c0b9-4aad-b5e7-f364ff6ea6b3","name":"forget password","originalRequest":{"method":"GET","header":[],"url":"http://localhost:7074/user/forgetpassword/{email address}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"response\": \"please check your email\"\n}"}],"_postman_id":"87e59a9c-2dae-458a-9e0b-5b85f52af784"},{"name":"password recover (user-application)","id":"836c042b-d445-4b9d-a2ac-0c4b636354f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:7074/user/revocerpass?mail={email address}&pass={password}&verfiy={verfication code}","urlObject":{"protocol":"http","port":"7074","path":["user","revocerpass"],"host":["localhost"],"query":[{"key":"mail","value":"{email address}"},{"key":"pass","value":"{password}"},{"key":"verfiy","value":"{verfication code}"}],"variable":[]}},"response":[{"id":"8729c3f1-5bbc-496b-a465-2af8760e2040","name":"password recover (user-application)","originalRequest":{"method":"GET","header":[],"url":""},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"836c042b-d445-4b9d-a2ac-0c4b636354f8"},{"name":"user address add (user-application)","id":"913fa874-e1b1-4bd8-96de-b20baad9951d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJqYXZhbWFpbC5jb20iLCJhdXRob3JpdGllcyI6W3siYXV0aG9yaXR5IjoiY2FuUmVhZFVzZXIifSx7ImF1dGhvcml0eSI6IlJPTEVfVVNFUiJ9XSwiaWF0IjoxNjU5NTI0OTA1LCJleHAiOjE2NjA3MTk2MDB9.TA7JhOiD5Uogq-ZhcTv9y-YDHJqtswa0W4ZTOZ5Cw6Of_cIqqdNZqyCeIAb26tPJp-8fzoQ_lFUHI7Yau9_L2w","type":"default"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"http://localhost:7074/useraddress","description":"<p>with this api you will app the user address</p>\n","urlObject":{"protocol":"http","port":"7074","path":["useraddress"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"ae1c8d91-842e-4ecc-ba8d-f34df8877de7","name":"user address add","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJqYXZhbWFpbC5jb20iLCJhdXRob3JpdGllcyI6W3siYXV0aG9yaXR5IjoiY2FuUmVhZFVzZXIifSx7ImF1dGhvcml0eSI6IlJPTEVfVVNFUiJ9XSwiaWF0IjoxNjU5NTI0OTA1LCJleHAiOjE2NjA3MTk2MDB9.TA7JhOiD5Uogq-ZhcTv9y-YDHJqtswa0W4ZTOZ5Cw6Of_cIqqdNZqyCeIAb26tPJp-8fzoQ_lFUHI7Yau9_L2w","type":"default"}],"body":{"mode":"raw","raw":"{\r\n    \"state\":\"tehran\",\r\n    \"city\":\"tehran\",\r\n\"postcode\":\"1234\",\r\n        \"address\":\"4th street\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:7074/useraddress"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"status\": 200,\r\n    \"response\": \"address has benn added\"\r\n}"}],"_postman_id":"913fa874-e1b1-4bd8-96de-b20baad9951d"},{"name":"get user sellinfo (user-application)","id":"c2faee04-99ea-4a3a-83a6-296bad0af5d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJqYXZhbWFpbC5jb20iLCJhdXRob3JpdGllcyI6W3siYXV0aG9yaXR5IjoiY2FuUmVhZFVzZXIifSx7ImF1dGhvcml0eSI6IlJPTEVfVVNFUiJ9XSwiaWF0IjoxNjU5NTI0OTA1LCJleHAiOjE2NjA3MTk2MDB9.TA7JhOiD5Uogq-ZhcTv9y-YDHJqtswa0W4ZTOZ5Cw6Of_cIqqdNZqyCeIAb26tPJp-8fzoQ_lFUHI7Yau9_L2w","type":"default"}],"url":"http://localhost:7074/userinfoshow/usersellinfo","description":"<p>this api with show the user basic info</p>\n","urlObject":{"protocol":"http","port":"7074","path":["userinfoshow","usersellinfo"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"9e9aeeab-532c-4cfa-98ca-c52724bd6343","name":"get user sellinfo","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJqYXZhbWFpbC5jb20iLCJhdXRob3JpdGllcyI6W3siYXV0aG9yaXR5IjoiY2FuUmVhZFVzZXIifSx7ImF1dGhvcml0eSI6IlJPTEVfVVNFUiJ9XSwiaWF0IjoxNjU5NTI0OTA1LCJleHAiOjE2NjA3MTk2MDB9.TA7JhOiD5Uogq-ZhcTv9y-YDHJqtswa0W4ZTOZ5Cw6Of_cIqqdNZqyCeIAb26tPJp-8fzoQ_lFUHI7Yau9_L2w","type":"default"}],"url":"http://localhost:7074/userinfoshow/usersellinfo"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"status\": 200,\r\n    \"response\": {\r\n        \"id\": 1,\r\n        \"account_name\": \"java\",\r\n        \"mail\": \"javamail.com\",\r\n        \"modify_time\": \"2022-12-04 / 11:41:26\"\r\n    }\r\n}"}],"_postman_id":"c2faee04-99ea-4a3a-83a6-296bad0af5d8"},{"name":"get userinfo by mail(alluser info)","id":"13efe213-6e2a-4f3c-92e3-13afa0b9006e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:7074/userinfoshow/userinfo/javamail.com","description":"<p>this api will show all user data</p>\n","urlObject":{"protocol":"http","port":"7074","path":["userinfoshow","userinfo","javamail.com"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"f49188f6-30f9-4634-8dc1-a9fdfde3b223","name":"get userinfo by mail(alluser info)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJqYXZhbWFpbC5jb20iLCJhdXRob3JpdGllcyI6W3siYXV0aG9yaXR5IjoiY2FuUmVhZFVzZXIifSx7ImF1dGhvcml0eSI6IlJPTEVfVVNFUiJ9XSwiaWF0IjoxNjYwMDY1MDM1LCJleHAiOjE2NjEyMzgwMDB9.J6fF_gWy8rno5l71L2yoCYrGqsLRk3AD4UocL3SLMVCrNfapwU5t_fzbMbT5ZjJUKnOuykPTPnkNlmkyznMk2w","type":"default","disabled":true}],"url":"http://localhost:7074/userinfoshow/userinfo/javamail.com"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"status\": 200,\r\n    \"response\": {\r\n        \"id\": 1,\r\n        \"account_name\": \"javamail.com\",\r\n        \"mail\": \"javamail.com\",\r\n        \"password\": \"jo\",\r\n        \"enabled\": true,\r\n        \"user_to_roles\": [\r\n            {\r\n                \"id\": 1\r\n            }\r\n        ],\r\n        \"modify_time\": \"2022-12-04 / 11:41:26\",\r\n        \"user_id\": \"546f9bf9-7f6f-4608-8c2f-c44992ecbde4\",\r\n        \"credentials_non_expired\": true,\r\n        \"account_non_expired\": true,\r\n        \"account_non_locked\": true\r\n    }\r\n}"}],"_postman_id":"13efe213-6e2a-4f3c-92e3-13afa0b9006e"},{"name":"get calculate user total items on in cart","id":"effb4a7c-ae92-4cea-8964-eee70b3a2fdf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJqYXZhbWFpbC5jb20iLCJhdXRob3JpdGllcyI6W3siYXV0aG9yaXR5IjoiY2FuUmVhZFVzZXIifSx7ImF1dGhvcml0eSI6IlJPTEVfVVNFUiJ9XSwiaWF0IjoxNjU3ODk1NzE1LCJleHAiOjE2NTkwNzgwMDB9.jb4S4xVmtLCpeYLZl8H0332Ou8lqN1xYhf8S-sMXnQFYUFQosqH7bYaHjanj1L8l4SyejKXSItEZVMbdF8B7Ww","type":"default"}],"body":{"mode":"formdata","formdata":[{"key":"","value":"","type":"default","disabled":true},{"key":"","value":"","type":"default","disabled":true}]},"url":"http://localhost:7074/cartitem/calculateTotalUserCartItem","description":"<p>this api will show the total price of the user cart</p>\n","urlObject":{"protocol":"http","port":"7074","path":["cartitem","calculateTotalUserCartItem"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"1eeee613-eb13-4667-a8d9-dcbfa6f56a61","name":"get calculate user total items on in cart","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJqYXZhbWFpbC5jb20iLCJhdXRob3JpdGllcyI6W3siYXV0aG9yaXR5IjoiY2FuUmVhZFVzZXIifSx7ImF1dGhvcml0eSI6IlJPTEVfVVNFUiJ9XSwiaWF0IjoxNjU3ODk1NzE1LCJleHAiOjE2NTkwNzgwMDB9.jb4S4xVmtLCpeYLZl8H0332Ou8lqN1xYhf8S-sMXnQFYUFQosqH7bYaHjanj1L8l4SyejKXSItEZVMbdF8B7Ww","type":"default"}],"url":"http://localhost:7074/cartitem/calculateTotalUserCartItem"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"status\": 200,\r\n    \"response\": 129.0\r\n}"}],"_postman_id":"effb4a7c-ae92-4cea-8964-eee70b3a2fdf"},{"name":"get useruuid(user-application)","id":"385e302c-5088-4851-86dc-a8dd01cbc8d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJqYXZhbWFpbC5jb20iLCJhdXRob3JpdGllcyI6W3siYXV0aG9yaXR5IjoiY2FuUmVhZFVzZXIifSx7ImF1dGhvcml0eSI6IlJPTEVfVVNFUiJ9XSwiaWF0IjoxNjU3ODk1NzE1LCJleHAiOjE2NTkwNzgwMDB9.jb4S4xVmtLCpeYLZl8H0332Ou8lqN1xYhf8S-sMXnQFYUFQosqH7bYaHjanj1L8l4SyejKXSItEZVMbdF8B7Ww","type":"default"}],"url":"localhost:7074/userinfoshow/useruuid","description":"<p>this api will show the user uuid</p>\n","urlObject":{"port":"7074","path":["userinfoshow","useruuid"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"5b8d15e1-0542-4ac7-aaad-58fdd7169d43","name":"useruuid","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJqYXZhbWFpbC5jb20iLCJhdXRob3JpdGllcyI6W3siYXV0aG9yaXR5IjoiY2FuUmVhZFVzZXIifSx7ImF1dGhvcml0eSI6IlJPTEVfVVNFUiJ9XSwiaWF0IjoxNjU3ODk1NzE1LCJleHAiOjE2NTkwNzgwMDB9.jb4S4xVmtLCpeYLZl8H0332Ou8lqN1xYhf8S-sMXnQFYUFQosqH7bYaHjanj1L8l4SyejKXSItEZVMbdF8B7Ww","type":"default"}],"url":"localhost:7074/userinfoshow/useruuid"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"4301529b-74af-486c-84df-24ca0468c88b"}],"_postman_id":"385e302c-5088-4851-86dc-a8dd01cbc8d3"},{"name":"generate user token (user-application)","id":"c4ce6a75-a035-47a8-8cc5-3b9851f863c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"localhost:7074/token/usertoken?username={email address}&password={password}","description":"<p>this is the custom api for generating the user acces token</p>\n","urlObject":{"port":"7074","path":["token","usertoken"],"host":["localhost"],"query":[{"key":"username","value":"{email address}"},{"key":"password","value":"{password}"}],"variable":[]}},"response":[{"id":"d2f35069-7d53-4200-b016-7cb8963fbba7","name":"generate user token","originalRequest":{"method":"POST","header":[],"url":{"raw":"localhost:7074/token/usertoken?username=springbootstudent@outlook.com&password=jm","host":["localhost"],"port":"7074","path":["token","usertoken"],"query":[{"key":"username","value":"springbootstudent@outlook.com"},{"key":"password","value":"jm"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"response\": {\n        \"headers\": {},\n        \"body\": {\n            \"token\": \"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJqYXZhbWFpbC5jb20iLCJhdXRob3JpdGllcyI6W3siYXV0aG9yaXR5IjoiY2FuUmVhZFVzZXIifSx7ImF1dGhvcml0eSI6IlJPTEVfVVNFUiJ9XSwiaWF0IjoxNjcwMTg4NDcxLCJleHAiOjE2NzEzNTA0MDB9.QEgvfnSqTwPWdInPLUPrf4Un_BanB-nCxXLY6sMv3r68P066po_UqWhroX8gOCpm5DaMEHty2mMtH7QETqYz7A\"\n        },\n        \"status_code\": \"OK\",\n        \"status_code_value\": 200\n    }\n}"}],"_postman_id":"c4ce6a75-a035-47a8-8cc5-3b9851f863c2"},{"name":"get User Address (user-application)","id":"acd053fe-7e50-4c4e-ab59-bd0a01a2dd0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJqYXZhbWFpbC5jb20iLCJhdXRob3JpdGllcyI6W3siYXV0aG9yaXR5IjoiY2FuUmVhZFVzZXIifSx7ImF1dGhvcml0eSI6IlJPTEVfVVNFUiJ9XSwiaWF0IjoxNjU5NTI0OTA1LCJleHAiOjE2NjA3MTk2MDB9.TA7JhOiD5Uogq-ZhcTv9y-YDHJqtswa0W4ZTOZ5Cw6Of_cIqqdNZqyCeIAb26tPJp-8fzoQ_lFUHI7Yau9_L2w","type":"default"}],"url":"localhost:7074/useraddress","description":"<p>this api will show user adresses</p>\n","urlObject":{"port":"7074","path":["useraddress"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"fb5a8cc0-a5bf-4887-a6d6-805c1b18d824","name":"(user","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJqYXZhbWFpbC5jb20iLCJhdXRob3JpdGllcyI6W3siYXV0aG9yaXR5IjoiY2FuUmVhZFVzZXIifSx7ImF1dGhvcml0eSI6IlJPTEVfVVNFUiJ9XSwiaWF0IjoxNjU5NTI0OTA1LCJleHAiOjE2NjA3MTk2MDB9.TA7JhOiD5Uogq-ZhcTv9y-YDHJqtswa0W4ZTOZ5Cw6Of_cIqqdNZqyCeIAb26tPJp-8fzoQ_lFUHI7Yau9_L2w","type":"default"}],"url":"localhost:7074/useraddress"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"response\": [\n        {\n            \"id\": 1,\n            \"city\": \"tehran\",\n            \"address\": \"4th strret\",\n            \"postcode\": 1234,\n            \"modify_time\": \"2022-12-04 / 11:56:51\",\n            \"user_uuid\": \"546f9bf9-7f6f-4608-8c2f-c44992ecbde4\",\n            \"address_uuid\": \"ef1ed378-a669-4291-8fbe-3ec092d64102\",\n            \"state\": \"tehran\"\n        }\n    ]\n}"}],"_postman_id":"acd053fe-7e50-4c4e-ab59-bd0a01a2dd0b"},{"name":"user show image (user-application)","id":"68131890-dcf0-4234-ab76-5ba59958b035","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"name","value":"{picturename.format of picture}","type":"default"}]},"url":"http://localhost:7074/userporudctimage","description":"<p>with this api you can get the product pictures by sending the name of the file</p>\n","urlObject":{"protocol":"http","port":"7074","path":["userporudctimage"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"68131890-dcf0-4234-ab76-5ba59958b035"},{"name":"product rate post (user application)","id":"28161bd1-953d-4bf8-ac32-e63e6cce0315","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"http://localhost:7074/userproduct/rate? productUuid=ef1ed378-a669-4291-8fbe-3ec092d64102&rate=3232","description":"<p>with this api you can post the product rate</p>\n","urlObject":{"protocol":"http","port":"7074","path":["userproduct","rate"],"host":["localhost"],"query":[{"key":" productUuid","value":"ef1ed378-a669-4291-8fbe-3ec092d64102"},{"key":"rate","value":"3232"}],"variable":[]}},"response":[{"id":"075e40d6-1bf6-4335-b479-82bfa3c9e13a","name":"product rate post","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:7074/userproduct/rate?productId=ef1ed378-a669-4291-8fbe-3ec092d64102&rate=3232","protocol":"http","host":["localhost"],"port":"7074","path":["userproduct","rate"],"query":[{"key":"productId","value":"ef1ed378-a669-4291-8fbe-3ec092d64102"},{"key":"rate","value":"3232"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"response\": \"your rate hsd benn submitted\"\n}"}],"_postman_id":"28161bd1-953d-4bf8-ac32-e63e6cce0315"},{"name":"get single product price (user-application)","id":"66152521-3921-43d8-a81e-5bf1663b7d23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:7074/cartitem/getproductprice?uuid=061affb1-de11-493b-93b2-562b768fad3e&quantity=2","description":"<p>with this api you can get the single product price</p>\n","urlObject":{"protocol":"http","port":"7074","path":["cartitem","getproductprice"],"host":["localhost"],"query":[{"key":"uuid","value":"061affb1-de11-493b-93b2-562b768fad3e"},{"key":"quantity","value":"2"}],"variable":[]}},"response":[{"id":"0db287f4-8c72-47ff-bf62-ea564310f531","name":"get single product price","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:7074/cartitem/getproductprice?uuid=061affb1-de11-493b-93b2-562b768fad3e&quantity=2","protocol":"http","host":["localhost"],"port":"7074","path":["cartitem","getproductprice"],"query":[{"key":"uuid","value":"061affb1-de11-493b-93b2-562b768fad3e"},{"key":"quantity","value":"2"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"response\": 25.08\n}"}],"_postman_id":"66152521-3921-43d8-a81e-5bf1663b7d23"},{"name":"user invoice (user-application)","id":"ea9d3157-7574-4cea-9b3e-4915464bceef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:7074/userorder/downloadReceipt?orderNumber=69&mail={user email address}","description":"<p>this api will generate the pdf invocie of user order</p>\n","urlObject":{"protocol":"http","port":"7074","path":["userorder","downloadReceipt"],"host":["localhost"],"query":[{"key":"orderNumber","value":"69"},{"key":"mail","value":"{user email address}"}],"variable":[]}},"response":[],"_postman_id":"ea9d3157-7574-4cea-9b3e-4915464bceef"},{"name":"charge (payment-application)","id":"60821e7a-d391-4eca-ba5a-cb9e99f4eda6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"desc","value":"payment","type":"default"},{"key":"amount","value":"154","type":"default"},{"key":"cardNumber","value":"4242424242424242","type":"default"},{"key":"userUuid","value":"dfc3bd3c-fc2a-4f21-88ff-6380f814a498","type":"default"},{"key":"yearExp","value":"2025","type":"default"},{"key":"monthExp","value":"10","type":"default"},{"key":"ccv2","value":"123","type":"default"}]},"url":"http://localhost:1020/charge","description":"<p>this api will charge the user with the stripe payment system</p>\n","urlObject":{"protocol":"http","port":"1020","path":["charge"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"84734699-aa35-450b-beb1-01744b7150b8","name":"charge","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"desc","value":"payment","type":"default"},{"key":"amount","value":"154","type":"default"},{"key":"cardNumber","value":"4242424242424242","type":"default"},{"key":"userUuid","value":"dfc3bd3c-fc2a-4f21-88ff-6380f814a498","type":"default"},{"key":"yearExp","value":"2025","type":"default"},{"key":"monthExp","value":"10","type":"default"},{"key":"ccv2","value":"123","type":"default"}]},"url":"http://localhost:1020/charge"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"60821e7a-d391-4eca-ba5a-cb9e99f4eda6"},{"name":"post product (product-application)","id":"6451786a-064c-4b8d-a092-e227c64cf40e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{  \r\n        \"name\": \"app4leuuuuu\",\r\n    \"price\": 1244.4,\r\n   \r\n    \"categories\": [\r\n        {\r\n            \"id\": 1,\r\n            \"name\": \"phone\"\r\n        }\r\n    ],\r\n    \"providers\": [\r\n        {\r\n            \"id\": 1,\r\n            \"name\": \"lg\"\r\n        }\r\n    ],\r\n    \"productImages\": [\r\n        {\r\n            \"id\": 1,\r\n            \"name\": \"apple\",\r\n            \"path\": \"C:/Users/User/Desktop/ym/apple.jpg\",\r\n            \"des\": \"apple picture\",\r\n            \"url\": \"http://localhost:8080/productimage/show/apple.jpg\"\r\n        }\r\n    ],\r\n    \"comments\": [\r\n        {\r\n            \"id\": 1,\r\n            \"comment\": \"good apple\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/product","description":"<p>this api will create product in the product-application</p>\n","urlObject":{"protocol":"http","port":"8080","path":["product"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"54d3f8a3-1f17-4da9-bd51-1590eda215c6","name":"post product","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text","disabled":true},{"key":"","value":"","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n       \r\n        \"name\": \"app4leuuuuu\",\r\n    \"price\": 1244.4,\r\n   \r\n    \"categories\": [\r\n        {\r\n            \"id\": 1,\r\n            \"name\": \"phone\"\r\n        }\r\n    ],\r\n    \"providers\": [\r\n        {\r\n            \"id\": 1,\r\n            \"name\": \"lg\"\r\n        }\r\n    ],\r\n    \"productImages\": [\r\n        {\r\n            \"id\": 1,\r\n            \"name\": \"apple\",\r\n            \"path\": \"C:/Users/User/Desktop/ym/apple.jpg\",\r\n            \"des\": \"apple picture\",\r\n            \"url\": \"http://localhost:8080/productimage/show/apple.jpg\"\r\n        }\r\n    ],\r\n    \"comments\": [\r\n        {\r\n            \"id\": 1,\r\n            \"comment\": \"good apple\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/product"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\r\n    \"status\": 200,\r\n    \"response\": \"product has been created\"\r\n}"}],"_postman_id":"6451786a-064c-4b8d-a092-e227c64cf40e"},{"name":"post Provider (product-application)","id":"3505a054-544a-463d-9daf-47ea8c62737d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\"name\":\"test provider\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/provider","description":"<p>this api will add the provider</p>\n","urlObject":{"protocol":"http","port":"8080","path":["provider"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"4c655b47-add9-4c7a-8226-8d2e6110b58a","name":"post Provider","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJwYXNzIiwiYXV0aG9yaXRpZXMiOlt7ImF1dGhvcml0eSI6ImNvdXJzZTpyZWFkIn0seyJhdXRob3JpdHkiOiJ1c2VyOnJlYWQifSx7ImF1dGhvcml0eSI6InVzZXI6d3JpdGUifSx7ImF1dGhvcml0eSI6IlJPTEVfQURNSU4ifSx7ImF1dGhvcml0eSI6ImNvdXJzZTp3cml0ZSJ9XSwiaWF0IjoxNjI5MzQ2MzczLCJleHAiOjE2Mjk0ODc4MDB9.SbfFwjYDr2QPsKdhPSkSjGB9woMw9mQBH_h_cW_3zN-9GXC4qpUKzhqNwAJugBPXOc_dg55dCF6To9BiP4PzRw","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\"name\":\"test provider\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/provider"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3505a054-544a-463d-9daf-47ea8c62737d"},{"name":"get product (product-application)","id":"c011ac1a-360a-4e8f-adbf-c81086625dbe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/product/findbyname/{product name}","description":"<p>this api will get the product info the product name</p>\n","urlObject":{"protocol":"http","port":"8080","path":["product","findbyname","{product name}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"4bad262a-d518-43e5-af33-1eacab945079","name":"get product","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8080/product/findbyname/apple"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"name\": \"apple\",\n        \"price\": 12.7,\n        \"product_service_id\": \"f6d7d6c0-e7da-4f29-a85b-e723104ae08c\",\n        \"categories\": [\n            {\n                \"id\": 1,\n                \"name\": \"phone\"\n            }\n        ],\n        \"providers\": [\n            {\n                \"id\": 1,\n                \"name\": \"lg\",\n                \"modify_time\": \"2022-12-04 / 13:32:49\"\n            }\n        ],\n        \"product_images\": [\n            {\n                \"id\": 1,\n                \"name\": \"apple\",\n                \"path\": \"C:/Users/User/Desktop/ym/apple.jpg\",\n                \"des\": \"apple picture\",\n                \"url\": \"http://localhost:8080/productimage/show/apple.jpg\",\n                \"modify_time\": \"2022-12-04 / 13:32:49\"\n            }\n        ],\n        \"comments\": [\n            {\n                \"id\": 1,\n                \"comment\": \"good apple\"\n            }\n        ],\n        \"modify_time\": \"2022-12-04 / 13:32:49\"\n    }\n]"}],"_postman_id":"c011ac1a-360a-4e8f-adbf-c81086625dbe"},{"name":"get provider (product-application)","id":"75cbf784-5a14-405c-8b7d-3150bcb5c607","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/provider/","urlObject":{"protocol":"http","port":"8080","path":["provider",""],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"4e13d648-3807-4036-8863-4526546c4860","name":"get provider (product-application)","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8080/provider/"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"response\": [\n        {\n            \"id\": 1,\n            \"name\": \"lg\",\n            \"modify_time\": \"2022-12-04 / 13:32:49\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"samsung\",\n            \"modify_time\": \"2022-12-04 / 13:32:49\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"test provider\",\n            \"modify_time\": \"2022-12-04 / 14:18:31\"\n        }\n    ]\n}"}],"_postman_id":"75cbf784-5a14-405c-8b7d-3150bcb5c607"},{"name":"post category (product-application)","id":"0d37e322-ce49-404f-8ba7-9454176977f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":" {\r\n\r\n        \"name\": \"phxxone\"\r\n    }","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/category","description":"<p>this api will add the category to the product-application</p>\n","urlObject":{"protocol":"http","port":"8080","path":["category"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"2084cf7c-f2b6-4e00-8304-d33cacb37502","name":"post category","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhbm9ueW1vdXNVc2VyIiwiZXhwIjoxNjI0ODUxMjg0LCJpYXQiOjE2MjQ4MzMyODR9.0hhJa78rkxee-W7lHf8m8-qS5el-i4PeZ86Kd5XkSVpyZnlqypiSKqtmPyLhqAa0svhXtev2ntWd1ZFWJHLxeA","type":"text"},{"key":"","value":"","type":"text","disabled":true},{"key":"","value":"","type":"text","disabled":true}],"body":{"mode":"raw","raw":" {\r\n\r\n        \"name\": \"phxxone\"\r\n    }","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/category"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 201,\n    \"response\": \"category has been created\"\n}"}],"_postman_id":"0d37e322-ce49-404f-8ba7-9454176977f5"},{"name":"get product by id (product-application)","id":"d4841a4c-e101-48f1-a937-34a06f8d2f75","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/product/{product id}","urlObject":{"protocol":"http","port":"8080","path":["product","{product id}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"72661493-2588-4925-9749-8f0c4fcd8cc3","name":"get product by id (product-application)","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8080/product/1"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d4841a4c-e101-48f1-a937-34a06f8d2f75"},{"name":"put edit product by id (product-application)","id":"fc1a6fa0-b859-4a33-8060-0fc0aee0dc0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n       \r\n        \"name\": \"edit\",\r\n        \"price\":100\r\n \r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/product/{product id}","description":"<p>this api will edit the product by id</p>\n","urlObject":{"protocol":"http","port":"8080","path":["product","{product id}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"a6dab1e9-3479-4329-864f-2fbc43be74f0","name":"put edit product by id (product-application)","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n       \r\n        \"name\": \"edit\",\r\n        \"price\":100\r\n \r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/product/1"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\r\n    \"status\": 200,\r\n    \"response\": \"Edit has been done\"\r\n}"}],"_postman_id":"fc1a6fa0-b859-4a33-8060-0fc0aee0dc0c"},{"name":"get category by id (product-application)","id":"5cd572a1-0023-45c3-b3fc-87a393853d64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/category/{category id}","description":"<p>this api will return all the product that have a same category id</p>\n","urlObject":{"protocol":"http","port":"8080","path":["category","{category id}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"aced1854-346b-4d8b-8d98-6e6b4f46622e","name":"get category by id","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8080/category/1"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"name\": \"edit\",\n        \"price\": 100,\n        \"product_service_id\": \"f6d7d6c0-e7da-4f29-a85b-e723104ae08c\",\n        \"categories\": [\n            {\n                \"id\": 1,\n                \"name\": \"phone\"\n            }\n        ],\n        \"providers\": [\n            {\n                \"id\": 1,\n                \"name\": \"lg\",\n                \"modify_time\": \"2022-12-04 / 13:32:49\"\n            }\n        ],\n        \"product_images\": [\n            {\n                \"id\": 1,\n                \"name\": \"apple\",\n                \"path\": \"C:/Users/User/Desktop/ym/apple.jpg\",\n                \"des\": \"apple picture\",\n                \"url\": \"http://localhost:8080/productimage/show/apple.jpg\",\n                \"modify_time\": \"2022-12-04 / 13:32:49\"\n            }\n        ],\n        \"comments\": [\n            {\n                \"id\": 1,\n                \"comment\": \"good apple\"\n            }\n        ],\n        \"modify_time\": \"2022-12-04 / 13:32:49\"\n    },\n    {\n        \"id\": 3,\n        \"name\": \"LG\",\n        \"price\": 12.4,\n        \"product_service_id\": \"ef93897d-c789-4b52-8b21-30179f4ea323\",\n        \"categories\": [\n            {\n                \"id\": 1,\n                \"name\": \"phone\"\n            },\n            {\n                \"id\": 1,\n                \"name\": \"phone\"\n            }\n        ],\n        \"providers\": [\n            {\n                \"id\": 1,\n                \"name\": \"lg\",\n                \"modify_time\": \"2022-12-04 / 13:32:49\"\n            },\n            {\n                \"id\": 1,\n                \"name\": \"lg\",\n                \"modify_time\": \"2022-12-04 / 13:32:49\"\n            }\n        ],\n        \"product_images\": [\n            {\n                \"id\": 3,\n                \"name\": \"apple\",\n                \"path\": \"C:/Users/User/Desktop/ym/apple.jpg\",\n                \"des\": \"apple picture\",\n                \"url\": \"http://localhost:8080/productimage/show/apple.jpg\",\n                \"modify_time\": \"2022-12-04 / 13:32:49\"\n            }\n        ],\n        \"comments\": [\n            {\n                \"id\": 3,\n                \"comment\": \"good samsung\"\n            }\n        ],\n        \"modify_time\": \"2022-12-04 / 13:32:49\"\n    },\n    {\n        \"id\": 3,\n        \"name\": \"LG\",\n        \"price\": 12.4,\n        \"product_service_id\": \"ef93897d-c789-4b52-8b21-30179f4ea323\",\n        \"categories\": [\n            {\n                \"id\": 1,\n                \"name\": \"phone\"\n            },\n            {\n                \"id\": 1,\n                \"name\": \"phone\"\n            }\n        ],\n        \"providers\": [\n            {\n                \"id\": 1,\n                \"name\": \"lg\",\n                \"modify_time\": \"2022-12-04 / 13:32:49\"\n            },\n            {\n                \"id\": 1,\n                \"name\": \"lg\",\n                \"modify_time\": \"2022-12-04 / 13:32:49\"\n            }\n        ],\n        \"product_images\": [\n            {\n                \"id\": 3,\n                \"name\": \"apple\",\n                \"path\": \"C:/Users/User/Desktop/ym/apple.jpg\",\n                \"des\": \"apple picture\",\n                \"url\": \"http://localhost:8080/productimage/show/apple.jpg\",\n                \"modify_time\": \"2022-12-04 / 13:32:49\"\n            }\n        ],\n        \"comments\": [\n            {\n                \"id\": 3,\n                \"comment\": \"good samsung\"\n            }\n        ],\n        \"modify_time\": \"2022-12-04 / 13:32:49\"\n    },\n    {\n        \"id\": 4,\n        \"name\": \"app4leuuuuu\",\n        \"price\": 1244.4,\n        \"product_service_id\": \"3535d274-9b01-45f0-99ee-5fc54bc83cd5\",\n        \"categories\": [\n            {\n                \"id\": 1,\n                \"name\": \"phone\"\n            }\n        ],\n        \"providers\": [\n            {\n                \"id\": 1,\n                \"name\": \"lg\",\n                \"modify_time\": \"2022-12-04 / 13:32:49\"\n            }\n        ],\n        \"product_images\": [],\n        \"comments\": [],\n        \"modify_time\": \"2022-12-04 / 14:17:51\"\n    }\n]"}],"_postman_id":"5cd572a1-0023-45c3-b3fc-87a393853d64"},{"name":"post comment (product-application","id":"95d5d58e-6502-4d75-991f-d436ed411397","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"  {\r\n\r\n        \"comment\": \"test\"\r\n    }","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/comment/{product id}","description":"<p>this api can post the comment for product</p>\n","urlObject":{"protocol":"http","port":"8080","path":["comment","{product id}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"9d2ca8d0-631a-42af-b2d9-ecd72ef8cacd","name":"post comment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"  {\r\n\r\n        \"comment\": \"test\"\r\n    }","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/comment/2"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"95d5d58e-6502-4d75-991f-d436ed411397"},{"name":"get comment (product-application","id":"c9815ae7-8cf4-496b-8f2c-c22f5ee44f7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/comment/{product Id}","description":"<p>this api will get the product comments</p>\n","urlObject":{"protocol":"http","port":"8080","path":["comment","{product Id}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"0ab7c98f-12f1-446c-97a5-1a4b7c6fa1ac","name":"get comment","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8080/comment/1"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"response\": [\n        {\n            \"id\": 1,\n            \"comment\": \"good apple\"\n        }\n    ]\n}"}],"_postman_id":"c9815ae7-8cf4-496b-8f2c-c22f5ee44f7d"},{"name":"get image by id (product-application","id":"0454b3d2-a269-49a8-b7b9-3b3a627bc365","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/productimage/{productId}","description":"<p>this api will return the picture info of the product</p>\n","urlObject":{"protocol":"http","port":"8080","path":["productimage","{productId}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"43c34278-8d73-4f70-a840-5dd46678edac","name":"get image by id","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8080/productimage/1"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"0454b3d2-a269-49a8-b7b9-3b3a627bc365"},{"name":"get image by name (product-application)","id":"c0283f49-48f9-43e0-ac13-2365132dd67a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/productimage/show/{picture name}","urlObject":{"protocol":"http","port":"8080","path":["productimage","show","{picture name}"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"c0283f49-48f9-43e0-ac13-2365132dd67a"},{"name":"post image (product-application","id":"ab4caf68-d433-414c-8530-d5a03b3211d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"files","type":"file","value":null},{"key":"id","value":"1","type":"default"}]},"url":"http://localhost:8080/productimage","description":"<p>with this api you can post the picture for the product</p>\n","urlObject":{"protocol":"http","port":"8080","path":["productimage"],"host":["localhost"],"query":[{"disabled":true,"key":"","value":""},{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[{"id":"adab982c-3c53-4b8e-9a2e-8c71baa8143b","name":"post image (product-application","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"files","type":"file","src":["/C:/Users/pooya-pc/Downloads/mypic.jpg"]},{"key":"id","value":"1","type":"default"}]},"url":{"raw":"http://localhost:8080/productimage","protocol":"http","host":["localhost"],"port":"8080","path":["productimage"],"query":[{"key":"id","value":"1","disabled":true},{"key":"file","value":"","disabled":true}]}},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ab4caf68-d433-414c-8530-d5a03b3211d9"},{"name":"get proivder by name (product-application","id":"21804dfb-de65-4759-9e8a-b6e99867c316","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/provider/lg","description":"<p>this api will bring all the product that have same provider name</p>\n","urlObject":{"protocol":"http","port":"8080","path":["provider","lg"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"e8f0b9e8-2688-49af-9ade-68ef482f29b1","name":"get proivder by name","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8080/provider/lg"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"21804dfb-de65-4759-9e8a-b6e99867c316"},{"name":"get all provider (product-application","id":"7903675f-81e5-44be-b9c6-1bcbe3c1de1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/provider","description":"<p>this api will show you all providers that we have</p>\n","urlObject":{"protocol":"http","port":"8080","path":["provider"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"3a436df6-16ab-4e0a-b561-76a630316857","name":"get all provider","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8080/provider"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"7903675f-81e5-44be-b9c6-1bcbe3c1de1b"},{"name":"post provider (product-application","id":"0dc5cd4d-f20f-417f-849e-7d46b706141c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\r\n        \"name\": \"gplus\"\r\n    }","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/provider","description":"<p>with this api you can add the ptovider to the application</p>\n","urlObject":{"protocol":"http","port":"8080","path":["provider"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"d8f5d1d5-611e-4f8f-be64-7829bc60d7a7","name":"post provider","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\r\n        \"name\": \"gplus\"\r\n    }","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/provider"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"0dc5cd4d-f20f-417f-849e-7d46b706141c"},{"name":"put provider by id (product-application","id":"3cf43fd1-ebf5-4381-a693-ba03e4326773","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n\r\n        \"name\": \"apple test\"\r\n    }","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/provider/{providerId}","description":"<p>with this api you can edit nthe proivder info</p>\n","urlObject":{"protocol":"http","port":"8080","path":["provider","{providerId}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"a39047ea-9941-4b96-8b87-64418f45b244","name":"put provider by id","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n\r\n        \"name\": \"apple test\"\r\n    }","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/provider/3"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3cf43fd1-ebf5-4381-a693-ba03e4326773"},{"name":"post rate (product-application","id":"d48855c8-ab82-46eb-9bdb-b4e61fcdd58b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"http://localhost:8080/productrate/?productId=0b52c1e1-04a6-4558-b5ae-cbba05b6fd25&rate=12.0","description":"<p>with this api you can post the rate for the products</p>\n","urlObject":{"protocol":"http","port":"8080","path":["productrate",""],"host":["localhost"],"query":[{"key":"productId","value":"0b52c1e1-04a6-4558-b5ae-cbba05b6fd25"},{"key":"rate","value":"12.0"}],"variable":[]}},"response":[{"id":"2765845d-fd16-493b-9dcb-d3c28b3a84da","name":"post rate","originalRequest":{"method":"POST","header":[],"url":{"raw":"http://localhost:8080/productrate/?productId=0b52c1e1-04a6-4558-b5ae-cbba05b6fd25&rate=12.0","protocol":"http","host":["localhost"],"port":"8080","path":["productrate",""],"query":[{"key":"productId","value":"0b52c1e1-04a6-4558-b5ae-cbba05b6fd25"},{"key":"rate","value":"12.0"}]}},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d48855c8-ab82-46eb-9bdb-b4e61fcdd58b"},{"name":"get rate (product-application","id":"82a3adff-faeb-47d8-bd63-128aadc80c18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/productrate/{productUuid}","description":"<p>with this api we can see the the product rate</p>\n","urlObject":{"protocol":"http","port":"8080","path":["productrate","{productUuid}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"db830682-3b3b-4646-a46e-6f29788bb7fd","name":"get rate","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8080/productrate/ed0a1d54-08ab-47f4-9ec7-87249156df34"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"82a3adff-faeb-47d8-bd63-128aadc80c18"},{"name":"get product service id (product-application","id":"044574d1-a34a-4593-b7c9-9ef711bed1ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/product/serviceid/{productUuid}","description":"<p>this api can get products by service id</p>\n","urlObject":{"protocol":"http","port":"8080","path":["product","serviceid","{productUuid}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"ce38727f-e46b-4f25-97ef-a3fa5f52e0df","name":"get product service id","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8080/product/serviceid/8f5a0cfa-c8b0-4769-8167-8d6525be561b"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"044574d1-a34a-4593-b7c9-9ef711bed1ea"},{"name":"delete product (product-application","id":"ed83ccb7-6998-4a4a-8faa-834b6cd2b8a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/product/delete/{productUuid}","description":"<p>with this api you can delete the product</p>\n","urlObject":{"protocol":"http","port":"8080","path":["product","delete","{productUuid}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"e305615a-5c2f-4603-ad75-4f5b39061dd8","name":"delete product","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8080/product/delete/c5e7879c-ed86-4efb-86cd-afb12e131e20"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ed83ccb7-6998-4a4a-8faa-834b6cd2b8a4"},{"name":"get all product (product-application","id":"e257bd16-e541-4391-9d23-32bc6556675a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/product/","description":"<p>this api can show all peoducts in the application</p>\n","urlObject":{"protocol":"http","port":"8080","path":["product",""],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"c9d2b4e9-2d5e-43b7-ab07-d07212dabdae","name":"get all product","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8080/product/"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e257bd16-e541-4391-9d23-32bc6556675a"},{"name":"get all category (product-application","id":"5e99a7ee-0d55-4f28-9ab5-f045e190e396","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/category","description":"<p>this api can showw all categories we have</p>\n","urlObject":{"protocol":"http","port":"8080","path":["category"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"f5588bb8-9084-4c00-8cef-c8a10d4fb4fa","name":"get all category","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8080/category"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"5e99a7ee-0d55-4f28-9ab5-f045e190e396"},{"name":"same of showing image (product-application","id":"c02eb755-7b25-49ee-8fb7-f94484c9b7a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/productimage/show/{imagename}","description":"<p>this is the other api for showing the product image</p>\n","urlObject":{"protocol":"http","port":"8080","path":["productimage","show","{imagename}"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"c02eb755-7b25-49ee-8fb7-f94484c9b7a9"},{"name":"post add new user (user-application)","id":"dc1d57de-510a-4cfc-b6c3-013ff8b1888e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"accountName\":\"username\",\r\n    \"mail\":\"email#emailaddress.com\",\r\n    \"password\":\"1234\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:7074/user","urlObject":{"protocol":"http","port":"7074","path":["user"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"b2934b65-b0b6-4018-993d-bca3fe8ed7bb","name":"post add new user","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"accountName\":\"username\",\r\n    \"mail\":\"email@address.com\",\r\n    \"password\":\"1234\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:7074/user"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"response\": \"user has benn inserted please check your email\"\n}"}],"_postman_id":"dc1d57de-510a-4cfc-b6c3-013ff8b1888e"},{"name":"post add email config","id":"4e2817dc-4f48-460d-8193-d1d7fdcaba43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"http://localhost:7074/myApplicationConfig?emailAddress=email address&password=password&mailSmtpAuth=true or false&mailSmtpStarttlsEnable=true or false&mailSmtpHost=000&mailSmtpPort=000","urlObject":{"protocol":"http","port":"7074","path":["myApplicationConfig"],"host":["localhost"],"query":[{"key":"emailAddress","value":"email address"},{"key":"password","value":"password"},{"key":"mailSmtpAuth","value":"true or false"},{"key":"mailSmtpStarttlsEnable","value":"true or false"},{"key":"mailSmtpHost","value":"000"},{"key":"mailSmtpPort","value":"000"}],"variable":[]}},"response":[{"id":"71033e96-65f2-43d9-af72-55a6fe1327ea","name":"post add email config","originalRequest":{"method":"POST","header":[],"url":{"raw":"http://localhost:7074/myApplicationConfig?emailAddress=email address&password=password&mailSmtpAuth=true or false&mailSmtpStarttlsEnable=true &mailSmtpHost=777&mailSmtpPort=777","protocol":"http","host":["localhost"],"port":"7074","path":["myApplicationConfig"],"query":[{"key":"emailAddress","value":"email address"},{"key":"password","value":"password"},{"key":"mailSmtpAuth","value":"true or false"},{"key":"mailSmtpStarttlsEnable","value":"true "},{"key":"mailSmtpHost","value":"777"},{"key":"mailSmtpPort","value":"777"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"status\": 200,\r\n    \"response\": \"email config has been change\"\r\n}"}],"_postman_id":"4e2817dc-4f48-460d-8193-d1d7fdcaba43"},{"name":"http://localhost:7074/login","id":"7ac57cbf-b09d-4478-8443-a31a7c79e5f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"username\":\"javamail.com\",\r\n    \"password\":\"jo\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:7074/login","urlObject":{"protocol":"http","port":"7074","path":["login"],"host":["localhost"],"query":[{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[],"_postman_id":"7ac57cbf-b09d-4478-8443-a31a7c79e5f0"},{"name":"http://localhost:7074/cartitem","id":"d0a100b8-9c6e-44f0-98d8-2a4156eb57a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJqYXZhbWFpbC5jb20iLCJhdXRob3JpdGllcyI6W3siYXV0aG9yaXR5IjoiY2FuUmVhZFVzZXIifSx7ImF1dGhvcml0eSI6IlJPTEVfVVNFUiJ9XSwiaWF0IjoxNjcwMTM3MTQ0LCJleHAiOjE2NzEzMDkwMDB9.5e9485AwukrbZAEFHiF2t_09c-kLys33pEnLraNFhA_k0qpdnJ10PxvLxNMAz2l6ydWdmf23IfGsPDDqQrcQOw","type":"text"}],"url":"http://localhost:7074/cartitem","urlObject":{"protocol":"http","port":"7074","path":["cartitem"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"d0a100b8-9c6e-44f0-98d8-2a4156eb57a8"}]}