User Guides
...
Interactive Voice Application ...
Backend Configurations for Voice
4 min
backend configurations for voice there are several configurations through which the user (who has administrative privileges over the server os running ameyo application server) is able to optimize the ameyo and increase it's usage according to the organizational need for the voice only setup all of these queries will be executed for the product database execute the following command to login to the database psql u postgres \<ameyo database name> the database name in the above command is the name of the database which is configured to run the appserver for example, ameyodb is the product database in our test case enable voicelog recordings for voice in ameyo, all the call that have been made by the agents are recorded these recorded files are known as voicelogs the administrator can play or download these voicelogs to listen the conversation between the agent and customer disable dialing of alphabet strings execute the following query to disable the dialing of alphabet string through dialing screen of the agent insert into server preference store (context type ,context id,key,value) values ('contactcenter','\<contact center id>','shouldallowalphabetsinphone','true'); resolve customers using last 10 digits of phone number there are multiple cases when the customers' phone numbers are received in different formats, such as with country code, without country code, with zero (0), or without zero (0) even if a customer's number contains more than 10 digits and the first 2 or 3 digits represent the country code, still the method to resolve the customer for whatsapp chat was considering only the first 10 digits this was making the customer's phone number unresolvable in such a case, a backend configuration, named "phonedigitstobeconsideredfromend" can be done, which allows the system to consider only the last 10 digits of the customer's phone number it means that the system will read the phone number starting from the end to the previous 10 digits for example suppose the phone number of the customer is "9876789812" now, the customer's phone number appears like "+919876789812", "09876789812", and "9876789812" thus, the system can assume this phone number as three different phone numbers but with this configuration, only the last 10 digits will be calculated, which is the "9876789812" execute the following query insert into system configuration parameter(name,type,value,default value) values ('phonedigitstobeconsideredfromend','string',10','10');
Have a question?
Our knowledgeable support team and an awesome community will get you an answer in a flash.
To ask a question or participate in discussions, you'll need to authenticate first.