import type { NextApiRequest } from "next"; import { defaultResponder } from "@calcom/lib/server"; import { schemaQueryIdAsString } from "~/lib/validations/shared/queryIdString"; /** * @swagger * /webhooks/{id}: * delete: * summary: Remove an existing hook * operationId: removeWebhookById * parameters: * - in: path * name: id * schema: * type: integer * required: true * description: Numeric ID of the hooks to delete * security: * - ApiKeyAuth: [] * tags: * - hooks * externalDocs: * url: https://docs.cal.com/hooks * responses: * 201: * description: OK, hook removed successfully * 400: * description: Bad request. hook id is invalid. * 401: * description: Authorization information is missing or invalid. */ export async function deleteHandler(req: NextApiRequest) { const { prisma, query } = req; const { id } = schemaQueryIdAsString.parse(query); await prisma.webhook.delete({ where: { id } }); return { message: `Schedule with id: ${id} deleted successfully` }; } export default defaultResponder(deleteHandler);