From 3957b0b26ad5b2c5f37b770950eed8bdc0448b14 Mon Sep 17 00:00:00 2001 From: linoman <2051016+linoman@users.noreply.github.com> Date: Wed, 27 Nov 2024 12:14:06 +0100 Subject: [PATCH] SCIM: Update swagger for /scim/Users (#97030) update swagger for /scim/Users --- public/api-merged.json | 26 ++++++++++++++++++++++++++ public/openapi3.json | 26 ++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) diff --git a/public/api-merged.json b/public/api-merged.json index 6c40acebc14..348d14e02ac 100644 --- a/public/api-merged.json +++ b/public/api-merged.json @@ -8745,6 +8745,32 @@ } } }, + "/scim/users/": { + "post": { + "tags": [ + "users" + ], + "summary": "Creates user.", + "operationId": "createUser", + "responses": { + "200": { + "$ref": "#/responses/okResponse" + }, + "401": { + "$ref": "#/responses/unauthorisedError" + }, + "403": { + "$ref": "#/responses/forbiddenError" + }, + "409": { + "$ref": "#/responses/conflictError" + }, + "500": { + "$ref": "#/responses/internalServerError" + } + } + } + }, "/search": { "get": { "tags": [ diff --git a/public/openapi3.json b/public/openapi3.json index 5b2be3da2fe..7624206850d 100644 --- a/public/openapi3.json +++ b/public/openapi3.json @@ -22690,6 +22690,32 @@ ] } }, + "/scim/users/": { + "post": { + "operationId": "createUser", + "responses": { + "200": { + "$ref": "#/components/responses/okResponse" + }, + "401": { + "$ref": "#/components/responses/unauthorisedError" + }, + "403": { + "$ref": "#/components/responses/forbiddenError" + }, + "409": { + "$ref": "#/components/responses/conflictError" + }, + "500": { + "$ref": "#/components/responses/internalServerError" + } + }, + "summary": "Creates user.", + "tags": [ + "users" + ] + } + }, "/search": { "get": { "operationId": "search",