Jump to content

Enzo Matrix

Members
  • Posts

    47
  • Joined

  • Last visited

Posts posted by Enzo Matrix

  1. Great to see that SMS is working again.

    I have also got Alpha numeric sender id's working too with Twilio which is good.

    My problem is that regardless of what I put in the Vodia SMS ANI field, it converts it all to lowercase.  I know that the API for Twilio accepts any case, so is it possible to get this fixed?

     

    For example, in the ANI field it shows 'MyComp' but the actual api call is sending it as 'mycomp'.

  2. Hi there,

    My Microsoft Store updated my Vodia app to version 3.6.0 and now it is having some issues.

    Here is a list of things that I have noticed:

    • Profile button doesn't show information, avatar etc
    • None of the buttons under the profile drop down work
    • ACD only shows a single group

    I am sure there are more issues, but that's all I have found at the moment.

    Two screenshots - one showing the app, other showing the web interface

    Anyone else having these issues?

    Vodia_Web_App.png

    Vodia_Windows_App.png

  3. It appears that Twilio now requires me to have a 'Message Service' in programmable messaging to send.

    The Twilio API service now has 'messagingServiceSid' tag that seems to be required (which you get by creating a 'Messaging Service' under programmable messaging - here is the code from Twilio which I have tested and it works:

    // Update the path below to your autoload.php, 
    // see https://getcomposer.org/doc/01-basic-usage.md 
    require_once '/path/to/vendor/autoload.php'; 
     
    use Twilio\Rest\Client; 
     
    $sid    = "TWILIO ACCOUNT API KEY HERE"; 
    $token  = "[AuthToken]"; 
    $twilio = new Client($sid, $token); 
     
    $message = $twilio->messages 
                      ->create("+PHONE_NUMBER_HERE", // to 
                               array(  
                                   "messagingServiceSid" => "MESSAGING_SERVICE_SID_HERE",      
                                   "body" => "This is a test" 
                               ) 
                      ); 
     
    print($message->sid);

     

    What would be AMAZING would be if Vodia was updated to allow a seperate MessagingServiceID per domain!

    I have been able to test this using my own PHP code, and it would be a very simple way for Twilio users to be able to separate out their services for reporting.

    From what I can see (and I may be wrong):
    PBX Settings need: Twilio API Key and Twilio API Secret
    Domain Settings need: Twilio Messaging Service ID

    When sending the SMS request to Twilio, Vodia pulls the API information from the PBX, and the service id from the domain - in Twilio, all the SMS's sent are seperated into their service IDs, allowing for me to charge for them accordingly.

  4. Is it possible to have the application set at install to run as a service or something similar?

    A lot of my conversions from 3CX are rightfully saying that was a descent feature, that they install the app and it auto runs, and it is pretty much always logged in unless they tell it to logout.  With a PBX, you want this sort of functionality with your softphone.

  5. Hey team,

    We are using the Multitenant version of PBX.

    One of our selling points using Vodia over 3CX was that our customers can have their own branding and not 3CX all over the place.

    This generally works well, except in the apps. On the Android app and Windows app, our customers domains are picking up our company logo (the PBX logo) as opposed to their domain SVG files.

    Is this something that can be fixed at our end, or is this how the system works?

×
×
  • Create New...