Codychat Addons
Installing CodyChat addons varies by developer, but 90% follow the "Drop-in" method. Here is the standard workflow:
Prerequisites:
Installation Steps:
Troubleshooting Installation:
After a chat ends, this addon triggers a 1-5 star survey with an optional comment box. Results are logged to a dashboard so you can track agent performance. codychat addons
// gif-addon/manifest.json
"id": "codychat-gif",
"name": "Giphy Commands",
"version": "1.0.0",
"hooks": ["onCommand", "onMessageRender"],
"permissions": ["fetch:https://api.giphy.com"]
// addon.js
CodyChat.addon.register(
commands:
gif:
usage: "/gif <search>",
handler: async (args, context) =>
const gifUrl = await fetchGiphy(args.join(" "));
context.sendMessage( type: "image", url: gifUrl );
);
Welcome to the home of
9 great telephony applications.
All of these programs run on all previous Windows & Windows
Servers versions:
32 bit and 64 bit.
Recently have been successfully tested on Windows 10
32 & 64 bit.
They are TAPI compliant programs
and can be used with any PC modems - modem dialers,
 telephony hardware cards (Dialogic,
Brooktrout,
CallURL), telephony hardware modems (way2call products)Â
and phone systems (PBX).
Users connected to Asterisk PBX server please read
this
Take advantage of the
free
21 days trial offer, after that the shareware registration is required.
For general user info see
Frequently Asked Questions.Â
Questions? Special requests? Please click
 We have selected modems (new and used)
for sale and can
assist with the modem installation.
Installing CodyChat addons varies by developer, but 90% follow the "Drop-in" method. Here is the standard workflow:
Prerequisites:
Installation Steps:
Troubleshooting Installation:
After a chat ends, this addon triggers a 1-5 star survey with an optional comment box. Results are logged to a dashboard so you can track agent performance.
// gif-addon/manifest.json
"id": "codychat-gif",
"name": "Giphy Commands",
"version": "1.0.0",
"hooks": ["onCommand", "onMessageRender"],
"permissions": ["fetch:https://api.giphy.com"]
// addon.js
CodyChat.addon.register(
commands:
gif:
usage: "/gif <search>",
handler: async (args, context) =>
const gifUrl = await fetchGiphy(args.join(" "));
context.sendMessage( type: "image", url: gifUrl );
);
|