Skip to navigation Skip to main content

Free Grow sales & stop fraud — Smart Cycle Discounts + TrustLens, free on WordPress.org Two free WooCommerce plugins

Explore both

Free Grow sales & stop fraud — Smart Cycle Discounts + TrustLens, free on WordPress.org Two free WooCommerce plugins

Explore both
  • WordPress
    WordPress Plugins
    View all
    Smart Cycle Discounts logo

    Smart Cycle Discounts

    Automate discount campaigns with scheduling, analytics, and smart product targeting.

    7 Discount Types Cycle AI
    Free Pro from $59
    TrustLens logo

    TrustLens

    Customer trust intelligence for WooCommerce. Score customers, spot abuse, protect revenue.

    Trust Scores Abuse Detection
    Free Pro from $79

    New Plugin

    Coming Soon

    Something exciting is in the works. Join the waitlist to be first to know.

    Get Notified
    Notify Me
    Secure Checkout
    WordPress.org
    14-Day Refund
    Resources
    Documentation Guides & tutorials
    Discount Calculator Plan your strategy
    Support Get help
    SCD Changelog Discount plugin updates
    TrustLens Changelog Trust intelligence updates
    Get notified on new releases
  • Affiliate
    Program
    Overview How the program works
    How It Works 4 steps from apply to earn
    Commission Details 30% · 60-day cookie · recurring
    Get Started
    Apply Now Open
    Takes ~2 minutes
    Earnings Calculator Estimate your monthly income
    FAQ Payouts, cookies, renewals
    Resources
    Brand Kit Logos, banners, copy, social
    Playbook Tactics that actually convert
    FTC Disclosure How to disclose properly
    Affiliate Terms Full program agreement
    Contact Team Open the contact form
    Earn 30% recurring on every sale Free to join · 60-day cookie · monthly PayPal payouts
    Apply Now
  • Blog
  • DOCS
    Docs & Resources

    Guides, references, and answers for every Webstepper plugin.

    Smart Cycle Discounts Automated WooCommerce discount campaigns
    Getting started › Discount types › Cycle AI ›
    TrustLens Customer trust & fraud intelligence
    Trust scoring › Detection modules › Card-testing defense ›
    Docs Home Guides FAQ Pricing Support
    WordPress tools that solve real problems
  • Contact Us
  • About
    Company

    Our Story

    Founded 2020

    Built by store owners, for store owners. We create WordPress tools that solve real problems.

    Learn more
    Built from Experience Real solutions we use ourselves
    Time is Precious Simple, intuitive tools
    Real Support Talk to the founders
    Legal & Contact
    Contact Us Privacy Policy Terms of Service Refund Policy
    14-Day Money-Back Guarantee No questions asked
Popular requests
  • smart cycle discounts
  • trustlens
  • chargeback protection
GET STARTED

Glossary

1
  • TrustLens Glossary

Detection Modules

9
  • Card Testing Defense
  • Chargeback Tracking
  • Shipping Anomalies
  • Linked Accounts Detection
  • Category Aware Risk
  • Coupon Abuse Detection
  • Order Pattern Analysis
  • Return Abuse Detection
  • Modules Overview

Card Testing Defense

9
  • Attack History
  • Allowlists
  • Geo Diversity
  • Auto Escalation
  • Fingerprinting
  • VIP Bypass
  • Panic Button
  • Velocity Thresholds
  • Overview

Chargeback Monitor

7
  • Ratio Email Alerts
  • Dispute Evidence Report
  • Chargeback Monitor
  • Manual Dispute Entry
  • Stripe WooPayments Ingestion
  • Card Network Thresholds
  • Chargeback Ratio Speedometer

Customer Management

7
  • Admin Notes
  • Checkout Enforcement
  • Order Trust Column
  • Bulk Actions
  • Blocking and Allowlisting
  • Customer Detail Profile
  • Customer List

Automation

7
  • Async Dispatch Retries
  • Webhooks and HMAC
  • Rule Inspector
  • Actions Reference
  • Conditions Reference
  • Triggers Reference
  • Automation Overview

Trust Scoring

5
  • Account Age Loyalty Bonus
  • Signals Explained
  • Six Customer Segments
  • The 0–100 Score
  • How Trust Scoring Works
View Categories
  • Home
  • Docs
  • Trustlens
  • Notifications
  • Slack Alerts

Slack Alerts

4 min read

Pro’s Slack integration sends Card-Testing Defense alerts and automation-rule notifications to Slack channels. Email is fine for daily summaries; Slack is better for real-time alerts that need attention now. This page covers how to set up Slack, what alerts use it, and how to format channel routing for distributed teams.


What Triggers Slack Alerts #

