DocsAPI ReferenceSend a chat message as the bot
POST
/api/v1/bots/{bot_id}/chatPosts a message in the meeting's chat panel under the bot's display name. Requires `voice_agent_enabled: true` and bot status `active`.
Path Parameters
bot_idstringrequirede.g. "550e8400-e29b-41d4-a716-446655440000"Bot UUID.
Headers
X-API-KeystringrequiredYour workspace API key.
Content-TypestringrequiredMust be `application/json`.
Request Body
application/json
messagestringrequiredChat message text to send.
Example: "I'll be taking notes for this meeting."
Responses
202Chat message sent.
404Bot not found or not currently active.
Try it live
API Configurationglobal · all endpoints
POST
https://api.serveka.com/api/v1/bots/550e8400-e29b-41d4-a716-446655440000/chatPath Parameters
Request Body
curl -X POST 'https://api.serveka.com/api/v1/bots/550e8400-e29b-41d4-a716-446655440000/chat' \
-H "Content-Type: application/json"\
-d '{
"message": "I'll be taking notes for this meeting."
}'