Skip to main content
POST
/
messages
curl --request POST \
  --url https://apis.vectalk.com.br/messages \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "messaging_product": "whatsapp",
    "to": "5511999999999",
    "type": "audio",
    "audio": { "link": "https://example.com/audio.ogg" }
  }'
messaging_product
string
default:"whatsapp"
required
to
string
required
type
string
default:"audio"
required
audio
object
required
curl --request POST \
  --url https://apis.vectalk.com.br/messages \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "messaging_product": "whatsapp",
    "to": "5511999999999",
    "type": "audio",
    "audio": { "link": "https://example.com/audio.ogg" }
  }'