@{ ViewData["Title"] = "Import Contacts"; }

Import Contacts

@if (TempData["SuccessMessage"] != null) {
@Html.Raw(TempData["SuccessMessage"])
} @if (TempData["ErrorMessage"] != null) { }
Instructions:
  1. Download the import template (Excel or CSV format)
  2. Fill in your contact details following the sample format
  3. Upload the completed file below
  4. Make sure required fields (FirstName or LastName) are filled

@Html.AntiForgeryToken()
Supported formats: .xlsx, .csv
Note: Importing will add new contacts to your existing list. It will not update or replace existing contacts.
Back to Contacts
Expected File Format

Your import file should contain the following columns in order:

# Column Name Required Example
1 FirstName Required* John
2 LastName Required* Doe
3 NickName Optional Johnny
4 Email Optional john.doe@example.com
5 Mobile1 Optional +1234567890
6 Mobile2 Optional +0987654321
7 Mobile3 Optional
8 WhatsAppNumber Optional +1234567890
9 Address Optional 123 Main St
10 City Optional New York
11 State Optional NY
12 PostalCode Optional 10001
13 Country Optional USA
14 OtherDetails Optional Sample contact
15 PassportNumber Optional P1234567
16 PanNumber Optional ABCDE1234F
17 AadharNumber Optional 1234-5678-9012
18 DrivingLicenseNumber Optional DL-12345-2020
19 VotersId Optional VOTER12345
20 BankAccountNumber Optional 123456789012
21 BankName Optional State Bank
22 BranchName Optional Main Branch
23 IfscCode Optional SBIN0001234

* At least FirstName or LastName must be provided

@section Scripts { }