Heads Up :
The post you are writing will appear in a public forum. Please ensure all content is appropriate for public consumption. Review the employee guidelines for the community here.
I'm trying to use the native Rest client in studio.I'm able to get everything from the JSON response except when there is a child element in the json response that is an array type. I need to be able to convert the array to a string value, can I use ...
Disabling Ringback for SIP Dialer During transfer to agent - This workaround is only applicable CUCM 8.5 and above. History I ran into a problem when deploying the UCCE 8.5 SIP Dialer ( Outbound Option ) in which during the customer hand-off to t...
Has one had any known issues deploying NICE CR integrated with UCCE 7.2 (Cti) and UCM 5.1.2. Running native skinny, G.711. 100% call recording. Busy Hour Call volume = 20K. I'm getting ready to deploy and would like to avoid any hurdles if possible ...
Today I was working an issues that involved a single hosting box that was taking an abnormal number of connections, well the normal automated security systems kicked up and the XLATE tables on the FWLSM started to fill up and shun connections after c...
You would need to loop through each array element and look for the element with the property your interested invar inputJSON= Data.Element.Rest_Client_01.response_body;
var phoneNumbers=inputJSON.phoneNumbers;When dealing with raw JSON I don't see th...
The call back to the customer is treated just as any other call after the callback timer has elapsed. Fortunately the formula to set the callback timer is within your control.There are several systems that can produce this functionality however they ...
Pretty confident the JS interpreter is ES5 or earlier, so constants, arrow functions, essentially all the modern luxuries of JS need not apply. I also do not know how much memory is dedicated to the JS interpreter so use caution and large/complex log...
Found Solution //Get JSON Data from Elementvar dataObj = JSON.parse({Data.Element.Rest_Element.response_body}); //Data Validation for Array Field Typevar value = function (arr){ if (arr.length > 1) { // If array has more than one value evaluate a...