Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

menu

Приложение позволяет сгенерировать меню навигации, где выбор будет сохранен в переменную

Code Block
{
    "menu": {
        "text": "Выберите пункт меню",
        "set": "${onClick.Menu}",
        "variable": "${response}",
        "buttons": [
          [
             {
                "text": "💰 Кредиты",
                "type": "reply"
             },
             {
                "text": "⚙️ Главное меню",
                "type": "reply"
             }
          ],
          [
             {
                "text": "💰 Депозиты",
                "type": "reply"
             },
             {
                "text": "🧙‍♂️ Помощь оператора",
                "type": "reply"
             }
          ]
        ]
    }
}

broadcastChatMessage

Предоставляет возможность отправить сообщение через Chat Gateway

Code Block
{
    "broadcastChatMessage": {
        "peer": [
            "${destination}"
         ],
         "profile": {
             "id": "13"
         },
         "text": "${SMS}",
         "type": "text"
    }
}

recvMessage

Сохранить в переменную текстовое сообщение, полученное от пользователя в рамках активного диалога

Code Block
{
    "recvMessage": {
        "set": "response",
        "timeout": 60
    }
}

sendText

Приложение позволяет отправить текстовое сообщение в рамках активного диалога

Code Block
{
    "sendText": "Приветствую, ${Name}!"
}

sendFile

Приложение позволяет отправить ссылку на файл в рамках активного диалога

Code Block
{
	"sendFile": {
		"url": "${file_link}"
	}
}

sendEmail

Отправка Email сообщения

Code Block
{
	"sendEmail": {
		"cc": [
			"[email protected]"
        ],
        "attachment": {
             "files": [
                 69317,
                 69314
             ]
        },
        "from": "\"Bot Name\" <[email protected]>",
        "message": "<H3>Turn on SMS</h3>\n<b>Creditcard</b>: ${Creditcard[0]} <i>***</i> ${Creditcard[1]}",
        "smtp": {
             "auth": {
             	"password": "pass",
                "user": "[email protected]"
             },
             "port": "587",
             "server": "smtp.mail.com",
             "tls": true
         },
         "subject": "[webitel](${caller_id_name}) Email notification",
         "to": [
             "${customer_email}"
         ]
    }
}

getEmail

Code Block
{
        "getEmail": {
            "email": {
                "id": "420",
                "message_id": "or message_id"
            },
            "set": {
                "vbody": "body",
                "vcc": "cc",
                "vfrom": "from",
                "vhtml": "html",
                "vin_reply_to": "in_reply_to",
                "vreply_to": "reply_to",
                "vsender": "sender",
                "vsubject": "subject",
                "vto": "to",
                "files": "attachments"
            }
        }
}

classifier

Классификатор типов ответов клиента

Code Block
{
        "classifier": {
            "cluster": {
                "ymy": [
                    "даgood value",
                "будет",
]
            },
            "input": "такmy good value",
            "set": "my_var",
            "phraseSearch": "оплачуtrue",
            ]"matchType": "part"
        },
        "inputbreak": "${google_transcript}"false,
        "settag": "answer_def39-classifier-custom-tag"
    }
}


Messaging applications

Table of Contents
minLevel3