38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
|
import type { NextApiRequest } from "next";
|
||
|
|
||
|
import { defaultResponder } from "@calcom/lib/server";
|
||
|
|
||
|
import { schemaQueryIdParseInt } from "@lib/validations/shared/queryIdTransformParseInt";
|
||
|
|
||
|
/**
|
||
|
* @swagger
|
||
|
* /attendees/{id}:
|
||
|
* delete:
|
||
|
* operationId: removeAttendeeById
|
||
|
* summary: Remove an existing attendee
|
||
|
* parameters:
|
||
|
* - in: path
|
||
|
* name: id
|
||
|
* schema:
|
||
|
* type: integer
|
||
|
* required: true
|
||
|
* description: ID of the attendee to delete
|
||
|
* tags:
|
||
|
* - attendees
|
||
|
* responses:
|
||
|
* 201:
|
||
|
* description: OK, attendee removed successfuly
|
||
|
* 400:
|
||
|
* description: Bad request. Attendee id is invalid.
|
||
|
* 401:
|
||
|
* description: Authorization information is missing or invalid.
|
||
|
*/
|
||
|
export async function deleteHandler(req: NextApiRequest) {
|
||
|
const { prisma, query } = req;
|
||
|
const { id } = schemaQueryIdParseInt.parse(query);
|
||
|
await prisma.attendee.delete({ where: { id } });
|
||
|
return { message: `Attendee with id: ${id} deleted successfully` };
|
||
|
}
|
||
|
|
||
|
export default defaultResponder(deleteHandler);
|