Change Password​
POST
/auth/password-change/self
Change password for authenticated user. Requires current password for security. New password must be at least 8 characters.
Authorizations​
SessionAuth
Session ID for authenticated requests
TypeAPI Key (header: X-Session-ID)
Request Body​
application/json
JSON
{
"current_password": "OldPass123!",
"new_password": "NewPass123!"
}
Responses​
Password changed successfully
application/json
JSON
{
"success": true,
"message": "Password updated successfully"
}