script

  1. Brandan Hermo

    Video Calls on Windows App

    We have clients who need to run scripts during video calls but can't because the Windows app doesn't currently support video (only audio calls) But the VIDEO button that appears in the interface, it's disabled at the moment. Is there any estimate for when this feature will be available? The...
  2. Prevent dialling of internal extensions at the IVR/digital receptionist

    Hi, We have a requirement to prevent the dialling of any 4 digit internal extension from an IVR menu. I'll explain further. The system is in a hotel, and callers to the hotel are being presented with the usual IVR options to choose from (1 for Reception, 2 for Restaurant, etc etc) which is...
  3. Is this situation possible?

    I have the following situation in 3cx: there is a single phone number and 5 extensions: 102,103,104,105,106. when 105 calls a phone number and that person doesn't answer, if he calls back on that single phone number (0123456789 for instance) it should redirect the call to extension 105. How can...
  4. nicolasGa

    Call Processing Script - Multiple Script assign to one ressource

    Hi, Is there a way to assign several script to one ressource (Trunk / DID) ? And maybe have an order for each script associated. If not, is this something that is planned for near future ? Thx,
  5. V20 - calling Bash script on incoming calls is broken

    Hi, we used to have a functionality which was working fine but after V20 upgrade we are not able to edit the entry at 'Call Handling' that was responsible for that. When we create new entry there is nowhere to specify that script although it exists in database in 'dnprop' table 1358 | 50...
  6. Mister VoIP NL

    Get CSV column as variable to dial

    Hi All, I want to route calls based on incoming call number (CID) and then dial a number attached to this number in the same CSV file. I can route the calls based on incoming number but then I want to transfer to a number accordingly..... This is the C# script using System.Xml...
  7. Integration to Zoho CRM

    Hi all, We have recently opened the API connection between our 3CX management console and our Zoho platform of which I have successfully authorised the token and can see that there are API connection credits being registered as traffic. What isnt working is the physical logging of activities...
  8. Debian dns failover script

    Hi all, is there any linux script for dns failover like DNSwindows.bat?
  9. Cristian Ancines

    Solved FailOver Scripts

    Hi community For several days I have tried to execute some scripts when my passive failover takes control, but I have not been able to execute any. I have followed the link: https://www.3cx.com/community/threads/failoverscripts-in-linux.57407/#post-240011 without a successful result. out...
  10. Automated outgoing call for data collection

    We want to automate outgoing calls to collect data from our clients. Calls are currently made by an operator. The majority of calls are really simple and automating these will free up operator time for the more complex calls. I'm looking at what options are available for automated, scripted...
  11. BrechtD

    Connecting 3CX Call Flow Designer app to MySql DLL not found

    Hello everyone I am creating an external script to let my call flow designer application connect to a MySql database. I had to add some dependencies of which MySql.Data.dll is one of them. I added this dll and it's dependencies to the /usr/lib/3cxpbx folder (my 3CX server is running on a Debian...
  12. Run Script on call End

    I can see how you can run a script on incoming call (eg to open a crm page based on the number of the incoming call) but I need to be able to run a script when a call ends. We want to record the end time of the call in our application so that the call scheduling application that initiates the...
  13. C# Script invoking another dll

    Hello, I am trying execute an external C# script: using VAD.Monkey.Core; namespace VAD.Monkey { public class InvokeSomething { public int InvokeGetData(int data) { return DoSomething.GetNumber(data); } } } As you can see the method...