Skip to main content
POST
/
api
/
v1
/
gate
/
{project_id}
/
auth
/
forgot-password
Forgot password
curl --request POST \
  --url https://org-api.hexoforge.dev/api/v1/gate/{project_id}/auth/forgot-password \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "email": "<string>"
}
'

Documentation Index

Fetch the complete documentation index at: https://orchestrator-docs.hexoforge.dev/llms.txt

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

Requests a password reset OTP. Always returns 204 whether or not the email exists (anti-enumeration). Requires X-API-Key.

Request body

email
string
required
User email.

Response

204 No Content — empty body. The OTP is valid for 15 minutes. Older unused OTPs for the same user are invalidated.

Status codes

CodeMeaning
204Accepted (email sent if account exists)
429Rate limited