Skip to main content
POST
/
api
/
public
/
whatsapp
/
message
/
session
Send a free-form WhatsApp session message
curl --request POST \
  --url https://api.vambe.me/api/public/whatsapp/message/session \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '
{
  "message": "<string>"
}
'
const options = {
method: 'POST',
headers: {'x-api-key': '<x-api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({message: '<string>'})
};

fetch('https://api.vambe.me/api/public/whatsapp/message/session', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://api.vambe.me/api/public/whatsapp/message/session"

payload = { "message": "<string>" }
headers = {
"x-api-key": "<x-api-key>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)

Headers

x-api-key
string
required

API key needed to authorize the request

Body

application/json

The session message payload

message
string
required

Free-form text body to send inside the active 24h session

Minimum string length: 1
contact_id
string<uuid>

Vambe contact id to send the message to

Pattern: ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
phone
string

Recipient phone number, used when contact_id is not provided. Keep an explicit "+" for numbers in a different country than the sender

reply_message_id
string

Provider message id to quote when replying

from_phone_number
string

Business WhatsApp number to send from. Required when targeting by "phone" and the account has more than one WhatsApp number

type
enum<string>
default:text

Message type. Only "text" is supported for now

Available options:
text
pause_assistant
boolean
default:true

Pause the AI assistant for this contact (human handoff)

Response

Message accepted for delivery.