Automated commit 'IDNLANAI-9097 - Updated API specification for the workgroup v3 get API (#1337)

Co-authored-by: Sachin Dhus <sachin.dhus@sdhus-n4039yq.sailpoint.com>' by github action: 5472056175
This commit is contained in:
GitHub Action Bot
2023-07-06 05:55:52 +00:00
parent 669aa01510
commit be806be59e
2 changed files with 36 additions and 0 deletions

View File

@@ -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]

View File

@@ -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'