User Rating

/5 (0)
/5 (0)

Free Trial

  • Yes (14 Days)
  • Yes (7 Days)

Product Features

  • check 2-Way Messaging
  • check Activity Dashboard
  • check Agent Interface
  • check Alerts/Notifications
  • check Auto-Dialer
  • check Automated Routing
  • check Automatic Call Distribution
  • check Blended Call Center
  • check Call Center Management
  • check Call Disposition
Show More
  • check 2-Way Messaging
  • check Activity Dashboard
  • check Agent Interface
  • check Alerts/Notifications
  • check Auto-Dialer
  • check Automated Routing
  • check Automatic Call Distribution
  • check Blended Call Center
  • check Call Center Management
  • check Call Disposition
Show More

Screenshots

View Screenshots

Platform

Desktop

Mobile

Desktop

Mobile

Support

  • Phone
  • Email
  • Live Chat
  • Online (Ticket)
  • Business Hours
  • Phone
  • Email
  • Live Chat
  • Online (Ticket)
  • Business Hours

Deployment

  • check Cloud Hosted
  • close Hybrid
  • close On Premise
  • close Any
  • check Cloud Hosted
  • close Hybrid
  • close On Premise
  • close Any

Payment

  • check Yearly
  • check Monthly
  • close Onetime(Perpetual License)
  • close Transaction
  • check Yearly
  • check Monthly
  • check Onetime(Perpetual License)
  • close Transaction

Resources

  • check Help Guides
  • check Video Guides
  • check Blogs
  • check Webinars
  • close Infographics
  • close Case Studies
  • close Whitepapers
  • close On-Site Training
  • check Help Guides
  • check Video Guides
  • check Blogs
  • close Webinars
  • close Infographics
  • close Case Studies
  • close Whitepapers
  • close On-Site Training

Target Audience

  • check Personals
  • check Startups
  • check SMEs
  • check Agencies
  • check Enterprises
  • check Personals
  • check Startups
  • check SMEs
  • close Agencies
  • close Enterprises

Language

  • check English
  • check English

Video

'; } } video += ''; $('.video_value_' + dummyMe).html(video); // product_plan var productPlanArray = response.software_details_array[0].software_product_plan; var product_plan = ''; $.each(productPlanArray, function(i) { product_plan += '
'+productPlanArray[i].product_plan+'
'+productPlanArray[i].currency+' '+productPlanArray[i].price+'
'+productPlanArray[i].unit+'
'; return false; }); $('.product_plan_value_' + dummyMe).html(product_plan); $('.software_value_'+dummyMe+',.user_rating_value_'+dummyMe+',.free_trial_value_'+dummyMe+',.product_feature_value_'+dummyMe+',.screenshot_value_'+dummyMe+',.platform_value_'+dummyMe+',.support_value_'+dummyMe+',.deployment_value_'+dummyMe+',.payment_value_'+dummyMe+',.resources_value_'+dummyMe+',.target_audience_value_'+dummyMe+',.language_value_'+dummyMe+',.video_value_'+dummyMe+',.product_plan_value_'+dummyMe+'').removeClass("d-none"); } }); }); for (var i = 0; i <= 3; i++) { // For overall_rating var overall_rating = $('#rate_id_' + i).data("rating"); $('#rate_id_' + i).rateYo({ starWidth: "20px", rating: overall_rating, readOnly: true, ratedFill: "#ffba00" }); var mobile_overall_rating = $('#rate_id_mobile_' + i).data("rating"); $('#rate_id_mobile_' + i).rateYo({ starWidth: "20px", rating: overall_rating, readOnly: true, ratedFill: "#ffba00" }); } }); function displayFeatures(software_id) { var offset = $("#offset_" + software_id).val(); var limit = $("#limit_" + software_id).val(); $.ajax( { url: 'https://www.techimply.com//software/getfeatures', data: { 'software_id': software_id, 'offset': offset, 'limit': limit }, dataType: 'json', success: function(response) { var html = ''; let category_features = []; if (response.category_features == '' || response.category_features == null) { } else { let arr = response.category_features; let answer = arr.split(','); answer.forEach(function(obj) { category_features.push(parseInt(obj, 10)); }); } var features_length = response.get_all_features.length; if (features_length > 0) { for (var i = 0; i < features_length; i++) { if (response.get_all_features[i].features_id != '') { if (category_features.includes(response.get_all_features[i].features_id)) { html += '
  • check' + response.get_all_features[i].features_name + '
  • '; } else { html += '
  • close' + response.get_all_features[i].features_name + '
  • '; } } } $(".disp_features_" + software_id).append(html); $(".disp_features_" + software_id).show(); var new_offset = parseInt(limit) + parseInt(offset); $("#offset_" + software_id).val(new_offset); if (features_length < 10) { $("#show_more_" + software_id).hide(); } } } }); } function displayFeaturesMobile(software_id) { var offset = $("#mobile_offset_" + software_id).val(); var limit = $("#mobile_limit_" + software_id).val(); $.ajax({ url: '/software/getfeatures', data: { 'software_id': software_id, 'offset': offset, 'limit': limit }, dataType: 'json', success: function(response) { var html = ''; let category_features = []; if (response.category_features == '' || response.category_features == null) {} else { let arr = response.category_features; let answer = arr.split(','); answer.forEach(function(obj) { category_features.push(parseInt(obj, 10)); }); } var features_length = response.get_all_features.length; if (features_length > 0) { for (var i = 0; i < features_length; i++) { if (response.get_all_features[i].features_id != '') { if (category_features.includes(response.get_all_features[i].features_id)) { html += '
  • check' + response.get_all_features[i].features_name + '
  • '; } else { html += '
  • close' + response.get_all_features[i].features_name + '
  • '; } } } $(".disp_features_mobile_" + software_id).append(html); $(".disp_features_mobile_" + software_id).show(); var new_offset = parseInt(limit) + parseInt(offset); $("#mobile_offset_" + software_id).val(new_offset); if (features_length < 10) { $("#show_more_mobile_" + software_id).hide(); } } } }); }