description:Called when a user forgot the account's username or password. The user will receive an email with the account's username and a link to change the password without knowing the old password.
requestBody:
description:Either the user's username or the user's email address.
content:
application/json:
schema:
oneOf:
-type:object
required:
-email
properties:
email:
type:string
format:email
-type:object
required:
-username
properties:
username:
type:string
responses:
'200':
description:The email with the username and password reset link has been sent.
'404':
description:There is no user with the given email address.