# Update an existing dental practice Endpoint: PUT /dental-practices/{dentalPracticeId} Version: 1.0 Security: bearer ## Path parameters: - `dentalPracticeId` (number, required) ## Request fields (application/json): - `title` (string, required) The title of the dental practice Example: "Downtown Dental Clinic" - `isEnabled` (boolean) Indicates if the dental practice is enabled Example: true - `id` (number, required) The ID of the dental practice to be updated Example: 123 ## Response 200 fields (application/json): - `title` (string, required) The title of the dental practice Example: "Downtown Dental Clinic" - `isEnabled` (boolean) Indicates if the dental practice is enabled Example: true - `id` (number, required) The ID of the dental practice Example: 123 - `createdAt` (string, required) The date the dental practice was created Example: "2021-07-01T00:00:00.000Z" - `updatedAt` (string, required) The date the dental practice was last updated Example: "2021-07-01T00:00:00.000Z" ## Response 401 fields (application/json): - `message` (string, required) Error message indicating unauthorized access. Example: "Unauthorized" - `statusCode` (number, required) HTTP status code for unauthorized access. Example: 401 ## Response 400 fields