CHALLENGE 6 || CAR MANAGEMENT API

Database

- Redis

  • pg redis

- Postgresql

  • entity diagram car

Routes

1. Get All Cars

  • GET Methode
  • localhost:8080/api/cars
  • get all cars

2. Get byID

  • GET Methode
  • localhost:8080/api/cars/:id
  • get by id

3. Create Cars

  • POST Methode
  • localhost:8080/api/cars
  • post car

4. Update Cars

  • PUT Methode
  • localhost:8080/api/cars/:id
  • updat cars

5. Delete Cars

  • DELETE Methode
  • localhost:8080/api/cars/:id
  • Delete cars