(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "ef67uoeyji");
Helpdesk
At INOV Cameroon, we believe great Helpdesk services, in turn, drive great customer experience. As a global partner to companies, we offer customized high-quality helpdesk services by providing certified Level 1 and Level 2 service desk agents 24.7.365.
- Fully customizable
- Lower service delivery costs
- Purely white label
- 24.7.365 support
- Faster Problem Resolution
- Qualified Techs
Let’s Talk!
Overview
The IT service desk is the heart of every business. Assuring high-quality customer and technical support and First Contact Resolution ( FCR) is the real key to success. Companies often struggle to meet the expectations from customers, due to the lack of technical expertise or shortage of team members to handle the volume tickets.
At INOV Cameroon, we help our customers by providing a 24.7.365 Service desk service solution which will help to address technical and FCR barriers by providing our trained service desk agents. With our team at the front-line response, you can enjoy higher levels of customer satisfaction and focus more on your growth.
Solution
Our certified techs act as an extension of your team and offer top-level service desk support services by attending the tickets using your RMM, PSA\Ticketing, and Phone systems. This eliminates the helpdesk outsourcing barriers and provides the highest First Contact Resolution (FCR) rates. We offer both Voice ( Phone) and Non-voice support models to cater to the customized needs of customers, and also to reduce service delivery costs associated.
The voice support package includes phone support capabilities with a “Neutral English/French accent”, delivered from Africa-based operation centers.
In non-voice Support, we use Email, chat, PSA\ Ticketing portals to provide seamless helpdesk services to MSPs. We work as an extension to your onsite team who are capable of taking inbound calls but need high-quality technical support options.
Helpdesk Package for Voice & Non-Voice
Our Helpdesk Packages
Care
- Level 1 Service Desk Tickets
- VPN & Wifi tasks
- Basic O365 Support
- User & Access Management tasks (Password reset, User permissions, Folder Access, etc)
Core
Everything from care and
- Advanced Service Desk support (Level 2)
- Exchange Server Mailbox Management
- Office 365 Management
- MDM support
Complete
Everything from core and
- Advanced Service Desk support (Level 3)
- Active Directory Server Administration
- Research & Root cause Analysis
- OneDrive and SharePoint Support
Custom
Pick what all you like from Care, Core & Complete and we will offer you that as an offering based on your business requirement.
Download our Helpdesk Brochure for a detailed description of each support packages and option.
Helpdesk support Brochure and package E-book
How We Onboard You
Appointing Point of
Contact
We assign a Business Success Manager who is with you every step of the way as a single point for better communication & clarity
Requirement
Analysis
We analyze the requirement raised by the customer to understand if it’s a Voice or Non-voice & ensure that we have everything we need to support you & your clients
Documentation &
Knowledge Transfer
We request access to your system & logins for a better understanding of your tool and processes & take necessary inputs from you to deliver a high-quality service
Go Live
Go Live
Once we are ready to go live, our management team constantly review the performance of our technician to ensure we meet your expectations
Please fill the form
$.ajaxSetup({
contentType: 'application/json'
});
$(document).ready(function(){
$('#nocForm').submit(function (e) {
e.preventDefault();
var mailid = $('#email').val();
var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;
if($("#g-recaptcha-response").val()==""){
$('.google_recaptcha_error').show();
}else{
$('.google_recaptcha_error').hide();
if(!(emailReg.test( mailid ))){
$('#mailid_val_error_msg').show();
$('#mailid_error_msg').hide();
}
else{
$('#mailid_val_error_msg').hide();
var domain_name = mailid.split("@");
var domain = domain_name[1].split(".");
let standard_domains = ['gmail','yahoo','google','outlook','msn','hotmail'];
if(true == standard_domains.includes(domain[0])){
$('#mailid_error_msg').show();
}
else{
$('#mailid_error_msg').hide();
data=[
{
"name": "firstname",
"value": $("input[name='firstname']").val(),
},
{
"name": "lastname",
"value": $("input[name='lastname']").val(),
},
{
"name": "company",
"value": $("input[name='company']").val(),
},
{
"name": "email",
"value": $("input[name='email']").val(),
},
{
"name": "country",
"value": $("input[name='country']").val(),
},
];
dataToHubspotNOC(data);
}
}
}
});
});
function dataToHubspotNOC(fields){
// Create the new request
var xhr = new XMLHttpRequest();
var url = 'https://api.hsforms.com/submissions/v3/integration/submit/8189631/01d3f58a-376c-4fb5-abb3-cc05941620cf'
// Example request JSON:
var data = {
"fields": fields,
"legalConsentOptions":{ // Include this object when GDPR options are enabled
"consent":{
"consentToProcess":true,
"text":"I agree to allow Example Company to store and process my personal data.",
"communications":[
{
"value":true,
"subscriptionTypeId":999,
"text":"I agree to receive marketing communications from Example Company."
}
]
}
}
}
var final_data = JSON.stringify(data)
xhr.open('POST', url);
// Sets the value of the 'Content-Type' HTTP request headers to 'application/json'
xhr.setRequestHeader('Content-Type', 'application/json');
xhr.onreadystatechange = function() {
if(xhr.readyState == 4 && xhr.status == 200) {
var result = xhr.responseText;
result =JSON.parse(result);
var text=result.inlineMessage; //console.log(text);
$('#resulthub').html(text); // $('#resulthub').css("display","block");
var pdfurls = $('#resulthub').find('a').attr('href');
var link=document.createElement('a');
document.body.appendChild(link);
link.href=pdfurls;
link.setAttribute("target", "_blank");
link.click();
$('#nocForm').trigger("reset");
$("#exampleModal").modal('hide');
//alert(xhr.responseText); // Returns a 200 response if the submission is successful.
} else if (xhr.readyState == 4 && xhr.status == 400){
alert(xhr.responseText); // Returns a 400 error the submission is rejected.
} else if (xhr.readyState == 4 && xhr.status == 403){
alert(xhr.responseText); // Returns a 403 error if the portal isn't allowed to post submissions.
} else if (xhr.readyState == 4 && xhr.status == 404){
alert(xhr.responseText); //Returns a 404 error if the formGuid isn't found
}
}
// Sends the request
xhr.send(final_data)
}
$.ajaxSetup({
contentType: 'application/json'
});
$(document).ready(function(){
$('#helpdeskForm').submit(function (e) {
e.preventDefault();
var mailid = $('#email').val();
var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;
if($("#g-recaptcha-response").val()==""){
$('.google_recaptcha_error').show();
}else{
$('.google_recaptcha_error').hide();
if(!(emailReg.test( mailid ))){
$('#mailid_val_error_msg').show();
$('#mailid_error_msg').hide();
}
else{
$('#mailid_val_error_msg').hide();
var domain_name = mailid.split("@");
var domain = domain_name[1].split(".");
let standard_domains = ['gmail','yahoo','google','outlook','msn','hotmail'];
if(true == standard_domains.includes(domain[0])){
$('#mailid_error_msg').show();
}
else{
$('#mailid_error_msg').hide();
data=[
{
"name": "firstname",
"value": $("input[name='firstname']").val(),
},
{
"name": "lastname",
"value": $("input[name='lastname']").val(),
},
{
"name": "company",
"value": $("input[name='company']").val(),
},
{
"name": "email",
"value": $("input[name='email']").val(),
},
{
"name": "country",
"value": $("input[name='country']").val(),
},
];
console.log(data);
dataToHubspotHelpdesk(data);
}
}
}
});
});
function dataToHubspotHelpdesk(fields){
// Create the new request
var xhr = new XMLHttpRequest();
var url = 'https://api.hsforms.com/submissions/v3/integration/submit/8189631/39e36377-91c8-44cd-b147-9cef0b5a5208'
// Example request JSON:
var data = {
"fields": fields,
"legalConsentOptions":{ // Include this object when GDPR options are enabled
"consent":{
"consentToProcess":true,
"text":"I agree to allow Example Company to store and process my personal data.",
"communications":[
{
"value":true,
"subscriptionTypeId":999,
"text":"I agree to receive marketing communications from Example Company."
}
]
}
}
}
var final_data = JSON.stringify(data)
xhr.open('POST', url);
// Sets the value of the 'Content-Type' HTTP request headers to 'application/json'
xhr.setRequestHeader('Content-Type', 'application/json');
xhr.onreadystatechange = function() {
if(xhr.readyState == 4 && xhr.status == 200) {
var result = xhr.responseText;
result =JSON.parse(result);
var text=result.inlineMessage;
$('#resulthub').html(text);
var pdfurls = $('#resulthub').find('a').attr('href');
var link=document.createElement('a');
document.body.appendChild(link);
link.href=pdfurls ;
link.setAttribute("target", "_blank");
link.click();
$('#helpdeskForm').trigger("reset");
$("#exampleModal").modal('hide');
//alert(xhr.responseText); // Returns a 200 response if the submission is successful.
} else if (xhr.readyState == 4 && xhr.status == 400){
alert(xhr.responseText); // Returns a 400 error the submission is rejected.
} else if (xhr.readyState == 4 && xhr.status == 403){
alert(xhr.responseText); // Returns a 403 error if the portal isn't allowed to post submissions.
} else if (xhr.readyState == 4 && xhr.status == 404){
alert(xhr.responseText); //Returns a 404 error if the formGuid isn't found
}
}
// Sends the request
xhr.send(final_data)
}
Afri