cldkctl_change_password
Update user password securely via the MCP cldkctl Server by providing current and new credentials for enhanced account protection.
Instructions
Call the cldkctl_change_password endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
new_password | Yes | New password | |
old_password | Yes | Current password |
Input Schema (JSON Schema)
{
"properties": {
"new_password": {
"description": "New password",
"type": "string"
},
"old_password": {
"description": "Current password",
"type": "string"
}
},
"required": [
"old_password",
"new_password"
],
"type": "object"
}