Upsell Opportunity

Identifying Opportunities to Upsell or Upgrade

The “Upsell Opportunity” tracker detects phrases that indicate the representative can propose a higher-tier product, an extended service, or an add-on. By capturing these mentions, teams gain insights into how often, when, and how effectively agents spot moments to offer more value—potentially increasing revenue and improving customer satisfaction through well-timed suggestions.

Who Benefits:

  • Project Managers & Team Leads: Understand how frequently and effectively agents identify upsell chances, guiding training and process improvements.
  • Sales & CX Teams: Recognize patterns in when and why customers might be receptive to upgrades, informing personalized engagement and better conversion rates.
  • Business Managers & Strategists: Spot trends in upsell discussions to refine pricing models, product bundling, and promotional strategies.
  • Compliance Officers: Ensure that upsell opportunities are presented ethically, transparently, and in line with company and regulatory guidelines.

Value Proposition:

  • Revenue Growth: Highlighting upsell opportunities aids in driving additional sales and increasing average order value.
  • Customer Satisfaction: When done effectively, upselling can improve customer outcomes by offering relevant value-added solutions.
  • Continuous Improvement: Insights into upsell patterns inform ongoing refinements to scripts, training, and product offerings.

Data Dictionary

Objective:

Detect phrases in the conversation that indicate a potential upsell moment—such as when a customer’s interest or needs hint at upgrading their current plan, adding premium features, or purchasing related products. The tracker returns occurrences of matched phrases, timestamps, and confidence, enabling teams to understand how often these cues appear.

Proposed JSON Schema:

{
  "trackers": [
    {
      "name": "Upsell_Opportunity",
      "matches": [
        {
          "text": "<string>",
          "timestamp": "<ISO 8601 or relative time>",
          "confidence": <number> // 0.0 to 1.0
        }
      ]
    }
  ]
}

Data Dictionary:

FieldDescriptionExample
trackersArray of tracker objects.[ {...} ]
trackers[].nameThe tracker’s name."Upsell_Opportunity"
trackers[].matchesArray of matches for phrases indicating potential upsell cues.[ {...}, {...} ]
matches[].textThe matched phrase representing the upsell opportunity."You might benefit from our premium package."
matches[].timestampWhen the phrase occurred (ISO 8601 or relative time)."2024-07-10T10:10:00Z" or "00:02:30"
matches[].confidenceConfidence (0.0 to 1.0) indicating how closely the phrase aligns with an upsell opportunity.0.9

If No Matches Found:
If no upsell opportunities are detected, return an empty matches array for "Upsell_Opportunity" or omit the tracker. If no trackers match, return:

{
  "trackers": []
}

Determining Confidence & Thresholds

How the Upsell_Opportunity Tracker Works:

  • Seed the tracker with phrases that suggest offering an upgrade or additional product/service (e.g., "Would you like to upgrade?", "We have a higher-tier option," "You might be interested in our premium plan").
  • The system interprets these seed phrases and identifies similar statements in the transcript.
  • Confidence indicates how clearly the detected phrase represents a chance to upsell.

Confidence & Calibration:

  • Initial Testing: Validate on known calls to ensure detected phrases genuinely represent upsell moments.
  • Refine Phrases: Add or remove seed phrases to capture evolving product lines, promotions, or sales strategies.
  • Thresholding: Downstream consumers can filter out low-confidence matches if necessary.
  • Stakeholder Feedback: Incorporate sales leadership or compliance input to refine criteria and ensure ethical, relevant upsell opportunities.

Prompt Construction & Instructions

Role Specification & Reiteration:

  • Present the system as a “highly experienced assistant” identifying upsell opportunities.
  • Reiterate instructions: return only JSON, follow schema, no extra commentary.

No Hallucination:

  • Only detect upsell-related phrases if supported by transcript evidence.
  • If uncertain, assign a lower confidence or omit matches.

Strict Formatting:

  • Return only JSON with trackers.
  • If none found, return empty trackers.

Example Prompt for Implementation

System Message (Role: System):
"You are a highly experienced assistant that identifies 'Upsell_Opportunity' mentions in a conversation. You have:

  • A transcript
  • An 'Upsell_Opportunity' tracker defined by seed phrases indicating potential upgrades, premium options, or additional products.

Your task:

  1. Detect phrases suggesting it's a good time to propose an upsell.
  2. Return text, timestamp, and confidence.
  3. Return only JSON as per the schema, no extra commentary.

Instructions & Variables (example):

{
  "tracker": {
    "name": "Upsell_Opportunity",
    "phrases": [
      "consider our premium plan",
      "would you like to upgrade",
      "we have a higher-tier option",
      "you might benefit from adding"
    ]
  }
}

User Message (Role: User):
"Analyze the following transcript and detect 'Upsell_Opportunity' mentions:

[TRANSCRIPT_JSON][TRANSCRIPT_JSON]"

Expected Output Format:

{
  "trackers": [
    {
      "name": "Upsell_Opportunity",
      "matches": [
        {
          "text": "If you’re interested, we have a higher-tier option that includes more features.",
          "timestamp": "2024-07-10T10:10:00Z",
          "confidence": 0.9
        }
      ]
    }
  ]
}