From be806be59e08d33e5856ac359e5e317a87b5cf7a Mon Sep 17 00:00:00 2001 From: GitHub Action Bot Date: Thu, 6 Jul 2023 05:55:52 +0000 Subject: [PATCH] Automated commit 'IDNLANAI-9097 - Updated API specification for the workgroup v3 get API (#1337) Co-authored-by: Sachin Dhus ' by github action: 5472056175 --- idn/beta/paths/workgroups/workgroup.yaml | 34 ++++++++++++++++++++++++ idn/sailpoint-api.beta.yaml | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 idn/beta/paths/workgroups/workgroup.yaml diff --git a/idn/beta/paths/workgroups/workgroup.yaml b/idn/beta/paths/workgroups/workgroup.yaml new file mode 100644 index 0000000..5f0be55 --- /dev/null +++ b/idn/beta/paths/workgroups/workgroup.yaml @@ -0,0 +1,34 @@ +get: + operationId: getWorkgroup + tags: + - Governance Groups + summary: Get an Governance Groups + description: This API returns an Governance Groups by its ID. + parameters: + - in: path + name: id + required: true + schema: + type: string + description: >- + ID of the Governance Groups + example: 2c9180837ca6693d017ca8d097500149 + responses: + '200': + description: An Governance Groups + content: + application/json: + schema: + $ref: "../../schemas/WorkgroupDto.yaml" + '400': + $ref: '../../../v3/responses/400.yaml' + '401': + $ref: '../../../v3/responses/401.yaml' + '403': + $ref: '../../../v3/responses/403.yaml' + '429': + $ref: '../../../v3/responses/429.yaml' + '500': + $ref: '../../../v3/responses/500.yaml' + security: + - oauth2: [idn:workgroup:read] diff --git a/idn/sailpoint-api.beta.yaml b/idn/sailpoint-api.beta.yaml index bdf3b44..ef25e1f 100644 --- a/idn/sailpoint-api.beta.yaml +++ b/idn/sailpoint-api.beta.yaml @@ -1638,3 +1638,5 @@ paths: $ref: './beta/paths/workflow-external-execute-test.yaml' /workgroups: $ref: './beta/paths/workgroups/Workgroups.yaml' + /workgroups/{id}: + $ref: './beta/paths/workgroups/workgroup.yaml'