Search results

  1. No way to resend welcome email without resetting SIP credentials

    Possible only with a 3CX Config API / xapi REST call atm.
  2. Sick call and transfer

    Hello @Chris INDY my question is: is it important that the nurse call system actually reaches the "nurses" call group and plays audio (because it's a kind of intercom and don't have to interrupt by a queue) or is it enough if the "nurses" call group only sees that a call is coming from a...
  3. Solved Yealink T54W SBC firmware

    The 96.86.0.118 and the latter 3CX 96.87.0.16: yes
  4. Solved Yealink T54W SBC firmware

    read: https://support.yealink.com/document-detail/3e728045380049d0a7548589f6a6599b?title=h8rrc4zi0hz8 Update manual to 96.86.0.118 and later to 96.87.xx
  5. [CFD] V20 Script logic: Toggle Forwarding status and update Mobile Number via DTMF

    Your logic requires the CFD code blocks GetExtensionStatus, CreateCondition, UserInput or PromptPlayback (with DTMF input, your choice; you can try both yourself), SetDNProperty and SetExtensionStatus. All of this in the correct combination with the correct parameters and it will work. The...
  6. [CFD] V20 Script logic: Toggle Forwarding status and update Mobile Number via DTMF

    No need for that. This can be done with CFD standard code blocks. Change the mobile number for the extension with the CFD code block Set DN Property, Extension (the number) as string, the Property Name "MOBILENUMBER" (even a string) and your mobile number as Property Value as string in quotation...
  7. How to change call handling on weekends.

    @garrick.cobcroft@gsconsul Honestly, if you're not very familiar with CFD, why not use the 3CX built-in tools like before? In such cases we've always set up a dummy extension which receives the DID. This dummy extension has its own business and break times and automatically switches its status...
  8. Change extension username via CFD

    This is possible: Use a CFD app or a call script that queries one or more 3CX entities (extension, IVR, RG, queue, etc.) or a department or the department assignment within the app itself and then announces the status of the department(s) to the caller of the program. We have built something...
  9. Departments and holidays

    or a call script (for each destination) - example for extension 830 as default destination (with department and holidays ...) and route to 805 on a holiday: #nullable disable using CallFlow; using System; using System.Threading.Tasks; using TCX.Configuration; using TCX.PBXAPI; namespace dummy {...
  10. Departments and holidays

    Yes, because: the original 3CX holiday.cs sees only the first destination (and the department of it) for the call on the trunk - which is in your case the IVR - and plays holiday audio if needed. Please explain how a script triggered by the trunk trigger should know what happens after the IVR...
  11. 3cx callback

    Admin / System / System Prompts / Manage System Prompts make a copy, edit every audio (the three dots on the right side) or edit all at once, assign the it to the department (and / or user / mailbox), test it, post it here when succesful done better not
  12. 3cx callback

    And if that works well, please post it here in the forum for others.
  13. Caller Number Displayed Not Caller Name

    yes, it's possible via the xapi (but to change the used template itself is not recommended even if it works) Better: export all DID, their destinations and names (Admin / Reports / Inbound Rules), format it in a proper CSV (only this three columns without the header and in the right order) and...
  14. Departments and holidays

    no: https://www.3cx.com/community/threads/mass-chat-log-export.133600/post-654335
  15. Mass Chat Log Export

    @Mike Hammett But only if it's not desired that the 3CX sysowner data be used for this. The XAPI can also be used on a 3CX Pro system - even a hosted one - using the sysowner login credentials. *like*
  16. Change extension username via CFD

    @Hugo_Sycom ...or the CFD app, which changes the username, searches for every 3CX user on every connected IP phone in all BLFs to see if this dummy user exists and then provisions that phone as well. This only works in small environments. Another problem is that a phone can only be provisioned...
  17. Caller Number Displayed Not Caller Name

    because ParameterIn FromUserPart exists twice valid xml syntax, wrong xml content, your validator probably doesn't see that as incorrect With 3CX v20u8 comes Twilio (Auto-setup) Template in version 150005 - use this for customization. ^ @alext0616 @KT Tech ...
  18. Departments and holidays

    @VoIPTools free tool is really nice There is also the approach of setting all of this up yourself via the xapi and @GMark has written a GUI for that.
  19. 3CX Modifiy Trunk Patton

    Do you have a valid import CSV file with DID, destination and name? If so, all data will be imported (create DID, assign it to the destination, set the name). If a DID already exists then it throws an error. I recommend editing the trunk via the xapi.
  20. 3CX automatic change of numbers weekly

    Yes, pjsua is a good optio. You just have to build it yourself. If it’s sufficient for you to start the call from a remote Windows computer, there are also SIP clients that can be launched via the command line with parameters and thus automated. We use almost exclusively Debian 3CX. In the...