Skip to main content
PUT
/
users
/
me
/
password
Change current user password
curl --request PUT \
  --url https://core.cyberun.cloud/api/v1/users/me/password \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "current_password": "P@ssw0rd123",
  "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.

Authorizations

Authorization
string
header
required

User session JWT (Bearer ). Must be paired with the X-Team-ID request header on team-scoped endpoints so the server knows which team's resources to operate on.

Body

application/json
current_password
string
required

The user's current password (for verification).

Example:

"P@ssw0rd123"

new_password
string
required

New password (8–128 characters).

Required string length: 8 - 128
Example:

"NewP@ssw0rd456"

Response

Password changed

is_success
boolean
required

Always true when the action completed successfully.

Example:

true