Skip to main content
POST
/
auth
/
forgot-password
Request password reset email
curl --request POST \
  --url https://core.cyberun.cloud/api/v1/auth/forgot-password \
  --header 'Content-Type: application/json' \
  --data '
{
  "email_address": "alice@example.com"
}
'
{
  "is_success": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.cyberun.cloud/llms.txt

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

Body

application/json
email_address
string<email>
required

Email address of the account to reset. A reset link is sent if the account exists.

Example:

"alice@example.com"

Response

If the email exists, a reset link has been sent

is_success
boolean
required

Always true when the action completed successfully.

Example:

true