Posts Tagged: Integration


17
May 11

Four Marketing Reports That Maximize Sales Efforts

Marketers rely on both web analytics and call tracking solutions to effectively track and record marketing campaign performance. The reports provided by these tools help marketers effectively analyze campaign performance, evolve activities and reallocate budgets to improve lead volume and quality.

From a sales perspective, these reports also are extremely valuable because they encourage the sales team to more effectively prioritize leads and customize pitches, which in turn helps to convert new customers and drive business growth.

Therefore, it is important that marketers provide this information to their sales departments, either by sharing access to tracking-tool dashboards or integrating these reports directly into CRM solutions.

Following are four tracking reports that, when shared with sales teams, can improve their ability to convert leads to customers:

1. Lead Source

Different marketing campaigns use different messaging, offers and calls to action. By tying a lead to a specific source (i.e. PPC, email, print advertisement, or billboard), you can show sales what motivated the prospect to convert into a lead. This information can then be integrated directly into sales pitches and follow-up communications.

In addition, if the lead source is a search engine, the keyword searched will also help sales professionals understand the specific need that brought in the lead.

2. Website Activity / Conversion Page

The pages a lead visits on your website — and particularly the conversion page — give sales professionals a good understanding of the topics the prospect is interested in, what messaging resonated, and what call-to-action motivated him or her.

Again, sales professionals can use this information to better structure sales pitches to more effectively satisfy the prospect’s needs.

3. Lead Details

The information offered by the lead, either via a web form or over the phone, is some of the most useful to sales professionals. Since the information comes directly from the lead, there is little guesswork or analysis needed to effectively tailor a sales pitch.

It’s important that your lead forms ask targeted questions, but without asking for so much information that leads are hesitant to complete it.

For phone conversions, make sure that your voicemail message asks the caller for exactly what you want to know, for example: name, phone number, reason for calling and best time to reach you. If you have inside sales representatives or customer service professionals answering incoming phone calls, you may also consider recording calls for future review.

4. Repeat Conversions

Each time a prospect completes a web form, downloads another piece of content or places additional phone calls, the hotter the lead.

By integrating your web analytics and call tracking solutions into your CRM software, you can accurately note when a lead re-converts, which further helps sales to prioritize follow-up communications, and ensure that motivated prospects get the highest level of attention.

How are you using marketing campaign tracking reports to support sales initiatives?

 


17
Sep 09

Phone Call Tracking To Sugar CRM Lead Integration

For CRM users looking for phone call conversion tracking, Mongoose Metrics enables SugarCRM users to instruct tracking phone calls to automatically generate a new lead.  As a part of the phone call generated lead, all call detail metrics can be saved to the lead record in SugarCRM.  For AccuTrack Session campaigns, in addition to call details, online session metrics such as keyword and visitor IP can be saved to the SugarCRM lead.  This solution enables SugarCRM users to further expand their tracking capabilities by recording all inbound phone calls from a marketing campaign.

Here’s the key phone call data which can be inserted into SugarCRM:

  • Caller ID
  • Tracking number dialed
  • Date/time
  • Call duration
  • For successful 411 look-ups, incoming caller’s:
    • billing name
    • billing address

For AccuTrack Session campaigns, the following visitor session data is available:

  • Organic or PPC keyword
  • Visitor IP
  • PPC ad ID
  • PPC campaign ID
  • URL view at the time of the call
  • Custom tracking variables

 Integration Strategy

The phone to SugarCRM integration works by building off of Sugar’s built in Web Lead Form Tool.   Using this tool, a Mongoose Metrics phone call can be recorded into SugarCRM as a lead via the simple method below:

  1.  Create a modified web to lead web form hosted on your server.
  2. After the phone call completes, Mongoose Metrics posts back to your web form the phone call data.
  3. JS code on your form’s webpage will read the phone call data contained in the post-back URL and auto-complete the form fields.
  4. The form will auto-submit into your SugarCRM application as a web to lead form submission.

Sample Code and Integration Instructions

Below is an example code block of a web form that successfully creates a SugarCRM lead from a phone call.  This is the form  placed on a web page visited by the Mongoose Metrics phone server after each completed phone call.  Full code and detailed instructions can be found here Phone Call To SugarCRM Integration Resource Document (Opens as a PDF).

Example Code:

<script type=”text/javascript”>
// function to read URL parameters
function gup( name )
{
  name = name.replace(/[\[]/,”\\\[").replace(/[\]]/,”\\\]”);
  var regexS = “[\\?&]“+name+”=([^&#]*)”;
  var regex = new RegExp( regexS );
  var results = regex.exec( window.location.href );
  if( results == null )
    return “”;
  else
    return results[1];
}
</script>
<script type=”text/javascript”>
// define your js variables here from URL parameters
var lastname_param = gup(‘lastname’);
var phonework_param = gup(‘phonework’);
</script>
<form action=”YOUR_URL” name=”WebToLeadForm” method=”POST” id=”WebToLeadForm”>
<input id=”last_name” name=”last_name” type=”text” value=”">
<input id=”phone_work” name=”phone_work” type=”text” value=”">
<input id=”campaign_id” name=”campaign_id” value=”YOUR_CAMPAIGN_ID” type=”hidden”>
<input id=”assigned_user_id” name=”assigned_user_id” value=”YOUR_USER_ID” type=”hidden”>
<input id=”team_id” name=”team_id” value=”1″ type=”hidden”>
</form>
<script type=”text/javascript”>
// writes your defined js variables to input field value
document.getElementById(‘last_name’).value=lastname_param;
document.getElementById(‘phone_work’).value=phonework_param;
</script>
<script language=”javascript” type=”text/javascript”>
// auto submits form on load
document.WebToLeadForm.submit();
</script>