Skip to main content
POST
/
api
/
v1
/
whatsapp
/
label
/
create
curl -X POST \
  'https://app.wizebot.com.br/api/v1/whatsapp/label/create' \
  -d 'apiToken=SUA_API_KEY_AQUI' \
  -d 'phone_number_id=SEU_PHONE_NUMBER_ID' \
  -d 'label_name=Nova Etiqueta'
{
  "status": "1",
  "message": "Label has been created successfully."
}

Documentation Index

Fetch the complete documentation index at: https://help.wizebot.com.br/llms.txt

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

Criar Etiqueta

Esta API permite criar uma nova etiqueta na sua conta do WhatsApp Business.

Endpoint da API

Parâmetros

apiToken
string
required
Sua chave de API
phone_number_id
string
required
Seu número de telefone do WhatsApp
label_name
string
required
Nome da etiqueta

Exemplo de Solicitação

curl -X POST \ 
'https://app.wizebot.com.br/api/v1/whatsapp/label/create' \
-d 'apiToken=API-KEY' \
-d 'phone_number_id=PHONE-NUMBER-ID' \
-d 'label_name=LABEL-NAME'

Exemplo de Resposta

{
  "status": "1",
  "message": "Label has been created successfully."
}

Teste a API

Para testar esta API, você precisará de sua chave API (apiToken) que pode ser encontrada no painel da WizeBot em Configurações > API.
curl -X POST \
  'https://app.wizebot.com.br/api/v1/whatsapp/label/create' \
  -d 'apiToken=SUA_API_KEY_AQUI' \
  -d 'phone_number_id=SEU_PHONE_NUMBER_ID' \
  -d 'label_name=Nova Etiqueta'
{
  "status": "1",
  "message": "Label has been created successfully."
}