diff --git a/public/api-merged.json b/public/api-merged.json index af3bcff3120..f45cd3ac27f 100644 --- a/public/api-merged.json +++ b/public/api-merged.json @@ -8657,6 +8657,30 @@ "$ref": "#/responses/internalServerError" } } + }, + "delete": { + "tags": [ + "user" + ], + "summary": "Deletes user.", + "operationId": "deleteUser", + "responses": { + "200": { + "$ref": "#/responses/okResponse" + }, + "400": { + "$ref": "#/responses/badRequestError" + }, + "401": { + "$ref": "#/responses/unauthorisedError" + }, + "404": { + "$ref": "#/responses/notFoundError" + }, + "500": { + "$ref": "#/responses/internalServerError" + } + } } }, "/search": { diff --git a/public/openapi3.json b/public/openapi3.json index 47248a5c5b2..621dfad479e 100644 --- a/public/openapi3.json +++ b/public/openapi3.json @@ -22618,6 +22618,30 @@ } }, "/scim/users/": { + "delete": { + "operationId": "deleteUser", + "responses": { + "200": { + "$ref": "#/components/responses/okResponse" + }, + "400": { + "$ref": "#/components/responses/badRequestError" + }, + "401": { + "$ref": "#/components/responses/unauthorisedError" + }, + "404": { + "$ref": "#/components/responses/notFoundError" + }, + "500": { + "$ref": "#/components/responses/internalServerError" + } + }, + "summary": "Deletes user.", + "tags": [ + "user" + ] + }, "get": { "operationId": "getUsers", "responses": {