Importing contacts

Bulk-load or update your audience by uploading a CSV and mapping its columns to contact fields.

CSV import is the quickest way to load an existing audience into EngageApp or to update contacts in bulk. You will find it under Contacts → Import.

Running an import

  1. Upload a CSV — start the flow at Contacts → Import and choose your file.
  2. Map columns — match each column in your file to a contact field: external_id, email, phone, first_name, last_name, or a custom attribute. Common header names auto-map, so you usually only need to confirm.
  3. Run the import — EngageApp processes the rows and reports the result.

Upsert behavior

Rows are upserted by external_id (or by email when no external ID is present). Re-importing a file therefore updates existing contacts rather than creating duplicates, which makes it safe to re-run an import after fixing data.

Using the template

You can download a blank CSV template containing every mappable column. Fill it in to guarantee your headers auto-map cleanly, then upload it like any other file.

When to use the API instead

CSV import is ideal for one-off or occasional loads. For large audiences or automated, ongoing syncs, use the public API instead — call POST /api/v1/public/contacts to batch upsert contacts programmatically.

Next steps