Contactbeheer

Creëer, update en organiseer uw contacten met behulp van de Brevo API.

Contact Aanmaken

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

Contact Bijwerken

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

Functies

  • Contactcreatie en updates
  • Lijstbeheer
  • Aangepaste attributen
  • Contactsegmentatie
  • Import/export mogelijkheden