For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
CommunitySign Up
HomeGuidesVerbsAPI ReferenceSelf-HostingClient SDKsTutorialsChangelog
HomeGuidesVerbsAPI ReferenceSelf-HostingClient SDKsTutorialsChangelog
    • Introduction
  • REST Call Control
  • REST Platform Management
  • Webhooks
    • GETNew Call
    • POSTNew Call
    • POSTClient Authentication
    • POSTNew Client Tool Request
  • Websocket API
      • Overview
      • session:new
      • session:redirect
      • session:reconnect
      • call:status
      • verb:hook
      • verb:status
      • llm:event
      • llm:tool-call
      • tts:tokens-result
      • tts:streaming-event
      • dial:confirm
      • ack
      • command
      • llm:tool-output
      • llm:update
      • tts:tokens
      • tts:flush
      • tts:clear
      • WSScallControl
LogoLogo
CommunitySign Up
Websocket APICall Control

ack

Was this page helpful?
Edit this page
Previous

command

Next
Built with

websocket server => jambonz

An ack message is sent by the websocket server to jambonz in response to a session:new or verb:hook message. The ack message may optionally contain a payload of new instructions for jambonz to execute.

propertytypemeaningrequired
typestring “ack”indicates this is an ack messageyes
msgidstringreferences the message this is in reply toyes
dataarrayarray of jambonz verbs to executeno
1{
2 "type": "ack",
3 "msgid": "1cvh3MNHh1xrJaHmnitqA1",
4 "data": [
5 {
6 "text": "Hi there and welcome!",
7 "verb": "say"
8 }
9 ]
10}