Giter Club home page Giter Club logo

debuggerstore's Introduction

Debugger Store

E-commerce RESTful API made by developers for developers

Version Stars Contributors

⚙️ Technologies

🗺️ API Documentation

Authentication to consume API

Authentication
Application with basic security authentication, default username and password.

Methods for registering in the Database

  1. (POST) /store/product - Register a new Product
{
  "name": "The Best and Most Complete Book of Java",
  "productQuantity": "500",
  "price": 15
}
  1. (POST) /store/customer - Register a new Consumer
{
  "name": "Richard",
  "document": "12638840084"
}
  1. (POST) /store/order - Register a new Purchase Order
{
   "products":[
      {
         "productCode":"38894d75-35ef-4988-96c7-9ec9c247c50e",
         "productQuantity":20
      }
   ],
   "consumerCode":"27e66321-bd92-4c06-b603-074edfb79810"
}

Methods to get data from the database

Get Lists

  1. (GET) /store/product - List all products
  2. (GET) /store/customer - List all customers
  3. (GET) /store/order - List all customers

Get information filtered

  1. (GET) /store/product/{productCode} - Product by {productCode}
  2. (GET) /store/customer/{customerCode} - Customer by {customerCode}
  3. (GET) /store/order/{documentCustomer} - Order by {documentCustomer}

debuggerstore's People

Contributors

phricardorj avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.