# Update an existing dental service Endpoint: PUT /dental-service/{dentalServiceId} Version: 1.0 Security: bearer ## Path parameters: - `dentalServiceId` (number, required) ## Request fields (application/json): - `title` (string, required) The title of the dental service Example: "Teeth Whitening" - `isEnabled` (boolean) Indicates whether the dental service is enabled Example: true - `id` (number, required) The ID of the dental service to be updated Example: 123 ## Response 200 fields (application/json): - `title` (string, required) The title of the dental service Example: "Teeth Whitening" - `isEnabled` (boolean) Indicates whether the dental service is enabled Example: true - `id` (number, required) The ID of the dental service to be updated Example: 123 ## 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