# Update a Parking Lot Update a Parking Lot given its id **URL** : `/parking_lot/{parkingLotId}` **Method** : `PUT` ## Parameters Name | Description --- | --- parkingLotId | Parking Lot id to update integer($int64) | **Data constraints** `id` integer($int64) `name` should be a non-null length character string `layout` should not be null `layout.available` should be a positive integer `layout.name` should be a non-null length character string `pricing_policy` should not be null **Data example** ```json { "id": 0, "name": "parking Sophia 2", "layout": [ { "name": "standard", "available": 10 }, { "name": "25kW", "available": 10 } ], "pricing_policy": { "type": "simple", "flat_fee": 1, "per_hour_fare": 0.5 } } ``` ## Success Responses **Code** : `204 NO CONTENT` if the update was successful **Code** : `201 CREATED` if the given `parkingLotId` did not exist **Headers** : `Location: /parking_lot/{id}` **Content** : ```json { "id": 0, "name": "parking victoria 1", "layout": [ { "name": "standard", "available": 10 }, { "name": "25kW", "available": 10 } ], "pricing_policy": { "type": "simple", "flat_fee": 1, "per_hour_fare": 0.5 } } ``` ## Error Responses **Condition** : If fields are missing **Code** : `400 BAD REQUEST` **Content example** ```json { "timestamp": "2020-01-01T10:00:00.542+0000", "status": 400, "error": "Bad Request", "errors": [ { "codes": [ "NotNull.parkingLot.pricingPolicy", "NotNull.pricingPolicy", "NotNull.eu.fibane.parkingtoll.model.PricingPolicy", "NotNull" ], "arguments": [ { "codes": [ "parkingLot.pricingPolicy", "pricingPolicy" ], "arguments": null, "defaultMessage": "pricingPolicy", "code": "pricingPolicy" } ], "defaultMessage": "ne peut pas ĂȘtre nul", "objectName": "parkingLot", "field": "pricingPolicy", "rejectedValue": null, "bindingFailure": false, "code": "NotNull" } ], "message": "Validation failed for object='parkingLot'. Error count: 1", "path": "/parking_lot" } ```