-
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 #58 from sailpoint/NEROCKET-1990
NEROCKET-1990 API docs for new consolidation endpoints' by github action: 12013174917
- Loading branch information
1 parent
5bf2e45
commit af44222
Showing
5 changed files
with
57 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
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,17 @@ | ||
patch: | ||
summary: Reassign data record | ||
operationId: patchDataRecord | ||
description: Consolidation is a deprecated feature, this endpoint provides a mechanism to reassign a data record to a new master record to assist customers. | ||
tags: | ||
- consolidation | ||
parameters: | ||
- $ref: "../parameters/path/id.yaml" | ||
requestBody: | ||
$ref: "../requestBodies/PATCH/Consolidation.yaml" | ||
responses: | ||
'200': | ||
description: The data record has been reassigned. | ||
'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,23 @@ | ||
delete: | ||
summary: Delete a master record | ||
operationId: deleteMasterRecord | ||
description: Consolidation is a deprecated feature, this endpoint provides a mechanism to delete a master record to assist customers. | ||
tags: | ||
- consolidation | ||
parameters: | ||
- $ref: "../parameters/path/id.yaml" | ||
responses: | ||
'200': | ||
description: Master record deleted. | ||
'400': | ||
description: Error deleting master record | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
properties: | ||
error: | ||
description: A message describing the error that occurred | ||
type: string | ||
'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,5 @@ | ||
required: true | ||
content: | ||
application/json: | ||
schema: | ||
$ref: "../../schemas/PATCH/DataRecords.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,7 @@ | ||
type: object | ||
properties: | ||
master_record_id: | ||
type: string | ||
description: The id of the master record | ||
example: "456738c9ba999a0076cf8a9b" | ||
|