Update business profile
Update the WhatsApp Business profile. All fields are optional; only provided fields will be updated. Constraints: about max 139 chars, description max 512 chars, max 2 websites.
API key authentication - use your Zernio API key as a Bearer token
In: header
WhatsApp social account ID
Short business description (max 139 characters)
length <= 139Business address
Full business description (max 512 characters)
length <= 512Business email
emailBusiness websites (max 2)
items <= 2Business category (e.g., RETAIL, ENTERTAINMENT, etc.)
Handle from resumable upload for profile picture
Response Body
application/json
application/json
import Zernio from '@zernio/node';const zernio = new Zernio({ apiKey: process.env.ZERNIO_API_KEY });const { data } = await zernio.whatsapp.updateWhatsAppBusinessProfile({ body: { accountId: 'account_abc123', },});console.log(data);{
"success": true,
"message": "Business profile updated successfully"
}{
"error": "Unauthorized"
}Get business profile GET
Retrieve the WhatsApp Business profile for the account (about, address, description, email, websites, etc.).
Upload profile picture POST
Upload a new profile picture for the WhatsApp Business Profile. Uses Meta's resumable upload API under the hood: creates an upload session, uploads the image bytes, then updates the business profile with the resulting handle.