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

* Add GET /scim/Users/:id endpoint swagger documentation
pull/97370/head
linoman 1 year ago committed by GitHub
parent 9642eedce6
commit 3d05f21abd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 26
      public/api-merged.json
  2. 26
      public/openapi3.json

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

@ -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": {
"get": {
"operationId": "search",

Loading…
Cancel
Save