action whatsapp_update_business_profile { label: "Update-Business-Profile" provider: whatsapp method: POST path: "/settings/business/profile" encoding: json input: { type: "object" required: ["address", "description", "email", "vertical", "websites"] properties: { address: { type: "string" description: "Address of the business\nMaximum of 256 characters" } description: { type: "string" description: "Description of the business\nMaximum of 256 characters" } email: { type: "string" description: "Email address to contact the business\nMaximum of 128 characters" } vertical: { type: "string" description: "Industry of the business\nMaximum of 128 characters" } websites: { type: "array" description: "URLs associated with business (e.g., website, Facebook page, Instagram)\nMaximum of 2 websites with a maximum of 256 characters each" items: { type: "string" } } } } output: { type: "object" additionalProperties: true } }