change_a_password
Change user passwords in the Multilead platform. Users can update their own password, while platform co-owners can modify passwords for all users within their platform.
Instructions
Change A Password
This action changes the password for a specific user. Regular users can only change their own password and platform co-owners can change the password for all users within their platform.
Args: user_id: User ID whose password to change new_password: New password to set
Returns: Confirmation of password change
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | ||
| new_password | Yes |
Input Schema (JSON Schema)
{
"properties": {
"new_password": {
"type": "string"
},
"user_id": {
"type": "string"
}
},
"required": [
"user_id",
"new_password"
],
"type": "object"
}