PMT-15: Projekte löschen #11

Merged
SZUT-Ole merged 3 commits from story/PMT-15-projekte-loeschen into trunk 2024-10-09 13:14:40 +00:00
Showing only changes of commit d725addef8 - Show all commits

View file

@ -51,4 +51,30 @@ paths:
401: 401:
$ref: "#/components/responses/UnAuthorized" $ref: "#/components/responses/UnAuthorized"
500: 500:
$ref: "#/components/responses/InternalError" $ref: "#/components/responses/InternalError"
/project/{id}:
delete:
operationId: "deleteProject"
description: "Delete a specific Project"
parameters:
- in: path
name: id
schema:
type: integer
format: int64
required: true
responses:
204:
description: "Deletes a specific Project"
401:
$ref: "#/components/responses/UnAuthorized"
404:
description: "Project not found"
content:
text/plain:
schema:
type: string
500:
$ref: "#/components/responses/InternalError"