Contact Management Guide
Best practices for managing contacts effectively. Learn about organization, segmentation, and maintaining a healthy contact database.
Organizing Contacts
Use tags and audiences to organize your contacts effectively:
organize-contacts.tsTypeScript
1
2
3
4
5
6
7
8
9
// Tag contacts for segmentation
await metigan.contacts.update('contact_123', {
tags: ['customer', 'premium', 'active']
});
// Add to audiences for targeted campaigns
await metigan.audiences.addContacts('audience_123', {
contactIds: ['contact_123']
});Segmentation
Use tags and custom fields to segment your contacts. This makes it easier to send targeted emails to specific groups based on their interests, behavior, or characteristics.