Event When Default Channel Target
attack_detected Card-Testing velocity threshold tripped Configured Slack webhook
auto_escalated Auto-escalation triggers Panic Freeze Configured webhook
panic_button_activated Manual Panic Freeze Configured webhook
Any custom rule with Slack action Per rule definition Per-rule webhook

Setting Up the Slack Webhook #

  1. In Slack, create an Incoming Webhook for the channel where you want alerts
  2. Copy the webhook URL (looks like https://hooks.slack.com/services/T.../B.../...)
  3. In TrustLens: Settings → Notifications → Slack Webhook URL
  4. Paste the URL and save
  5. Click “Send Test Alert” to verify connectivity

You should see a test message appear in the channel within seconds.


Card-Testing Alerts in Slack #

The three Card-Testing event types post to Slack with specific formats:

attack_detected #

“⚠️ Card-testing velocity threshold tripped. Fingerprint locked for 60 seconds. {decline_count} declines in {window}.”

Includes a button to view the Card Testing page.

auto_escalated #

“🚨 Card-testing attack auto-escalated. Panic Freeze active for 15 minutes. {n} fingerprints contributed; geographic distribution: {summary}.”

Most critical alert. Use a dedicated on-call channel; consider pairing with PagerDuty for paging.

panic_button_activated #

“🛑 Panic Freeze manually activated by {admin}. All checkouts halted for 15 minutes.”

Useful for distributed teams — the ops engineer who hits the button might not be the same person investigating, and the alert keeps everyone aligned.


Automation Rule Slack Actions #

The automation engine’s “Fire Webhook” action can target Slack directly. Use the same Slack webhook URL pattern. The payload can be customized — by default it’s a generic JSON object, but Slack’s incoming webhooks accept a specific format with rich formatting:

{
  "text": "Chargeback filed for ${order.total}",
  "attachments": [
    {
      "color": "#cc0000",
      "fields": [
        { "title": "Customer", "value": "${customer.email}" },
        { "title": "Score", "value": "${customer.score}" },
        { "title": "Brand", "value": "${dispute.brand}" }
      ]
    }
  ]
}

For automation rules targeting Slack, configure the webhook action with this payload structure for richer formatting.


Channel Routing #

TrustLens supports per-event-type Slack channel targeting:

Event Class Recommended Channel
Card-testing attacks #security or #ops-alerts
Chargeback filings #fraud or #finance
Segment changes (VIP up/down) #customer-success
Bulk action audits #trustlens-audit (low-volume archival)

To route different events to different channels, create separate Slack webhooks (one per channel) and configure each TrustLens event type with the appropriate webhook in Settings → Notifications → Slack Routing.


Slack Message Format #

TrustLens uses Slack’s Block Kit format for rich messages. Default formatting includes:

  • Header block with event type and severity emoji
  • Section block with key fields (customer, score, amount, etc.)
  • Action buttons linking to TrustLens admin pages
  • Color sidebar matching event severity (red / yellow / green)

The format is fixed for built-in events. Custom automation rules use the payload you configure.


Rate Limiting #

Slack imposes its own rate limits on incoming webhooks (~ 1 message/second per webhook). TrustLens respects this and queues messages if needed. Burst-heavy events (e.g. a rapid card-testing attack producing many alerts) may see slight delays in delivery.

To avoid Slack throttling, use cooldowns on automation rules that target Slack, and consider routing burst events to a digest channel rather than per-event channels.


Multiple Workspaces #

TrustLens supports a single primary Slack workspace per store. For multi-workspace routing (e.g. internal vs partner workspaces), use the automation engine with separate webhook actions targeting different workspaces.


Security #

Slack webhook URLs are essentially passwords — anyone with the URL can post to the channel. TrustLens stores webhook URLs encrypted at rest and only exposes them in the admin UI to authorized users (manage_woocommerce capability).

If a webhook URL leaks:

  1. Regenerate it in Slack immediately
  2. Update the URL in TrustLens settings
  3. Review channel history for unauthorized messages

Testing #

The Send Test Alert button at Settings → Notifications posts a test message to verify connectivity. Useful for:

  • Confirming initial setup
  • Verifying after Slack changes its webhook URL
  • Troubleshooting silent failures

The test message has a distinctive format so it’s obvious it’s a test, not a real alert.


Alerts Log #

Every Slack delivery (attempted and successful) is logged in the Notifications log with timestamp, recipient channel, message body, and Slack’s response. Useful for confirming critical alerts were actually sent.


Beyond Slack #

Slack is one channel; the same automation webhook action can target:

  • Microsoft Teams (similar incoming webhook format with adaptation)
  • Discord (different webhook format; configure payload accordingly)
  • PagerDuty (different API)
  • Any custom HTTP receiver with HMAC verification

The automation engine treats all webhook receivers identically. Slack is documented separately because the most common use case is operational alerting, and Slack is the most common destination.

Updated on June 4, 2026

What are your Feelings

  • Happy
  • Normal
  • Sad

Share This Article :

  • Facebook
  • X
  • LinkedIn
  • Pinterest
Core Email NotificationsScheduled Reports
Table of Contents
  • What Triggers Slack Alerts
  • Setting Up the Slack Webhook
  • Card-Testing Alerts in Slack
    • attack_detected
    • auto_escalated
    • panic_button_activated
  • Automation Rule Slack Actions
  • Channel Routing
  • Slack Message Format
  • Rate Limiting
  • Multiple Workspaces
  • Security
  • Testing
  • Alerts Log
  • Beyond Slack
Newsletter

Insights that grow your business

Join thousands of WooCommerce store owners who get actionable tips, plugin updates, and industry news every week.

We respect your privacy. Unsubscribe at any time.

Weekly updates — Fresh content every Tuesday
Exclusive content — Tips you won't find on our blog
Early access — Be first to know about new plugins
Webstepper
Weekly WooCommerce Tips
Just now
This week: 5 proven strategies to boost your average order value using smart discount campaigns...
New issue!
Webstepper

Tools for store owners who'd rather grow than grind.

Simple, powerful plugins that help WooCommerce store owners sell more — without the learning curve.

500+ happy stores

Products

  • Smart Cycle Discounts
  • TrustLens
  • Discount Calculator
  • Sale Calendar

Company

  • About Us
  • Blog
  • Contact
  • Affiliates

Resources

  • Help Center
  • Guides
  • Affiliate Program
  • Become a Partner

Questions? We actually answer.

Real humans, real help. No bots, no runaround. Usually within a few hours.

Get in touch
Operated by Setmood LLC · 7901 4th St N, St Petersburg, FL 33702 · United States

© 2026 Webstepper. All rights reserved.

Privacy Terms Refunds
Visa Mastercard PayPal Apple Pay Google Pay & more
Limited Time Offer

Save 15% on
SCD, TrustLens & the Bundle

Smart Cycle Discounts and TrustLens — buy either plugin or grab both in the bundle. Use code at checkout.

WELCOME15
23 hours
:
59 minutes
:
59 seconds
Claim My Discount

Just want one? Smart Cycle Discounts · TrustLens

  • WordPress
    Back
    WordPress Plugins
    View all
    Smart Cycle Discounts logo

    Smart Cycle Discounts

    Automate discount campaigns with scheduling, analytics, and smart product targeting.

    7 Discount Types Cycle AI
    Free Pro from $59
    TrustLens logo

    TrustLens

    Customer trust intelligence for WooCommerce. Score customers, spot abuse, protect revenue.

    Trust Scores Abuse Detection
    Free Pro from $79

    New Plugin

    Coming Soon

    Something exciting is in the works. Join the waitlist to be first to know.

    Get Notified
    Notify Me
    Secure Checkout
    WordPress.org
    14-Day Refund
    Resources
    Documentation Guides & tutorials
    Discount Calculator Plan your strategy
    Support Get help
    SCD Changelog Discount plugin updates
    TrustLens Changelog Trust intelligence updates
    Get notified on new releases
  • Affiliate
    Back
    Program
    Overview How the program works
    How It Works 4 steps from apply to earn
    Commission Details 30% · 60-day cookie · recurring
    Get Started
    Apply Now Open
    Takes ~2 minutes
    Earnings Calculator Estimate your monthly income
    FAQ Payouts, cookies, renewals
    Resources
    Brand Kit Logos, banners, copy, social
    Playbook Tactics that actually convert
    FTC Disclosure How to disclose properly
    Affiliate Terms Full program agreement
    Contact Team Open the contact form
    Earn 30% recurring on every sale Free to join · 60-day cookie · monthly PayPal payouts
    Apply Now
  • Blog
  • DOCS
    Back
    Docs & Resources

    Guides, references, and answers for every Webstepper plugin.

    Smart Cycle Discounts Automated WooCommerce discount campaigns
    Getting started › Discount types › Cycle AI ›
    TrustLens Customer trust & fraud intelligence
    Trust scoring › Detection modules › Card-testing defense ›
    Docs Home Guides FAQ Pricing Support
    WordPress tools that solve real problems
  • Contact Us
  • About
    Back
    Company

    Our Story

    Founded 2020

    Built by store owners, for store owners. We create WordPress tools that solve real problems.

    Learn more
    Built from Experience Real solutions we use ourselves
    Time is Precious Simple, intuitive tools
    Real Support Talk to the founders
    Legal & Contact
    Contact Us Privacy Policy Terms of Service Refund Policy
    14-Day Money-Back Guarantee No questions asked
We use cookies to improve your experience on our website. By browsing this website, you agree to our use of cookies.
More info More info Accept