action whatsapp_backup_settings { label: "Backup-Settings" provider: whatsapp method: POST path: "/settings/backup" encoding: json input: { type: "object" required: ["password"] properties: { password: { type: "string" description: "Used to encrypt backup data for security" } } } output: { type: "object" description: "Save the data value as that will be used along with your password to restore the information." properties: { settings: { type: "object" properties: { data: { type: "string" description: "The data that has been backed up, encrypted for security." } } } } } }