Files
api-specs/idn/v3/paths/password-change-status.yaml
2022-09-02 10:59:29 -04:00

36 lines
1020 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
example: 089899f13a8f4da7824996191587bab9
description: >-
Password change request ID
responses:
'200':
description: Status of the password change request
content:
application/json:
schema:
$ref: '../schemas/PasswordStatus.yaml'
'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'