Skip to main content
PUT
/
platforms
/
whatsapp
/
phone-numbers
/
{id}
/
business-profile
Update a WhatsApp Business Profile
curl --request PUT \
  --url https://api.social-api.ai/v1/platforms/whatsapp/phone-numbers/{id}/business-profile \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "about": "Reach us 9-5 weekdays.",
  "address": "1 Hacker Way, Menlo Park, CA",
  "description": "Acme Corp customer support.",
  "email": "support@acme.com",
  "profile_picture_handle": "4::aW1hZ2UvanBlZw==",
  "vertical": "RETAIL",
  "websites": [
    "https://acme.com"
  ]
}
'
{
  "error": {
    "code": "resource.not_found",
    "message": "Account not found",
    "meta": {}
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.social-api.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Prefix your API key with "Bearer ". Example: Authorization: Bearer sapi_key_...

Path Parameters

id
string
required

WhatsApp phone number platform ID (numeric ID, not the E.164 number)

Body

application/json

Profile fields to update

about
string

About is the profile tagline (max 139 characters).

Example:

"Reach us 9-5 weekdays."

address
string

Address is the business address (max 256 characters).

Example:

"1 Hacker Way, Menlo Park, CA"

description
string

Description is the business description.

Example:

"Acme Corp customer support."

email
string

Email is the contact email.

Example:

"support@acme.com"

profile_picture_handle
string

ProfilePictureHandle is a handle returned by the Resumable Upload API. Use this to change the profile picture; the picture URL is read-only.

Example:

"4::aW1hZ2UvanBlZw=="

vertical
enum<string>

Vertical is the business category.

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

"RETAIL"

websites
string[]

Websites lists the business websites (max 2).

Example:
["https://acme.com"]

Response

Profile updated