The Scorer's risk score output gets translated into a response mode that determines whether the campaign proceeds, gets flagged for review, or simply gets logged. Three response modes are supported across tiers, with mode selection calibrated by tier defaults plus tenant configuration. The default mode per tier is documented below; Pro and Enterprise tiers can configure mode per tenant or per campaign type.
MODE 1 · STARTER DEFAULT
Hard block above threshold
Campaigns scoring above threshold (default 65 on Starter) are blocked from SMTP queue assignment until either the sender modifies the campaign per recommended actions and re-scores, or the sender escalates to EMP support for manual review.
When this mode fits: teams without manual override authority who need protective gating against reputation-damaging campaigns. Catches approximately 7 percent of campaigns at hard-block in measured production traffic across the EMP portfolio at default threshold.
MODE 2 · PRO DEFAULT
Soft warning + manual override
Campaigns scoring above threshold trigger warning notification with category breakdown and recommended actions; sender can either modify and re-score or override with explicit risk acknowledgment and proceed to SMTP queue. Override is logged to audit trail with sender identity and acknowledgment timestamp.
When this mode fits: teams with deliverability operations expertise who want the Scorer signal as informed warning rather than gating control. Triggers approximately 18 percent of campaigns at soft-warning in Pro tier; reputation impact from overridden campaigns counts against future Scorer threshold calibration.
MODE 3 · ENTERPRISE OPTIONAL
Advisory mode (no intervention)
Scorer runs and produces score plus recommendations but does not block or warn; sender treats the score as advisory input and decides independently. The score is logged for analysis and feeds the dashboard for retrospective review.
When this mode fits: clients with mature in-house deliverability operations who want the Scorer signal as one input among many rather than gating. About 22 percent of Enterprise tier clients select advisory mode; 78 percent use Mode 2 soft warning with override.
API response example · Enterprise tier hybrid pattern
The JSON snippet below shows a representative Scorer API response for a campaign evaluation on the Enterprise tier hybrid pattern (own MTA infrastructure calling Panama Scorer API for pre-send scoring). The response contains the headline score, the per-dimension breakdown with confidence intervals, the recommended risk-reduction actions with priority ranking, and the response mode determination based on tenant configuration.
{
"score": 71,
"risk_band": "medium-high",
"response_mode": "soft_warning",
"latency_ms": 643,
"model_version": "v3.4.2",
"dimensions": {
"subject_pattern": { "score": 82, "ci_low": 76, "ci_high": 88 },
"content_structure": { "score": 68, "ci_low": 61, "ci_high": 75 },
"link_density": { "score": 54, "ci_low": 48, "ci_high": 60 },
"sender_reputation_drift": { "score": 88, "ci_low": 84, "ci_high": 92 },
"list_freshness": { "score": 62, "ci_low": 56, "ci_high": 68 },
"engagement_profile": { "score": 71, "ci_low": 63, "ci_high": 79 },
"mbp_distribution": { "score": 76, "ci_low": 70, "ci_high": 82 },
"time_of_send": { "score": 59, "ci_low": 51, "ci_high": 67 }
},
"recommendations": [
{ "priority": 1, "action": "reduce_subject_caps_proportion", "impact": "high" },
{ "priority": 2, "action": "add_personalization_signal", "impact": "medium" },
{ "priority": 3, "action": "reschedule_outside_movistar_throttle_window", "impact": "medium" }
],
"override_token": "ovr_a8f3d2_expires_2026-05-09T18:00:00Z"
}
API integration notes: rate-limited per tenant by default 100 requests per second, increasable on Enterprise tier. Response time SLA: 95th percentile under 2 seconds, 99th percentile under 5 seconds. Override tokens expire 30 minutes after issuance and are single-use; the token is required to bypass soft warning mode on Pro and Enterprise tiers. Confidence intervals (ci_low, ci_high) represent the model's uncertainty about each dimension score; wider intervals indicate the model has lower confidence which can inform interpretation. Recommendations are ranked by predicted impact on overall score; priority 1 actions typically reduce overall score by 8-15 points when implemented.