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

# Personnaliser les Invitations

export const LastUpdatedFr = ({date}) => {
  const label = "Dernière mise à jour:";
  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" }}>
  L'[API d'Invitation](/fr/api-reference/invitation-api/\[beta]-invite-vendors) de Topsort vous offre un contrôle total
  sur l'intégration de vos vendeurs, permettant des emails d'invitation personnalisés et
  une expérience d'inscription fluide pour votre marketplace. Cet outil vous permet de
  gérer l'ensemble du processus d'invitation et d'inscription des vendeurs.
</div>

## Comment Ça Fonctionne

<Steps>
  <Step title="Vous nous envoyez un modèle d'email HTML pour une invitation de vendeur." />

  <Step title="Nous téléchargeons et activons le modèle." />

  <Step title="Vos vendeurs commencent à recevoir des emails personnalisés lorsqu'ils sont invités.">
    <Note>Les invitations expireront après 30 jours</Note>

    <Frame>
      <img src="https://mintcdn.com/topsort/Ro7qPN5howJXYxJV/images/knowledge-base/vendor_to_vendor_invite.webp?fit=max&auto=format&n=Ro7qPN5howJXYxJV&q=85&s=f88d3f4fa049a9d83db20e6e9225378d" alt="Invitation de vendeur à vendeur" width="1201" height="1110" data-path="images/knowledge-base/vendor_to_vendor_invite.webp" />
    </Frame>

    <Frame>
      <img src="https://mintcdn.com/topsort/Ro7qPN5howJXYxJV/images/knowledge-base/vendor_to_vendor_invite_topsort_welcome.webp?fit=max&auto=format&n=Ro7qPN5howJXYxJV&q=85&s=b9afe5dfa59c35185f57be7c625c2ba4" alt="Bienvenue Topsort" width="2029" height="1057" data-path="images/knowledge-base/vendor_to_vendor_invite_topsort_welcome.webp" />
    </Frame>
  </Step>
</Steps>

***

<LastUpdatedFr date="2025-12-15" />
