Skip to main content
POST
/
business-profile
Atualizar Perfil da Empresa
curl --request POST \
  --url https://apis.vectalk.com.br/api/business-profile \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "about": "<string>",
  "address": "<string>",
  "description": "<string>",
  "email": "<string>",
  "websites": [
    {}
  ],
  "vertical": "<string>",
  "profile_picture_handle": "<string>"
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.vectalk.com.br/llms.txt

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

Requer token de instância associado ao número de telefone. O número é resolvido automaticamente pelo token — não é necessário informar o phone-number-id.

Parâmetros

Body

about
string
Texto “sobre” (máx. 139 caracteres).
address
string
Endereço físico.
description
string
Descrição da empresa.
email
string
E-mail de contato.
websites
array
URLs do site (máx. 2).
vertical
string
Segmento: RETAIL, FINANCE, HEALTH, HOTEL, RESTAURANT, EDUCATION, entre outros.
profile_picture_handle
string
Handle de upload da foto de perfil (obtido via Resumable Upload API).

Exemplo

{
  "about": "Vendemos os melhores produtos",
  "address": "Av. Paulista, 1000 - São Paulo, SP",
  "email": "contato@loja.com",
  "websites": ["https://loja.com"],
  "vertical": "RETAIL",
  "profile_picture_handle": "4::aW1hZ2UvcG5n..."
}