> ## Documentation Index
> Fetch the complete documentation index at: https://docs.topsort.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Campaign Management

> Centralized campaign management interface for viewing, filtering, and managing all your Toppie campaigns

export const LastUpdated = ({date, lang = "en"}) => {
  const translations = {
    en: "Last updated:",
    es: "Última actualización:",
    pt: "Última atualização:",
    fr: "Dernière mise à jour:",
    de: "Zuletzt aktualisiert:"
  };
  const label = translations[lang] || translations.en;
  return <>
<style>{`
.last-updated-component {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 16px;
border-radius: 8px;
margin-top: 12px;
margin-bottom: 16px;
font-size: 14px;
background-color: rgba(0, 0, 0, 0.05);
border: 1px solid rgba(0, 0, 0, 0.12);
color: rgba(0, 0, 0, 0.75);
line-height: 1;
}

        .last-updated-component svg {
          flex-shrink: 0;
          vertical-align: middle;
        }

        .last-updated-component span {
          display: inline-flex !important;
          align-items: center !important;
          line-height: 1 !important;
        }

        [data-theme="dark"] .last-updated-component {
          background-color: #3a3a3a;
          border: 2px solid #888888;
          color: #ffffff;
        }

        [data-theme="dark"] .last-updated-component svg {
          stroke: #ffffff;
        }
      `}</style>
      <div className="last-updated-component">
        <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
          <circle cx="12" cy="12" r="10" />
          <polyline points="12 6 12 12 16 14" />
        </svg>
        <span>
          <strong style={{
    fontWeight: 600
  }}>{label}</strong> 
          <time dateTime={date}>{date}</time>
        </span>
      </div>
    </>;
};

<div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
  The **Campaigns tab** in Toppie provides a centralized hub for managing all your advertising campaigns across retail media networks. This unified interface streamlines campaign oversight and enables efficient performance monitoring from one dashboard.
</div>

<Frame>
  <img src="https://mintcdn.com/topsort/Ro7qPN5howJXYxJV/images/knowledge-base/toppie-campaign-tab.webp?fit=max&auto=format&n=Ro7qPN5howJXYxJV&q=85&s=44e35847a011018c9683661d1ebcdc3a" alt="Screenshot of Toppie Campaign Tab" width="4704" height="3200" data-path="images/knowledge-base/toppie-campaign-tab.webp" />
</Frame>

## Key Features

<Columns cols={2}>
  <Card title="Unified Campaign View">
    View all Sponsored Listings and Banner Ads campaigns in one organized interface
  </Card>

  <Card title="Real-Time Monitoring">
    Track ad spend, ROAS, and daily budgets with live performance updates
  </Card>

  <Card title="Quick Campaign Control">
    Instantly activate, pause, or modify campaigns without navigating between pages
  </Card>

  <Card title="Smart Filtering">
    Filter by campaign type, status, or search by name to find campaigns quickly
  </Card>

  <Card title="Detailed Analytics Access">
    Click into any campaign for comprehensive performance data and trend analysis
  </Card>
</Columns>

## Campaign Overview

<div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
  The Campaigns tab displays essential performance metrics for each campaign:
</div>

<div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
  * **Campaign Name** - Clickable to access detailed analytics
  * **Campaign Type** - Sponsored Listings or Banner Ads
  * **Status** - Active/Inactive with toggle controls
  * **Ad Spend** - Total campaign spend to date
  * **ROAS** - Return on advertising spend
  * **Daily Budget** - Configured daily spending limit
</div>

## Managing Campaigns

<Steps>
  <Step title="Navigate to Campaigns">
    <div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
      Access the **Campaigns** tab from your Toppie dashboard navigation
    </div>
  </Step>

  <Step title="Filter and Search">
    * Use filter tabs to view **All**, **Sponsored**, or **Banner** campaigns
    * Use the search bar to find specific campaigns by name
    * Sort by any column for quick insights
  </Step>

  <Step title="Monitor Performance">
    <div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
      Review real-time metrics directly from the list view without drilling into individual campaigns
    </div>
  </Step>

  <Step title="Control Campaign Status">
    <div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
      Toggle campaigns **Active** or **Inactive** using the status controls
    </div>
  </Step>

  <Step title="Access Detailed Analytics">
    <div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
      Click any campaign name to view comprehensive performance data and modify campaign settings
    </div>
  </Step>
</Steps>

## Campaign Types

### Sponsored Listings

<div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
  Traditional product advertising campaigns that promote specific products within search results and category pages across retail partners.
</div>

### Banner Ads

<div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
  Display advertising campaigns that show visual creatives across high-visibility placements on retail partner sites, with product-based targeting.
</div>

<div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
  ***
</div>

<div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
  The Campaigns tab centralizes your entire Toppie advertising operation, making it easy to monitor performance and make adjustments across all retail media networks from one location.
</div>

***

<LastUpdated date="2025-11-18" />
