Contact Management

Create, update, and organize your contacts using the Brevo API.

Create Contact

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

Update Contact

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

Features

  • Contact creation and updates
  • List management
  • Custom attributes
  • Contact segmentation
  • Import/export capabilities