kubilayrn / nextlua-case

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

VEHICLES

GET

POST

URL:http://localhost:8000/vehicles/ DATA:{ "vehicle_model_id": { "name": "320d", "brand": "BMW" }, "km": 3500, "plate": "07ctu12", "vehicle_id_number": "123s456ASD789S", "colour": "Blue", "is_deleted": false, "is_active": true }

PUT

URL:http://localhost:8000/vehicles/25/ DATA:{ "vehicle_model_id": { "name": "E46", "brand": "BMW" }, "km": 220000, "plate": "35abk12", "vehicle_id_number": "852S456ASD789S", "colour": "Blue", "is_deleted": false, "is_active": true }

PATCH

URL:http://localhost:8000/vehicles/25/ DATA:{ "vehicle_model_id": { "name": "320d", "brand": "BMW" }, "colour":"Black" }

DELETE

VEHICLE MODELS

GET

POST

URL:http://localhost:8000/vehiclemodels/ DATA:{ "name": "320d", "brand": "BMW" }

PUT

URL:http://localhost:8000/vehiclemodels/5/ DATA:{ "name": "320d", "brand": "BMW" }

PATCH

URL:http://localhost:8000/vehiclemodels/5/ DATA:{"name": "320d",}

DELETE

REDIS MONITOR redis-monitor

About


Languages

Language:Python 100.0%