Skip to main content
Request a password reset email
curl --request POST \
  --url https://api.acornops.dev/api/v1/auth/password/forgot \
  --header 'Content-Type: application/json' \
  --header 'x-csrf-token: <x-csrf-token>' \
  --data '
{
  "email": "dev@acornops.local"
}
'
{
  "ok": true,
  "status": "<string>",
  "message": "<string>",
  "resendAfterSeconds": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.acornops.dev/llms.txt

Use this file to discover all available pages before exploring further.

Headers

x-csrf-token
string
required

CSRF token returned by /api/v1/auth/csrf and mirrored in the CSRF cookie.

Body

application/json
email
string<email>
required
Example:

"dev@acornops.local"

Response

Generic success or throttled response with optional resendAfterSeconds.

ok
boolean
status
string
message
string
resendAfterSeconds
integer