{"openapi":"3.0.1","info":{"title":"My API","description":"This is a sample Spring Boot RESTful service using springdoc-openapi and OpenAPI 3.","version":"1.0.0"},"servers":[{"url":"http://34.92.164.246:9090","description":"Generated server url"}],"paths":{"/api/public/edit-customer/{customerId}":{"put":{"tags":["customer-controller"],"operationId":"editCustomer","parameters":[{"name":"customerId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"customerDTO","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CustomerDTO"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}},"/api/public/carts/update-product-quantity":{"put":{"tags":["cart-controller"],"operationId":"updateProductQuantityInCart","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CartItemDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}},"/api/admin/update-order-status/{orderId}":{"put":{"tags":["order-controller"],"operationId":"updateOrderStatus","parameters":[{"name":"orderId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"status","in":"query","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}},"/api/admin/edit-user/{id}":{"put":{"tags":["user-controller"],"operationId":"editUser","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int32"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SignupRequest"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}},"/api/admin/edit-product/{productId}":{"put":{"tags":["product-controller"],"operationId":"editProduct","parameters":[{"name":"productId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"productCode","in":"query","required":false,"schema":{"type":"string"}},{"name":"productName","in":"query","required":false,"schema":{"type":"string"}},{"name":"category","in":"query","required":false,"schema":{"type":"string"}},{"name":"brand","in":"query","required":false,"schema":{"type":"string"}},{"name":"importPrice","in":"query","required":false,"schema":{"type":"string"}},{"name":"price","in":"query","required":false,"schema":{"type":"string"}},{"name":"promotePrice","in":"query","required":false,"schema":{"type":"string"}},{"name":"importQuantity","in":"query","required":false,"schema":{"type":"string"}},{"name":"description","in":"query","required":false,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"imageUrl":{"type":"string","format":"binary"}}}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}},"/api/admin/edit-category/{categoryId}":{"put":{"tags":["category-controller"],"operationId":"editCategory","parameters":[{"name":"categoryId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CategoryDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}},"/api/admin/edit-brand/{brandId}":{"put":{"tags":["brand-controller"],"operationId":"editBrand","parameters":[{"name":"brandId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BrandDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}},"/api/public/verify-otp":{"post":{"tags":["user-controller"],"operationId":"verifyOtp","parameters":[{"name":"email","in":"query","required":true,"schema":{"type":"string"}},{"name":"otpCode","in":"query","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}}},"/api/public/signup":{"post":{"tags":["user-controller"],"operationId":"registerUser","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SignupRequest"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}},"/api/public/signin":{"post":{"tags":["user-controller"],"operationId":"loginUser","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LoginRequest"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}},"/api/public/reset-password":{"post":{"tags":["user-controller"],"operationId":"resetPassword","parameters":[{"name":"email","in":"query","required":true,"schema":{"type":"string"}},{"name":"newPassword","in":"query","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}}},"/api/public/order-product/{cartId}/{paymentMethod}":{"post":{"tags":["order-controller"],"operationId":"orderProducts","parameters":[{"name":"cartId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"paymentMethod","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}},"/api/public/forgot-password":{"post":{"tags":["user-controller"],"operationId":"forgotPassword","parameters":[{"name":"email","in":"query","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}}},"/api/public/create-order":{"post":{"tags":["payment-controller"],"operationId":"createOrder","parameters":[{"name":"amount","in":"query","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}}},"/api/public/change-password":{"post":{"tags":["user-controller"],"operationId":"changePassword","parameters":[{"name":"Authorization","in":"header","required":true,"schema":{"type":"string"}},{"name":"oldPassword","in":"query","required":true,"schema":{"type":"string"}},{"name":"newPassword","in":"query","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}},"/api/public/add-product-to-cart/{productId}":{"post":{"tags":["cart-controller"],"operationId":"addToCart","parameters":[{"name":"productId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"quantity","in":"query","required":true,"schema":{"type":"integer","format":"int32"}},{"name":"Authorization","in":"header","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}},"/api/public/add-customer":{"post":{"tags":["customer-controller"],"operationId":"signupCustomer","parameters":[{"name":"name","in":"query","required":false,"schema":{"type":"string"}},{"name":"phone","in":"query","required":false,"schema":{"type":"string"}},{"name":"email","in":"query","required":false,"schema":{"type":"string"}},{"name":"userName","in":"query","required":false,"schema":{"type":"string"}},{"name":"password","in":"query","required":false,"schema":{"type":"string"}},{"name":"gender","in":"query","required":false,"schema":{"type":"string"}},{"name":"birthdate","in":"query","required":false,"schema":{"type":"string"}},{"name":"address","in":"query","required":false,"schema":{"type":"string"}},{"name":"city","in":"query","required":false,"schema":{"type":"string"}},{"name":"district","in":"query","required":false,"schema":{"type":"string"}},{"name":"commune","in":"query","required":false,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"imageUrl":{"type":"string","format":"binary"}}}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}},"/api/public/add-comment":{"post":{"tags":["comment-controller"],"operationId":"addComment","parameters":[{"name":"Authorization","in":"header","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CommentDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}},"/api/admin/add-product":{"post":{"tags":["product-controller"],"operationId":"addProduct","parameters":[{"name":"productCode","in":"query","required":false,"schema":{"type":"string"}},{"name":"productName","in":"query","required":false,"schema":{"type":"string"}},{"name":"category","in":"query","required":false,"schema":{"type":"string"}},{"name":"brand","in":"query","required":false,"schema":{"type":"string"}},{"name":"importPrice","in":"query","required":false,"schema":{"type":"string"}},{"name":"price","in":"query","required":false,"schema":{"type":"string"}},{"name":"promotePrice","in":"query","required":false,"schema":{"type":"string"}},{"name":"importQuantity","in":"query","required":false,"schema":{"type":"string"}},{"name":"description","in":"query","required":false,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"imageUrl":{"type":"string","format":"binary"}}}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}},"/api/admin/add-category":{"post":{"tags":["category-controller"],"operationId":"addCategory","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CategoryDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}},"/api/admin/add-brand":{"post":{"tags":["brand-controller"],"operationId":"addBrand","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BrandDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}},"/api/public/vn-pay":{"get":{"tags":["payment-controller"],"operationId":"pay","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/VNPayResponse"}}}}}}},"/api/public/vn-pay-callback":{"get":{"tags":["payment-controller"],"operationId":"payCallbackHandler","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/VNPayResponse"}}}}}}},"/api/public/view-cart":{"get":{"tags":["cart-controller"],"operationId":"viewCart","parameters":[{"name":"Authorization","in":"header","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}},"/api/public/products":{"get":{"tags":["product-controller"],"operationId":"getAllProducts","parameters":[{"name":"page","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"size","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":10}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageResponseListProductDTO"}}}}}}},"/api/public/products/search-by-keyword":{"get":{"tags":["product-controller"],"operationId":"searchProductsByKeyword","parameters":[{"name":"keyword","in":"query","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}},"/api/public/products/discounted":{"get":{"tags":["product-controller"],"operationId":"getDiscountedProducts","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Product"}}}}}}}},"/api/public/products/categories":{"get":{"tags":["product-controller"],"operationId":"getProductsByCategoryId","parameters":[{"name":"categoryId","in":"query","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}},"/api/public/product/{id}":{"get":{"tags":["product-controller"],"operationId":"getProductById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Product"}}}}}}},"/api/public/orders/{orderId}":{"get":{"tags":["order-controller"],"operationId":"getOrder","parameters":[{"name":"orderId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"Authorization","in":"header","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}},"/api/public/orders/{orderId}/details":{"get":{"tags":["order-controller"],"operationId":"getOrderDetails","parameters":[{"name":"orderId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ProductBillDTO"}}}}}}}},"/api/public/orders/user":{"get":{"tags":["order-controller"],"operationId":"getUserOrders","parameters":[{"name":"Authorization","in":"header","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}},"/api/public/get-all-categories":{"get":{"tags":["category-controller"],"operationId":"getAllCategories","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Category"}}}}}}}},"/api/public/get-all-brands":{"get":{"tags":["brand-controller"],"operationId":"getAllBrands","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Brand"}}}}}}}},"/api/public/customer/{id}":{"get":{"tags":["customer-controller"],"operationId":"getCustomerById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Customer"}}}}}}},"/api/public/customer-address/{customerId}":{"get":{"tags":["customer-controller"],"operationId":"getCustomerAddressByCustomerId","parameters":[{"name":"customerId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CustomerAddressDTO"}}}}}}},"/api/public/average-rating/{productId}":{"get":{"tags":["comment-controller"],"operationId":"getAverageRating","parameters":[{"name":"productId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}},"/api/admin/get-user/{id}":{"get":{"tags":["user-controller"],"operationId":"getUserById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int32"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/User"}}}}}}},"/api/admin/get-all-users":{"get":{"tags":["user-controller"],"operationId":"getAllUsers","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/User"}}}}}}}},"/api/admin/get-all-customers":{"get":{"tags":["customer-controller"],"operationId":"getAllCustomers","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Customer"}}}}}}}},"/api/public/carts/delete-cart-item/{cartId}/{productId}":{"delete":{"tags":["cart-controller"],"operationId":"deleteCartItemByCartIdAndProductId","parameters":[{"name":"cartId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"productId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}},"/api/admin/delete-user/{id}":{"delete":{"tags":["customer-controller"],"operationId":"deleteUser","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int32"}}],"responses":{"200":{"description":"OK"}}}},"/api/admin/delete-product/{productId}":{"delete":{"tags":["product-controller"],"operationId":"deleteProduct","parameters":[{"name":"productId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}},"/api/admin/delete-customer/{customerId}":{"delete":{"tags":["customer-controller"],"operationId":"deleteCustomer","parameters":[{"name":"customerId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}}},"/api/admin/delete-category/{categoryId}":{"delete":{"tags":["category-controller"],"operationId":"deleteCategory","parameters":[{"name":"categoryId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}},"/api/admin/delete-brand/{brandId}":{"delete":{"tags":["brand-controller"],"operationId":"deleteBrand","parameters":[{"name":"brandId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}}},"components":{"schemas":{"CustomerDTO":{"type":"object","properties":{"userName":{"type":"string"},"password":{"type":"string"},"email":{"type":"string"},"name":{"type":"string"},"phone":{"type":"string"},"gender":{"type":"string"},"birthdate":{"type":"string"},"imageUrl":{"type":"string","format":"binary"},"address":{"type":"string"},"city":{"type":"string"},"district":{"type":"string"},"commune":{"type":"string"}}},"CartItemDTO":{"type":"object","properties":{"cartId":{"type":"integer","format":"int64"},"productId":{"type":"integer","format":"int64"},"quantity":{"type":"integer","format":"int32"}}},"SignupRequest":{"type":"object","properties":{"userName":{"type":"string"},"password":{"type":"string"},"email":{"type":"string"},"phoneNumber":{"type":"string"},"created":{"type":"string","format":"date-time"},"gender":{"type":"string","format":"byte"},"address":{"type":"string"},"listRoles":{"uniqueItems":true,"type":"array","items":{"type":"string"}}}},"CategoryDTO":{"required":["name"],"type":"object","properties":{"name":{"type":"string"},"description":{"type":"string"},"imageUrl":{"type":"string","format":"binary"}}},"BrandDTO":{"required":["name"],"type":"object","properties":{"name":{"type":"string"},"description":{"type":"string"},"imageUrl":{"type":"string","format":"binary"}}},"LoginRequest":{"type":"object","properties":{"userName":{"type":"string"},"password":{"type":"string"}}},"CommentDTO":{"type":"object","properties":{"productId":{"type":"integer","format":"int64"},"content":{"type":"string"},"rating":{"type":"integer","format":"int32"}}},"VNPayResponse":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"paymentUrl":{"type":"string"}}},"Category":{"type":"object","properties":{"categoryId":{"type":"integer","format":"int64"},"name":{"type":"string"},"description":{"type":"string"},"imageUrl":{"type":"string"}}},"PageResponseListProductDTO":{"type":"object","properties":{"size":{"type":"integer","format":"int32"},"page":{"type":"integer","format":"int32"},"totalPages":{"type":"integer","format":"int32"},"items":{"type":"array","items":{"$ref":"#/components/schemas/ProductDTO"}}}},"ProductDTO":{"type":"object","properties":{"productId":{"type":"integer","format":"int64"},"name":{"type":"string"},"brand":{"type":"string"},"price":{"type":"number","format":"double"},"promotePrice":{"type":"number","format":"double"},"importPrice":{"type":"number","format":"double"},"stockQuantity":{"type":"integer","format":"int32"},"discount":{"type":"integer","format":"int32"},"productCode":{"type":"string"},"importQuantity":{"type":"integer","format":"int32"},"availableStock":{"type":"integer","format":"int32"},"description":{"type":"string"},"imageUrl":{"type":"string"},"sold":{"type":"integer","format":"int32"},"categories":{"uniqueItems":true,"type":"array","items":{"$ref":"#/components/schemas/Category"}}}},"Brand":{"type":"object","properties":{"brandId":{"type":"integer","format":"int64"},"name":{"type":"string"},"description":{"type":"string"},"imageUrl":{"type":"string"}}},"Product":{"type":"object","properties":{"productId":{"type":"integer","format":"int64"},"name":{"type":"string"},"brand":{"$ref":"#/components/schemas/Brand"},"price":{"type":"number","format":"double"},"promotePrice":{"type":"number","format":"double"},"importPrice":{"type":"number","format":"double"},"stockQuantity":{"type":"integer","format":"int32"},"discount":{"type":"number","format":"double"},"productCode":{"type":"string"},"importQuantity":{"type":"integer","format":"int32"},"availableStock":{"type":"integer","format":"int32"},"description":{"type":"string"},"imageUrl":{"type":"string"},"sold":{"type":"integer","format":"int32"},"categories":{"uniqueItems":true,"type":"array","items":{"$ref":"#/components/schemas/Category"}}}},"ProductBillDTO":{"type":"object","properties":{"productCode":{"type":"string"},"productName":{"type":"string"},"quantity":{"type":"integer","format":"int32"},"totalAmount":{"type":"number","format":"double"}}},"Customer":{"type":"object","properties":{"customerId":{"type":"integer","format":"int64"},"user":{"$ref":"#/components/schemas/User"},"name":{"type":"string"},"phone":{"type":"string"},"gender":{"type":"string"},"birthdate":{"type":"string","format":"date-time"},"imageUrl":{"type":"string"},"addresses":{"uniqueItems":true,"type":"array","items":{"$ref":"#/components/schemas/CustomerAddress"}}}},"CustomerAddress":{"type":"object","properties":{"addressId":{"type":"integer","format":"int64"},"address":{"type":"string"},"commune":{"type":"string"},"district":{"type":"string"},"city":{"type":"string"},"country":{"type":"string"},"customer":{"$ref":"#/components/schemas/Customer"}}},"Role":{"type":"object","properties":{"roleId":{"type":"integer","format":"int64"},"roleName":{"type":"string","enum":["ROLE_ADMIN","ROLE_MANAGER","ROLE_USER"]}}},"User":{"type":"object","properties":{"userId":{"type":"integer","format":"int32"},"userName":{"type":"string"},"email":{"type":"string"},"created":{"type":"string","format":"date-time"},"listRoles":{"uniqueItems":true,"type":"array","items":{"$ref":"#/components/schemas/Role"}}}},"CustomerAddressDTO":{"type":"object","properties":{"addressId":{"type":"integer","format":"int64"},"address":{"type":"string"},"commune":{"type":"string"},"district":{"type":"string"},"city":{"type":"string"},"country":{"type":"string"}}}}}}
css
golang
html
javascript
rest-api
spring
First Time Repository
JavaScript
Languages:
CSS: 1.8KB
HTML: 0.5KB
JavaScript: 133.9KB
Created: 1/4/2025
Updated: 1/5/2025