Franchise

Corporate Dashboard Guide

Monitor support metrics across all franchise locations. Identify issues and maintain brand standards.

Unified Metrics

See ticket volume, response times, and satisfaction across all locations.

Location Drill-Down

Click into any location for detailed performance analysis.

Alerts & Anomalies

Get notified when a location's metrics deviate from benchmarks.

Trend Analysis

Track performance over time and identify improving/declining locations.

Location Overview

All your locations at a glance.

LocationTickets/MonthAvg ResponseSatisfactionTrend
Los Angeles8478 min94%Improving
New York120312 min91%Stable
Chicago5346 min96%Improving
Miami41222 min84%Declining
Seattle2989 min93%Improving

Analytics API

Build custom dashboards with our analytics endpoints.

Get Cross-Location Stats

GET /v1/accounts/me/stats?
  period=month&
  group_by=workspace

// Response
{
  "period": "2024-01",
  "workspaces": [
    {
      "id": "ws_la",
      "name": "Los Angeles",
      "tickets": 847,
      "avg_response_mins": 8,
      "satisfaction": 0.94
    },
    // ... other locations
  ]
}

Set Up Alerts

POST /v1/alerts
{
  "name": "Response Time Alert",
  "condition": {
    "metric": "avg_response_mins",
    "operator": ">",
    "threshold": 15
  },
  "notify": {
    "email": "[email protected]",
    "webhook": "https://..."
  }
}

Monitor Your Entire Network

Keep every location performing at their best.