...
Send a Text message
Code Block | ||||
---|---|---|---|---|
| ||||
ctlive_contact.sendMessage("Hello world!").then( function (msgid) { console.log("Message sent", msgid); } ); |
...
Send an Hyperlink message
Code Block | ||||
---|---|---|---|---|
| ||||
ctlive_contact.SendLink("https://www.enghouseinteractive.it/").then (
function (msgid) {
console.log("Hyperlink message sent", msgid);
}
);
|
Notifies “is writing” agent status
Code Block | ||
---|---|---|
| ||
// The agent has started writing ctlive_contact.isWriting(true); // The agent has stopped writing ctlive_contact.isWriting(false); |