action signl4_put_users_user_id_change_password { label: "Updates the password of a user" provider: signl4 method: PUT path: "/users/{userId}/changePassword" encoding: json input: { type: "object" properties: { currentPassword: { type: "string" } newPassword: { type: "string" } userId: { type: "string" } } required: ["userId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }