> ## 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.

# View Campaign Details

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" }}>
  You can check how your sponsored listing campaign is performing in the
  campaign dashboard.
</div>

<div style={{ textAlign: "justify", marginBottom: "1.5rem" }}>
  On this page, you can see performance numbers (KPIs) at the top for a time
  period you select, along with a graph below showing trends. You can also see
  the products included in your campaign by scrolling through the product
  images. When you point your mouse over a product image, the performance
  numbers will update to show how just that product is doing.
</div>

<Frame>
  <img src="https://mintcdn.com/topsort/FVdFH6-GAInpFZWG/images/knowledge-base/ad-platform-listings-campaign-details-campaign-kpis.webp?fit=max&auto=format&n=FVdFH6-GAInpFZWG&q=85&s=1cd17170624a910466e34d79c3a69f47" alt="Screenshot of campaign kpis" width="1372" height="1272" data-path="images/knowledge-base/ad-platform-listings-campaign-details-campaign-kpis.webp" />
</Frame>

You can quickly turn the entire campaign on or off using the green switch, or change the campaign budget by clicking the pencil icon. Below the graph, there is a table listing the products being promoted and their main performance numbers. In this table, you can use the toggle switch next to a product to remove it from the campaign or add new products whenever you like.

<Note>
  If a product is set to active: “false” via API or product feed updates due to
  lack of stock, it's automatically switched off in the campaign dashboard.
  Refer to the [Catalog
  Synchronizatio](/en/knowledge-base/ad-platform/catalog-management/catalog-synchronization/)
  section for more information.
</Note>

<Frame>
  <img src="https://mintcdn.com/topsort/FVdFH6-GAInpFZWG/images/knowledge-base/ad-platform-listings-campaign-details-products.webp?fit=max&auto=format&n=FVdFH6-GAInpFZWG&q=85&s=798aff97b92161c0fb3e4509a30b3ebb" alt="Screenshot of showing product details" width="1292" height="668" data-path="images/knowledge-base/ad-platform-listings-campaign-details-products.webp" />
</Frame>

***

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