Search results

  1. CFD - Logging question

    The web API idea is great, i think that would work the best long term, problem is I am an absolute newbie when it comes to programming. I will hovewer try to figure it out !
  2. CFD - Logging question

    could you guide me on how to get the result you had shown me in your csv?
  3. CFD - Logging question

    mm that could work. I have managed to get my hands on the logs finally, had to download support info to get it, would love to find a better way to do that. Or at best configure a csv parser that does it so that i could work with the data so much more efficiently
  4. CFD - Logging question

    Writing to a csv would be wonderful. I am trying to log whenever someone uses specific options in my menu to see whether those are popular, and also whenever a user goes through the flow and chooses to dial an extension to our provider rather than going through the normal forwarding channels.
  5. CFD - Logging question

    Hi, I am completely new when it comes to 3cx but i did manage to make a somewhat working CFD flow. I would now like to receive logs (in 3cx) when our users choose various options in the menu. Currently I have it set in a way where logger component triggers when the user selects for example...
  6. CFD Issues - session.ani

    Yeah that is what I thought. Thanks so much for all the help !
  7. CFD Issues - session.ani

    That worked ! thank you so much ! I am now wondering if i can parse the buffer into a menu component, or do i just have to create a bunch of conditionals that branch out to different options using user input ?
  8. CFD Issues - session.ani

    Great, thanks ! I will experiment
  9. CFD Issues - session.ani

    how would i implement the c# script? would it be another component that would lead into a condition table before transfer?
  10. CFD Issues - session.ani

    Gotcha, thank you for that. I have ended up just generating extensions for all the connections and resting my case! And since I am already changing topics of this. I have found one last issue that I need your help with. IT is regarding this comment...
  11. CFD Issues - session.ani

    It is an internal number that I don't have extension for.
  12. CFD Issues - session.ani

    this is how it looks in my script TransferComponent transferComponent18 = new TransferComponent("transferComponent18", callflow, myCall, logHeader); transferComponent18.DestinationHandler = () => { return Convert.ToString(+18088888888); };
  13. CFD Issues - session.ani

    Thank you, that worked. Would you be able to help me with my other issue, which is transferring calls not working? I assumed it was because my phone number was not passed properly - but since i managed to get the http request for SMS working properly - I tried even the "make a call" widget...
  14. CFD Issues - session.ani

    How can I input a string into the expression? Just as an extra piece of info - this worked with a static number, it didn't when I switched to the variable in place of "To=" for session.ani
  15. CFD Issues - session.ani

    Hello all, this is my first post here (yay). I am setting up a CFD for our business and would love to mainly do two things - transfer a call and send an http request to twilio to send a message to the caller for after hours solution. Neither of those things were currently accomplished and i am...