REST API - handbook for cars, implementation on Spring
PUT /api/cars
- add car in listGET /api/cars
- show all carDELETE /api/cars/{id}
- delete car from list
Request/response body cars dto in the JSON format:
{
"brand": "Lada",
"model": "Granta",
"release": "2019-05-20T00:00:00.000+0000"
}