SCIM: GET /scim/Users/:id endpoint swagger documentation (#97242)

* Add GET /scim/Users/:id endpoint swagger documentation
This commit is contained in:
linoman 2024-12-03 23:18:11 +01:00 committed by GitHub
parent 9642eedce6
commit 3d05f21abd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 52 additions and 0 deletions

View File

@ -8683,6 +8683,32 @@
} }
} }
}, },
"/scim/users/:id": {
"get": {
"tags": [
"user"
],
"summary": "Gets user by id.",
"operationId": "getUser",
"responses": {
"200": {
"$ref": "#/responses/okResponse"
},
"400": {
"$ref": "#/responses/badRequestError"
},
"401": {
"$ref": "#/responses/unauthorisedError"
},
"403": {
"$ref": "#/responses/forbiddenError"
},
"500": {
"$ref": "#/responses/internalServerError"
}
}
}
},
"/search": { "/search": {
"get": { "get": {
"tags": [ "tags": [

View File

@ -22694,6 +22694,32 @@
] ]
} }
}, },
"/scim/users/:id": {
"get": {
"operationId": "getUser",
"responses": {
"200": {
"$ref": "#/components/responses/okResponse"
},
"400": {
"$ref": "#/components/responses/badRequestError"
},
"401": {
"$ref": "#/components/responses/unauthorisedError"
},
"403": {
"$ref": "#/components/responses/forbiddenError"
},
"500": {
"$ref": "#/components/responses/internalServerError"
}
},
"summary": "Gets user by id.",
"tags": [
"user"
]
}
},
"/search": { "/search": {
"get": { "get": {
"operationId": "search", "operationId": "search",