Files
developer.sailpoint.com/static/api-specs/idn/beta/paths/password-change-status.yaml
2022-09-26 21:59:54 -04:00

36 lines
1019 B
YAML

get:
operationId: getPasswordChangeStatus
tags:
- Password Management
summary: Get Password Change Request Status
description: >-
This API returns the status of a password change request. A token with identity owner or trusted API client application authority is required to call this API.
parameters:
- in: path
name: id
schema:
type: string
required: true
responses:
'200':
description: Status of the password change request
content:
application/json:
schema:
$ref: '../schemas/PasswordStatus.yaml'
example: {
"status": "IN_PROCESS",
"reqeustId": "089899f13a8f4da7824996191587bab9",
"error": null,
}
'400':
$ref: '../../v3/responses/400.yaml'
'401':
$ref: '../../v3/responses/401.yaml'
'403':
$ref: '../../v3/responses/403.yaml'
'404':
$ref: '../../v3/responses/404.yaml'
'500':
$ref: '../../v3/responses/500.yaml'