# Update an existing area Updates an existing area within the Property Management System (PMS) with the provided details. Areas help in organizing properties, defining operational zones, and generating location-based insights. This endpoint is useful for modifying existing areas to reflect changes in geographical areas or operational zones. The request body should contain the updated details for the area. If the specified city ID does not exist, a error will be returned. In case of an unexpected system error, a will be triggered. Endpoint: PUT /api/v3/areas/{id} Version: 3.0.4 Security: OAuth2 ## Path parameters: - `id` (integer, required) ## Request fields (application/json): - `id` (integer) ID of the area - `name` (string) Name of the area - `city` (object) City which the area is part of - `city.id` (integer) ID of the city - `city.name` (string) Name of the city ## Response 200 fields (application/json): - `id` (integer) ID of the area - `name` (string) Name of the area - `city` (object) City which the area is part of - `city.id` (integer) ID of the city - `city.name` (string) Name of the city