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

# Self-Service über API

> Verwendung unserer APIs zur Erstellung einer Self-Service-Erfahrung

export const LastUpdatedDe = ({date}) => {
  const label = "Zuletzt aktualisiert:";
  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'}}>
  Wenn Sie bereits ein Verkäufercenter haben, können Sie unsere [Campaign API](/de/ad-server/additional-apis/campaign-api/) in Ihre Plattform integrieren, um Self-Service direkt darauf zu aktivieren. Durch die Verwendung unserer Endpunkte zum Erstellen, Aktualisieren, Abrufen und Löschen von Kampagnen können Sie Ihre Workflows für Self-Service-Kampagnenverwaltung mit Ihren eigenen Regeln und UX/UI-Design gestalten.
</div>

<Frame>
  <img src="https://mintcdn.com/topsort/JfdWUceY7Se3NW-0/images/knowledge-base/ad-platform-self-service-and-access-api-self-service.webp?fit=max&auto=format&n=JfdWUceY7Se3NW-0&q=85&s=53f21c43dfb4b6efa8fc4d4ee92c84e2" alt="Diagramm der Campaign API-Funktion." width="786" height="340" data-path="images/knowledge-base/ad-platform-self-service-and-access-api-self-service.webp" />
</Frame>

***

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