Gestion des contacts

Créez, mettez à jour et organisez vos contacts via l’API Brevo.

Créer un contact

const contact = {
attributes: {
FIRSTNAME: "John",
LASTNAME: "Doe",
SMS: "+1234567890"
},
listIds: [1, 2]
};
brevo.contacts.createContact(contact);

Mettre à jour un contact

const updates = {
attributes: {
FIRSTNAME: "Jane"
}
};
brevo.contacts.updateContact("[email protected]", updates);

Fonctionnalités

  • Création et mise à jour de contacts
  • Gestion des listes
  • Attributs personnalisés
  • Segmentation des contacts
  • Capacités d’importation/exportation
Assistant AI

Bonjour ! Posez-moi vos questions sur la documentation.

Commencez gratuitement avec Brevo