# Update an existing appointment type Endpoint: PUT /appointment-type/{appointmentTypeId} Version: 1.0 Security: bearer ## Path parameters: - `appointmentTypeId` (number, required) ## Request fields (application/json): - `title` (string, required) The title of the appointment type Example: "1 Filling - Returning" - `isEnabled` (boolean) Indicates if the appointment type is enabled Example: true - `id` (number, required) The unique ID of the appointment type Example: 123 ## Response 200 fields (application/json): - `title` (string, required) The title of the appointment type Example: "1 Filling - Returning" - `isEnabled` (boolean) Indicates if the appointment type is enabled Example: true - `id` (number, required) The unique ID of the appointment type 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 404 fields