mirror of
https://github.com/jambonz/next-static-site.git
synced 2026-07-24 13:02:22 +00:00
4d9a0f844c
* reset yarn lock * ws docs * answering machine detection spec * amd updates * 0.7.6 release notes and articles * update transcribe options Co-authored-by: kitajchuk <bk@kitajchuk.com>
787 B
787 B
ack
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.
| property | type | meaning | required |
|---|---|---|---|
| type | string "ack" | indicates this is an ack message | yes |
| msgid | string | references the message this is in reply to | yes |
| data | array | array of jambonz verbs to execute | no |
{
"type": "ack",
"msgid": "1cvh3MNHh1xrJaHmnitqA1",
"data": [
{
"text": "Hi there and welcome!",
"verb": "say"
}
]
}