SCIM: DELETE /scim/Users/:id endpoint swagger documentation (#97274)

Update swagger documentation for DELETE /scim/Users/:id
This commit is contained in:
linoman 2024-12-03 18:01:13 +01:00 committed by GitHub
parent ec454e04c9
commit 64e7dbcadb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 48 additions and 0 deletions

View File

@ -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": {

View File

@ -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": {