PUT
/
v1
/
channels
/
{channelID}
/
business-profile
Update WhatsApp Business profile
curl --request PUT \
  --url https://api.wazapin.com/v1/channels/{channelID}/business-profile \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "about": "<string>",
  "address": "<string>",
  "description": "<string>",
  "email": "<string>",
  "industry": "<string>",
  "vertical": "<string>",
  "websites": [
    "<string>"
  ]
}
'
{
  "data": {
    "status": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Session token or API key

Path Parameters

channelID
string
required

Channel ID

Body

application/json
about
string

Business about text

address
string

Business address

description
string

Business description

email
string

Business email

industry
string

Business industry

vertical
string

Business vertical

websites
string[] | null

Business websites (max 2)

Response

OK

data
object
required