Skip to main content
PATCH
/
v1
/
senders
/
{senderId}
/
profile
Update WhatsApp Business profile
curl --request PATCH \
  --url https://api.zavu.dev/v1/senders/{senderId}/profile \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "about": "Succulent specialists!",
  "description": "We specialize in providing high-quality succulents.",
  "email": "contact@example.com",
  "websites": [
    "https://www.example.com"
  ],
  "vertical": "RETAIL"
}
'
{
  "success": true,
  "profile": {
    "about": "Succulent specialists!",
    "address": "1 Hacker Way, Menlo Park, CA 94025",
    "description": "At Lucky Shrub, we specialize in providing a diverse range of high-quality succulents.",
    "email": "contact@example.com",
    "profilePictureUrl": "https://pps.whatsapp.net/v/t61.24...",
    "websites": [
      "https://www.example.com/"
    ],
    "vertical": "UNDEFINED"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

senderId
string
required

Body

application/json

Request body to update WhatsApp Business profile.

about
string

Short description of the business (max 139 characters).

Maximum string length: 139
address
string

Physical address of the business (max 256 characters).

Maximum string length: 256
description
string

Extended description of the business (max 512 characters).

Maximum string length: 512
email
string<email>

Business email address.

websites
string<uri>[]

Business website URLs (maximum 2).

Maximum array length: 2
vertical
enum<string>

Business category for WhatsApp Business profile.

Available options:
UNDEFINED,
OTHER,
AUTO,
BEAUTY,
APPAREL,
EDU,
ENTERTAIN,
EVENT_PLAN,
FINANCE,
GROCERY,
GOVT,
HOTEL,
HEALTH,
NONPROFIT,
PROF_SERVICES,
RETAIL,
TRAVEL,
RESTAURANT,
NOT_A_BIZ

Response

Profile updated successfully.

success
boolean
required
profile
object
required

WhatsApp Business profile information.