-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automated commit 'Merge pull request #59 from sailpoint/NERRA-1795
NERRA-1795: Add documentation for the isc_accounts API endpoint' by github action: 12712499763
- Loading branch information
1 parent
bb89057
commit 98fae66
Showing
5 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
name: category | ||
in: query | ||
description: The category parameter is used to retrieve profiles belonging to profile types categorized under the allowed schema mapping categories. The permitted categories allowed are 'non-employee' and 'assignment'. | ||
required: false | ||
schema: | ||
type: string | ||
example: non-employee |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
name: use_schema | ||
in: query | ||
description: The use_schema parameter returns schema-mapped field names in the Profiles API response when set to true. | ||
required: false | ||
schema: | ||
type: boolean | ||
default: false | ||
example: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
get: | ||
summary: Retrieve single schema-mapped profile | ||
operationId: getSingleSchemaMappedProfile | ||
description: It returns a single stored profile, optionally with schema-mapped field names. | ||
tags: | ||
- isc accounts | ||
parameters: | ||
- $ref: "../parameters/path/id.yaml" | ||
responses: | ||
'200': | ||
$ref: "../responses/Profile.yaml" | ||
'400': | ||
$ref: "../responses/400.yaml" | ||
'500': | ||
$ref: "../responses/500.yaml" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
get: | ||
summary: Retrieve schema-mapped profiles collection | ||
operationId: getSchemaMappedProfilesCollection | ||
description: It returns a collection of stored profiles, optionally using schema-mapped field names if requested. | ||
tags: | ||
- isc accounts | ||
parameters: | ||
- $ref: "../parameters/query/category.yaml" | ||
- $ref: "../parameters/query/page.yaml" | ||
- $ref: "../parameters/query/per_page.yaml" | ||
- $ref: "../parameters/query/use_schema.yaml" | ||
responses: | ||
'200': | ||
$ref: "../responses/IscAccounts.yaml" | ||
'400': | ||
$ref: "../responses/400.yaml" | ||
'500': | ||
$ref: "../responses/500.yaml" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
description: Expected response to a valid request | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
properties: | ||
profiles: | ||
type: array | ||
items: | ||
$ref: '../schemas/GET/Profile.yaml' |