-
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 'ISCAIM-22142: added docs for beta/identities/:id/re…
…set endpoint (#1607)' by github action: 8379466621
- Loading branch information
1 parent
44780f0
commit 3a6c9b7
Showing
2 changed files
with
36 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,34 @@ | ||
post: | ||
operationId: resetIdentity | ||
tags: | ||
- Identities | ||
summary: Reset an identity | ||
description: >- | ||
Use this endpoint to reset a user's identity if they have forgotten their authentication information like their answers to knowledge-based questions. | ||
Resetting an identity de-registers the user and removes any elevated user levels they have. | ||
security: | ||
- UserContextAuth: | ||
- "idn:identity:update" | ||
parameters: | ||
- in: path | ||
name: identityId | ||
schema: | ||
type: string | ||
required: true | ||
description: Identity Id | ||
example: "ef38f94347e94562b5bb8424a56397d8" | ||
responses: | ||
"202": | ||
description: Accepted. The reset request accepted and is in progress. | ||
"400": | ||
$ref: "../../v3/responses/400.yaml" | ||
"401": | ||
$ref: "../../v3/responses/401.yaml" | ||
"403": | ||
$ref: "../../v3/responses/403.yaml" | ||
"404": | ||
$ref: "../../v3/responses/404.yaml" | ||
"429": | ||
$ref: "../../v3/responses/429.yaml" | ||
"500": | ||
$ref: "../../v3/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