Skip to main content
POST
/
auth
/
reset-password
Reset password using token
curl --request POST \
  --url https://core.cyberun.cloud/api/v1/auth/reset-password \
  --header 'Content-Type: application/json' \
  --data '
{
  "reset_token": "a1b2c3d4e5f6...",
  "new_password": "NewP@ssw0rd456"
}
'
{
  "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
reset_token
string
required

One-time token received via the password-reset email (valid for 1 hour).

Example:

"a1b2c3d4e5f6..."

new_password
string
required

New password (8–128 characters). All existing sessions are invalidated upon success.

Required string length: 8 - 128
Example:

"NewP@ssw0rd456"

Response

Password reset successful

is_success
boolean
required

Always true when the action completed successfully.

Example:

true