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

# Managed vs Self-Service

> Understanding the difference between Managed and Self-Service

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'}}>
  Topsort supports both **Managed** and **Self-Service** advertising models. You can choose the best fit for your marketplace based on your vendor relationships, internal staff, or strategy.
</div>

<Frame>
  <img src="https://mintcdn.com/topsort/6z2OGMIoIAfrcYlw/images/knowledge-base/managed_vs_self_service_diagram.webp?fit=max&auto=format&n=6z2OGMIoIAfrcYlw&q=85&s=b70b26e04a2c133723ca4b1edbeb5004" alt="managed vs. self-service diagram" width="512" height="256" data-path="images/knowledge-base/managed_vs_self_service_diagram.webp" />
</Frame>

## Managed Advertising

<div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
  In the managed model, the marketplace team is responsible for setting up and maintaining all vendor campaigns, handling execution, reporting, and optimization. This model works well when vendors already rely on the marketplace for promotional services or the marketplace prefers to keep control of the flows.
</div>

<div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
  The admin dashboard gives admins real-time access to campaign performance across all vendors. Admins and ad ops staff can also create campaigns, add credits, and view metrics such as ad spend, impressions, clicks, and conversions.
</div>

## Self-Service Advertising

<div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
  In the self-service model, advertisers can create and manage campaigns, set campaign budgets, and monitor performance. The self-service dashboard provides vendors with real-time performance data and campaign history. It also includes tools to manage team members and access help resources. While most campaign types can be managed independently, banner creatives may still require marketplace approval.
</div>

<div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
  At the same time, in the self-service model, the admin keeps all the managed mode tools and access, still being able to create and manage campaigns for their self-service vendors. The self-service mode can be activated on a vendor level. Please refer to the [Self-Service](/en/knowledge-base/ad-platform/self-service-and-access/) section for more details.
</div>

## Choosing the Right Model

<div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
  Many marketplaces use a hybrid approach, starting with Managed advertising and gradually offering Self-Service options as vendors become more confident.
</div>

***

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