action visagecloud_change_password_using_post { label: "Change password for an account using old password" provider: visagecloud method: POST path: "/rest/v1.1/account/changePassword" encoding: json input: { type: "object" properties: { email: { type: "string" } newPassword: { type: "string" } oldPassword: { type: "string" } } required: ["email", "newPassword", "oldPassword"] additionalProperties: false } output: { type: "object" additionalProperties: true } }