[ENDPOINT] /api/v1/cars
[GET] http://localhost:5000/api/v1/cars
{
"status": true,
"data": [
{
"id": 1,
"name": "Avanza",
"image": "avanza-pic.png",
"price": 1,
"size": "small",
"createdAt": "2022-10-05T00:34:58.950Z",
"updatedAt": "2022-10-05T00:34:58.950Z"
},
...
]
}
[ENDPOINT] /api/v1/cars/{id}
[GET] http://localhost:5000/api/v1/cars/1
{
"id": 1,
"name": "Avanza",
"image": "avanza-pic.png",
"price": 1,
"size": "small",
"createdAt": "2022-10-05T00:34:58.950Z",
"updatedAt": "2022-10-05T00:34:58.950Z"
}
[ENDPOINT] /api/v1/cars
[POST] http://localhost:5000/api/v1/cars
{
"name": String,
"image": String,
"price": Integer,
"size": String,
}
{
"status": true,
"data": {
"id": 2,
"name": "Avanza X",
"image": "avanza-pic-x.png",
"price": 1,
"size": "small",
"createdAt": "2022-10-05T00:34:58.950Z",
"updatedAt": "2022-10-05T00:34:58.950Z"
}
}
[ENDPOINT] /api/v1/cars/{id}
[PUT] http://localhost:5000/api/v1/cars/1
{
"name": String,
"image": String,
"price": Integer,
"size": String,
}
{
"status": true,
"message": "Car has been successfully updated"
}
[ENDPOINT] /api/v1/cars/{id}
[DELETE] http://localhost:5000/api/v1/cars/1
{
"message": "Car has been successfully deleted"
}
Lombok - Indonesia