action velopayments_update_password_self { label: "Update Password for self" description: "Update password for self\n" provider: velopayments method: POST path: "/v2/users/self/password" encoding: json input: { type: "object" required: ["newPassword", "oldPassword"] properties: { newPassword: { type: "string" description: "The new password" } oldPassword: { type: "string" description: "The user's current password" } } } output: { type: "object" additionalProperties: true } }