# Create a new dental service Endpoint: POST /dental-service Version: 1.0 Security: bearer ## 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 ## Response 201 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 Example: 123 - `createdAt` (string, required) The date the dental service was created Example: "2021-07-01T00:00:00.000Z" - `updatedAt` (string, required) The date the dental service 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