mirror of
https://github.com/directus/directus.git
synced 2026-02-16 07:14:57 -05:00
20 lines
521 B
YAML
20 lines
521 B
YAML
post:
|
|
tags:
|
|
- Authentication
|
|
operationId: passwordRequest
|
|
description: Request a reset password email to be send.
|
|
requestBody:
|
|
content:
|
|
application/json:
|
|
schema:
|
|
type: object
|
|
required: [email]
|
|
properties:
|
|
email:
|
|
type: string
|
|
example: admin@example.com
|
|
description: Email address of the user you're requesting a reset for.
|
|
responses:
|
|
"401":
|
|
$ref: "../../#/components/responses/UnauthorizedError"
|